all repos — fluxbox @ 26722ad5c0a3d4a55e6521f503a8534b047a1770

custom fork of the fluxbox windowmanager

using border theme
fluxgen fluxgen
commit

26722ad5c0a3d4a55e6521f503a8534b047a1770

parent

07190d2133f22b89de3693867213c22e28d41d2e

1 files changed, 15 insertions(+), 4 deletions(-)

jump to
M src/ClockTool.ccsrc/ClockTool.cc

@@ -20,7 +20,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: ClockTool.cc,v 1.2 2003/08/11 20:29:30 fluxgen Exp $ +// $Id: ClockTool.cc,v 1.3 2003/08/13 10:08:18 fluxgen Exp $ #include "ClockTool.hh"

@@ -94,8 +94,17 @@ }

void ClockTool::update(FbTk::Subject *subj) { updateTime(); - // + 3 to make the entire text fit inside - resize(m_button.textWidth() + 3, m_button.height()); + + // + 4 to make the entire text fit inside + std::string text; + for (size_t i=0; i<m_button.text().size() + 4; ++i) + text += '0'; + + resize(m_theme.font().textWidth(text.c_str(), text.size()), m_button.height()); +} + +unsigned int ClockTool::borderWidth() const { + return m_button.borderWidth(); } unsigned int ClockTool::width() const {

@@ -136,12 +145,14 @@ m_pixmap = 0;

m_button.setBackgroundColor(m_theme.texture().color()); } else { m_pixmap = m_screen.imageControl().renderImage(m_button.width(), m_button.height(), m_theme.texture()); - m_button.setBackgroundPixmap(m_pixmap); + m_button.FbTk::FbWindow::setBackgroundPixmap(m_pixmap); } if (old_pm) m_screen.imageControl().removeImage(old_pm); m_button.setJustify(m_theme.justify()); + m_button.setBorderWidth(m_theme.border().width()); + m_button.setBorderColor(m_theme.border().color()); m_button.clear(); }