diff options
author | fluxgen <fluxgen> | 2003-07-10 11:36:21 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-07-10 11:36:21 (GMT) |
commit | 16d5dfd6f2c1359428ea02cd3c34fc37ac130e78 (patch) | |
tree | 16d235d9efc36bdb4aa581890e060c56c461bb72 /src/FbWinFrame.hh | |
parent | 34e479a1d4b8fbaf14c23094742541df5a393ce0 (diff) | |
download | fluxbox-16d5dfd6f2c1359428ea02cd3c34fc37ac130e78.zip fluxbox-16d5dfd6f2c1359428ea02cd3c34fc37ac130e78.tar.bz2 |
added shape
Diffstat (limited to 'src/FbWinFrame.hh')
-rw-r--r-- | src/FbWinFrame.hh | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/FbWinFrame.hh b/src/FbWinFrame.hh index 74d1e76..49bb452 100644 --- a/src/FbWinFrame.hh +++ b/src/FbWinFrame.hh | |||
@@ -19,27 +19,29 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbWinFrame.hh,v 1.8 2003/05/21 23:59:53 rathnor Exp $ | 22 | // $Id: FbWinFrame.hh,v 1.9 2003/07/10 11:36:21 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef FBWINFRAME_HH | 24 | #ifndef FBWINFRAME_HH |
25 | #define FBWINFRAME_HH | 25 | #define FBWINFRAME_HH |
26 | 26 | ||
27 | #include "FbWindow.hh" | 27 | #include "FbWindow.hh" |
28 | #include "Button.hh" | ||
29 | #include "EventHandler.hh" | 28 | #include "EventHandler.hh" |
30 | #include "Font.hh" | ||
31 | #include "Text.hh" | ||
32 | #include "FbWinFrameTheme.hh" | ||
33 | #include "RefCount.hh" | 29 | #include "RefCount.hh" |
34 | #include "Command.hh" | ||
35 | #include "Observer.hh" | 30 | #include "Observer.hh" |
31 | #include "Color.hh" | ||
32 | #include "FbPixmap.hh" | ||
36 | 33 | ||
37 | #include <vector> | 34 | #include <vector> |
38 | #include <string> | 35 | #include <string> |
36 | #include <memory> | ||
39 | 37 | ||
38 | class Shape; | ||
40 | class FbWinFrameTheme; | 39 | class FbWinFrameTheme; |
41 | namespace FbTk { | 40 | namespace FbTk { |
42 | class ImageControl; | 41 | class ImageControl; |
42 | class Command; | ||
43 | class Button; | ||
44 | class Texture; | ||
43 | }; | 45 | }; |
44 | 46 | ||
45 | /// holds a window frame with a client window | 47 | /// holds a window frame with a client window |
@@ -266,6 +268,7 @@ private: | |||
266 | FbWinFrame &m_frame; | 268 | FbWinFrame &m_frame; |
267 | }; | 269 | }; |
268 | ThemeListener m_themelistener; | 270 | ThemeListener m_themelistener; |
271 | std::auto_ptr<Shape> m_shape; | ||
269 | }; | 272 | }; |
270 | 273 | ||
271 | #endif // FBWINFRAME_HH | 274 | #endif // FBWINFRAME_HH |