aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-02-03 13:53:48 (GMT)
committerfluxgen <fluxgen>2003-02-03 13:53:48 (GMT)
commit128bdea1a8533b8eab68e359cd06c60084bbc24d (patch)
treef893afb436983c0f60fec8b280bd91996a5e7fa8 /src
parentc6a8dfa99eb073522ef9a8589e82d415cd406e5f (diff)
downloadfluxbox-128bdea1a8533b8eab68e359cd06c60084bbc24d.zip
fluxbox-128bdea1a8533b8eab68e359cd06c60084bbc24d.tar.bz2
added layer for constructor
Diffstat (limited to 'src')
-rw-r--r--src/Window.hh17
1 files changed, 11 insertions, 6 deletions
diff --git a/src/Window.hh b/src/Window.hh
index 27bb7dd..0abeb34 100644
--- a/src/Window.hh
+++ b/src/Window.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: Window.hh,v 1.43 2003/02/02 16:32:40 rathnor Exp $ 25// $Id: Window.hh,v 1.44 2003/02/03 13:53:48 fluxgen Exp $
26 26
27#ifndef WINDOW_HH 27#ifndef WINDOW_HH
28#define WINDOW_HH 28#define WINDOW_HH
@@ -55,6 +55,7 @@ class BScreen;
55namespace FbTk { 55namespace FbTk {
56class MenuTheme; 56class MenuTheme;
57class ImageControl; 57class ImageControl;
58class XLayer;
58}; 59};
59 60
60/// Creates the window frame and handles any window event for it 61/// Creates the window frame and handles any window event for it
@@ -96,8 +97,10 @@ public:
96 }; 97 };
97 98
98 /// create fluxbox window with parent win and screen connection 99 /// create fluxbox window with parent win and screen connection
99 FluxboxWindow(Window win, BScreen *scr, int screen_num, FbTk::ImageControl &imgctrl, FbWinFrameTheme &tm, 100 FluxboxWindow(Window win, BScreen *scr,
100 FbTk::MenuTheme &menutheme); 101 int screen_num, FbTk::ImageControl &imgctrl, FbWinFrameTheme &tm,
102 FbTk::MenuTheme &menutheme,
103 FbTk::XLayer &layer);
101 virtual ~FluxboxWindow(); 104 virtual ~FluxboxWindow();
102 105
103 106
@@ -197,8 +200,8 @@ public:
197 const BScreen *getScreen() const { return screen; } 200 const BScreen *getScreen() const { return screen; }
198 BScreen *getScreen() { return screen; } 201 BScreen *getScreen() { return screen; }
199 202
200 const FbTk::XLayerItem *getLayerItem() const { return m_layeritem; } 203 const FbTk::XLayerItem &getLayerItem() const { return m_layeritem; }
201 FbTk::XLayerItem *getLayerItem() { return m_layeritem; } 204 FbTk::XLayerItem &getLayerItem() { return m_layeritem; }
202 205
203 const Tab *getTab() const { return tab; } 206 const Tab *getTab() const { return tab; }
204 Tab *getTab() { return tab; } 207 Tab *getTab() { return tab; }
@@ -328,7 +331,9 @@ private:
328 331
329 Time lastButtonPressTime; 332 Time lastButtonPressTime;
330 FbTk::Menu m_windowmenu; 333 FbTk::Menu m_windowmenu;
331 FbTk::XLayerItem *m_layeritem; 334
335
336 FbTk::XLayerItem m_layeritem;
332 int m_layernum; 337 int m_layernum;
333 338
334 timeval lastFocusTime; 339 timeval lastFocusTime;