diff options
author | fluxgen <fluxgen> | 2002-08-02 12:58:37 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-08-02 12:58:37 (GMT) |
commit | c28bd74febd7587a2ab10c5b1b6554f6ed8a5ff3 (patch) | |
tree | c095c7cf37af19f6b3d602a43a27f8e977792e0b /src/Screen.hh | |
parent | 378c946d89569afcfe61fcafcf90fa0247673da9 (diff) | |
download | fluxbox_pavel-c28bd74febd7587a2ab10c5b1b6554f6ed8a5ff3.zip fluxbox_pavel-c28bd74febd7587a2ab10c5b1b6554f6ed8a5ff3.tar.bz2 |
added autogrouping-from-tab patch from Steve Cooper
Diffstat (limited to 'src/Screen.hh')
-rw-r--r-- | src/Screen.hh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Screen.hh b/src/Screen.hh index 00d429d..1f4cf89 100644 --- a/src/Screen.hh +++ b/src/Screen.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: Screen.hh,v 1.39 2002/07/23 18:37:05 fluxgen Exp $ | 25 | // $Id: Screen.hh,v 1.40 2002/08/02 12:52:44 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef SCREEN_HH | 27 | #ifndef SCREEN_HH |
28 | #define SCREEN_HH | 28 | #define SCREEN_HH |
@@ -181,6 +181,7 @@ public: | |||
181 | inline void saveDesktopWheeling(bool s) { resource.desktop_wheeling = s; } | 181 | inline void saveDesktopWheeling(bool s) { resource.desktop_wheeling = s; } |
182 | inline void iconUpdate(void) { iconmenu->update(); } | 182 | inline void iconUpdate(void) { iconmenu->update(); } |
183 | inline Iconmenu *getIconmenu(void) { return iconmenu; } | 183 | inline Iconmenu *getIconmenu(void) { return iconmenu; } |
184 | inline void setAutoGroupWindow(Window w = 0) { auto_group_window = w; } | ||
184 | 185 | ||
185 | 186 | ||
186 | #ifdef HAVE_STRFTIME | 187 | #ifdef HAVE_STRFTIME |
@@ -230,6 +231,8 @@ public: | |||
230 | void showGeometry(unsigned int, unsigned int); | 231 | void showGeometry(unsigned int, unsigned int); |
231 | void hideGeometry(void); | 232 | void hideGeometry(void); |
232 | 233 | ||
234 | FluxboxWindow* useAutoGroupWindow(void); | ||
235 | |||
233 | void updateNetizenCurrentWorkspace(void); | 236 | void updateNetizenCurrentWorkspace(void); |
234 | void updateNetizenWorkspaceCount(void); | 237 | void updateNetizenWorkspaceCount(void); |
235 | void updateNetizenWindowFocus(void); | 238 | void updateNetizenWindowFocus(void); |
@@ -293,6 +296,8 @@ private: | |||
293 | 296 | ||
294 | WorkspaceNames workspaceNames; | 297 | WorkspaceNames workspaceNames; |
295 | Workspaces workspacesList; | 298 | Workspaces workspacesList; |
299 | |||
300 | Window auto_group_window; | ||
296 | 301 | ||
297 | struct ScreenResource { | 302 | struct ScreenResource { |
298 | ScreenResource(ResourceManager &rm, const std::string &scrname, | 303 | ScreenResource(ResourceManager &rm, const std::string &scrname, |