diff options
author | Pavel Labath <pavelo@centrum.sk> | 2011-07-11 15:29:02 (GMT) |
---|---|---|
committer | Pavel Labath <pavelo@centrum.sk> | 2011-07-11 15:29:02 (GMT) |
commit | 881aa0d8fbda2b3198a8e47a317794663af3c2e1 (patch) | |
tree | ab73aa2a05346137da532e70e213bec6715c7fdf /src | |
parent | 1ecc9ef56e74e6eea3d6cecb77a76562b8e103d7 (diff) | |
download | fluxbox_pavel-881aa0d8fbda2b3198a8e47a317794663af3c2e1.zip fluxbox_pavel-881aa0d8fbda2b3198a8e47a317794663af3c2e1.tar.bz2 |
Attach a modifiedSig handler to the session.tabPadding resource
ps: this is a bonus, without this one needed to completely restart fluxbox for the updates to
tabPadding to take effect.
Diffstat (limited to 'src')
-rw-r--r-- | src/IconButton.hh | 2 | ||||
-rw-r--r-- | src/Window.cc | 4 | ||||
-rw-r--r-- | src/fluxbox.hh | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/src/IconButton.hh b/src/IconButton.hh index 36781d1..4f1587b 100644 --- a/src/IconButton.hh +++ b/src/IconButton.hh | |||
@@ -64,6 +64,8 @@ public: | |||
64 | 64 | ||
65 | bool setOrientation(FbTk::Orientation orient); | 65 | bool setOrientation(FbTk::Orientation orient); |
66 | 66 | ||
67 | FbTk::SignalTracker &signalTracker() { return m_signals; } | ||
68 | |||
67 | protected: | 69 | protected: |
68 | void drawText(int x, int y, FbTk::FbDrawable *drawable_override); | 70 | void drawText(int x, int y, FbTk::FbDrawable *drawable_override); |
69 | private: | 71 | private: |
diff --git a/src/Window.cc b/src/Window.cc index 685dae6..47118fa 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -3674,7 +3674,9 @@ void FluxboxWindow::associateClient(WinClient &client) { | |||
3674 | frame().theme().unfocusedTheme()->iconbarTheme(), client); | 3674 | frame().theme().unfocusedTheme()->iconbarTheme(), client); |
3675 | frame().createTab(*btn); | 3675 | frame().createTab(*btn); |
3676 | 3676 | ||
3677 | btn->setTextPadding(Fluxbox::instance()->getTabsPadding()); | 3677 | btn->signalTracker().join(Fluxbox::instance()->getTabsPaddingResource().modifiedSig(), |
3678 | FbTk::MemFun(static_cast<FbTk::TextButton &>(*btn), &FbTk::TextButton::setTextPadding)); | ||
3679 | btn->setTextPadding(*Fluxbox::instance()->getTabsPaddingResource()); | ||
3678 | btn->setPixmap(screen().getTabsUsePixmap()); | 3680 | btn->setPixmap(screen().getTabsUsePixmap()); |
3679 | 3681 | ||
3680 | m_labelbuttons[&client] = btn; | 3682 | m_labelbuttons[&client] = btn; |
diff --git a/src/fluxbox.hh b/src/fluxbox.hh index 3e9e8d6..6c82c00 100644 --- a/src/fluxbox.hh +++ b/src/fluxbox.hh | |||
@@ -124,7 +124,7 @@ public: | |||
124 | FbTk::StringResource &getAppsResource() { return m_rc_appsfile; } | 124 | FbTk::StringResource &getAppsResource() { return m_rc_appsfile; } |
125 | FbTk::StringResource &getKeysResource() { return m_rc_keyfile; } | 125 | FbTk::StringResource &getKeysResource() { return m_rc_keyfile; } |
126 | int colorsPerChannel() const { return *m_rc_colors_per_channel; } | 126 | int colorsPerChannel() const { return *m_rc_colors_per_channel; } |
127 | int getTabsPadding() const { return *m_rc_tabs_padding; } | 127 | FbTk::IntResource &getTabsPaddingResource() { return m_rc_tabs_padding; } |
128 | 128 | ||
129 | 129 | ||
130 | time_t getAutoRaiseDelay() const { return *m_rc_auto_raise_delay; } | 130 | time_t getAutoRaiseDelay() const { return *m_rc_auto_raise_delay; } |