diff options
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r-- | src/fluxbox.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh index 96b883d..6258651 100644 --- a/src/fluxbox.hh +++ b/src/fluxbox.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: fluxbox.hh,v 1.90 2004/08/31 15:26:39 rathnor Exp $ | 25 | // $Id: fluxbox.hh,v 1.91 2004/09/12 14:56:19 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef FLUXBOX_HH | 27 | #ifndef FLUXBOX_HH |
28 | #define FLUXBOX_HH | 28 | #define FLUXBOX_HH |
@@ -114,8 +114,8 @@ public: | |||
114 | enum TabsAttachArea{ATTACH_AREA_WINDOW= 0, ATTACH_AREA_TITLEBAR}; | 114 | enum TabsAttachArea{ATTACH_AREA_WINDOW= 0, ATTACH_AREA_TITLEBAR}; |
115 | 115 | ||
116 | 116 | ||
117 | |||
118 | inline bool getIgnoreBorder() const { return *m_rc_ignoreborder; } | 117 | inline bool getIgnoreBorder() const { return *m_rc_ignoreborder; } |
118 | inline bool &getPseudoTrans() { return *m_rc_pseudotrans; } | ||
119 | 119 | ||
120 | inline const std::vector<Fluxbox::Titlebar>& getTitlebarRight() const { return *m_rc_titlebar_right; } | 120 | inline const std::vector<Fluxbox::Titlebar>& getTitlebarRight() const { return *m_rc_titlebar_right; } |
121 | inline const std::vector<Fluxbox::Titlebar>& getTitlebarLeft() const { return *m_rc_titlebar_left; } | 121 | inline const std::vector<Fluxbox::Titlebar>& getTitlebarLeft() const { return *m_rc_titlebar_left; } |
@@ -251,6 +251,7 @@ private: | |||
251 | //--- Resources | 251 | //--- Resources |
252 | 252 | ||
253 | FbTk::Resource<bool> m_rc_tabs, m_rc_ignoreborder; | 253 | FbTk::Resource<bool> m_rc_tabs, m_rc_ignoreborder; |
254 | FbTk::Resource<bool> m_rc_pseudotrans; | ||
254 | FbTk::Resource<int> m_rc_colors_per_channel, m_rc_numlayers, | 255 | FbTk::Resource<int> m_rc_colors_per_channel, m_rc_numlayers, |
255 | m_rc_double_click_interval, m_rc_update_delay_time; | 256 | m_rc_double_click_interval, m_rc_update_delay_time; |
256 | FbTk::Resource<std::string> m_rc_stylefile, | 257 | FbTk::Resource<std::string> m_rc_stylefile, |