diff options
author | fluxgen <fluxgen> | 2004-04-22 21:07:57 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2004-04-22 21:07:57 (GMT) |
commit | 09eade65d558dfc032ac415607fc2c6eb99aea19 (patch) | |
tree | ad0900955564f409f8edf85c2baebb19e611a04e /src/fluxbox.hh | |
parent | 027741fbb409e945a2c3a632027c28981314b89a (diff) | |
download | fluxbox_pavel-09eade65d558dfc032ac415607fc2c6eb99aea19.zip fluxbox_pavel-09eade65d558dfc032ac415607fc2c6eb99aea19.tar.bz2 |
attach area, patch from Mathias Gumz
Diffstat (limited to 'src/fluxbox.hh')
-rw-r--r-- | src/fluxbox.hh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/fluxbox.hh b/src/fluxbox.hh index 2625ec0..ea10e5d 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.86 2004/04/19 22:45:44 fluxgen Exp $ | 25 | // $Id: fluxbox.hh,v 1.87 2004/04/22 21:07:57 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef FLUXBOX_HH | 27 | #ifndef FLUXBOX_HH |
28 | #define FLUXBOX_HH | 28 | #define FLUXBOX_HH |
@@ -107,6 +107,7 @@ public: | |||
107 | 107 | ||
108 | /// obsolete | 108 | /// obsolete |
109 | enum Titlebar{SHADE=0, MINIMIZE, MAXIMIZE, CLOSE, STICK, MENU, EMPTY}; | 109 | enum Titlebar{SHADE=0, MINIMIZE, MAXIMIZE, CLOSE, STICK, MENU, EMPTY}; |
110 | enum TabsAttachArea{ATTACH_AREA_WINDOW= 0, ATTACH_AREA_TITLEBAR}; | ||
110 | 111 | ||
111 | 112 | ||
112 | 113 | ||
@@ -114,6 +115,7 @@ public: | |||
114 | 115 | ||
115 | inline const std::vector<Fluxbox::Titlebar>& getTitlebarRight() const { return *m_rc_titlebar_right; } | 116 | inline const std::vector<Fluxbox::Titlebar>& getTitlebarRight() const { return *m_rc_titlebar_right; } |
116 | inline const std::vector<Fluxbox::Titlebar>& getTitlebarLeft() const { return *m_rc_titlebar_left; } | 117 | inline const std::vector<Fluxbox::Titlebar>& getTitlebarLeft() const { return *m_rc_titlebar_left; } |
118 | inline const Fluxbox::TabsAttachArea getTabsAttachArea() const { return *m_rc_tabs_attach_area; } | ||
117 | inline const std::string &getStyleFilename() const { return *m_rc_stylefile; } | 119 | inline const std::string &getStyleFilename() const { return *m_rc_stylefile; } |
118 | 120 | ||
119 | inline const std::string &getMenuFilename() const { return *m_rc_menufile; } | 121 | inline const std::string &getMenuFilename() const { return *m_rc_menufile; } |
@@ -252,6 +254,7 @@ private: | |||
252 | 254 | ||
253 | 255 | ||
254 | FbTk::Resource<TitlebarList> m_rc_titlebar_left, m_rc_titlebar_right; | 256 | FbTk::Resource<TitlebarList> m_rc_titlebar_left, m_rc_titlebar_right; |
257 | FbTk::Resource<TabsAttachArea> m_rc_tabs_attach_area; | ||
255 | FbTk::Resource<unsigned int> m_rc_cache_life, m_rc_cache_max; | 258 | FbTk::Resource<unsigned int> m_rc_cache_life, m_rc_cache_max; |
256 | FbTk::Resource<time_t> m_rc_auto_raise_delay; | 259 | FbTk::Resource<time_t> m_rc_auto_raise_delay; |
257 | FbTk::Resource<bool> m_rc_use_mod1; /// temporary!, to disable mod1 for resize/move | 260 | FbTk::Resource<bool> m_rc_use_mod1; /// temporary!, to disable mod1 for resize/move |