diff options
author | fluxgen <fluxgen> | 2003-05-10 22:50:19 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-05-10 22:50:19 (GMT) |
commit | 26df4622fd3ce8d7dae67f6f24cda4771801935f (patch) | |
tree | 9aa1bcbdbb4fdd2c204a8c48cec1951922db4c46 /src/FbRootWindow.hh | |
parent | 8142aae84e5577c7dbbd908e4477c0d9b61f27ae (diff) | |
download | fluxbox-26df4622fd3ce8d7dae67f6f24cda4771801935f.zip fluxbox-26df4622fd3ce8d7dae67f6f24cda4771801935f.tar.bz2 |
root window
Diffstat (limited to 'src/FbRootWindow.hh')
-rw-r--r-- | src/FbRootWindow.hh | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/FbRootWindow.hh b/src/FbRootWindow.hh new file mode 100644 index 0000000..687c234 --- /dev/null +++ b/src/FbRootWindow.hh | |||
@@ -0,0 +1,49 @@ | |||
1 | // FbRootWindow.hh for fluxbox | ||
2 | // Copyright (c) 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net) | ||
3 | // | ||
4 | // Permission is hereby granted, free of charge, to any person obtaining a | ||
5 | // copy of this software and associated documentation files (the "Software"), | ||
6 | // to deal in the Software without restriction, including without limitation | ||
7 | // the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
8 | // and/or sell copies of the Software, and to permit persons to whom the | ||
9 | // Software is furnished to do so, subject to the following conditions: | ||
10 | // | ||
11 | // The above copyright notice and this permission notice shall be included in | ||
12 | // all copies or substantial portions of the Software. | ||
13 | // | ||
14 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
15 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
16 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
17 | // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
18 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
20 | // DEALINGS IN THE SOFTWARE. | ||
21 | |||
22 | // $Id: FbRootWindow.hh,v 1.1 2003/05/10 22:50:19 fluxgen Exp $ | ||
23 | |||
24 | #ifndef FBROOTWINDOW_HH | ||
25 | #define FBROOTWINDOW_HH | ||
26 | |||
27 | #include "FbWindow.hh" | ||
28 | |||
29 | class FbRootWindow: public FbTk::FbWindow { | ||
30 | public: | ||
31 | explicit FbRootWindow(int screen_num); | ||
32 | // disable functions that we can't do on root window | ||
33 | void move(int x, int y) { } | ||
34 | void resize(unsigned int width, unsigned int height) { } | ||
35 | void moveResize(int x, int y, unsigned int width, unsigned int height) { } | ||
36 | void show() { } | ||
37 | void hide() { } | ||
38 | // we should not assign a new window to this | ||
39 | FbTk::FbWindow &operator = (Window win) { return *this; } | ||
40 | |||
41 | inline Visual *visual() const { return m_visual; } | ||
42 | inline Colormap colormap() const { return m_colormap; } | ||
43 | |||
44 | private: | ||
45 | Visual *m_visual; | ||
46 | Colormap m_colormap; | ||
47 | }; | ||
48 | |||
49 | #endif // FBROOTWINDOW_HH | ||