aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-09-12 14:56:20 (GMT)
committerrathnor <rathnor>2004-09-12 14:56:20 (GMT)
commit42c1fd3ae3dd058e146b7350c65b74386123c25c (patch)
treecc549c2c7b12c87f8c33198f5b30f00d9dd30bc6 /src/fluxbox.hh
parentc39234195a46cece2bdb18dfdde6c91c7a190dc4 (diff)
downloadfluxbox-42c1fd3ae3dd058e146b7350c65b74386123c25c.zip
fluxbox-42c1fd3ae3dd058e146b7350c65b74386123c25c.tar.bz2
preliminary support for composite/compositing manager. Also general work
for consistency with transparency resources
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r--src/fluxbox.hh5
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,