diff options
Diffstat (limited to 'src/FbWinFrame.hh')
-rw-r--r-- | src/FbWinFrame.hh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/FbWinFrame.hh b/src/FbWinFrame.hh index ba553cc..2f5b81b 100644 --- a/src/FbWinFrame.hh +++ b/src/FbWinFrame.hh | |||
@@ -19,7 +19,7 @@ | |||
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.2 2003/01/07 01:28:16 fluxgen Exp $ | 22 | // $Id: FbWinFrame.hh,v 1.3 2003/01/09 22:00:34 fluxgen Exp $ |
23 | 23 | ||
24 | #ifndef FBWINFRAME_HH | 24 | #ifndef FBWINFRAME_HH |
25 | #define FBWINFRAME_HH | 25 | #define FBWINFRAME_HH |
@@ -36,20 +36,21 @@ | |||
36 | #include <vector> | 36 | #include <vector> |
37 | #include <string> | 37 | #include <string> |
38 | 38 | ||
39 | |||
40 | class FbWinFrameTheme; | 39 | class FbWinFrameTheme; |
41 | class BImageControl; | 40 | namespace FbTk { |
41 | class ImageControl; | ||
42 | }; | ||
42 | 43 | ||
43 | /// holds a window frame with a client window (see: <a href="fluxbox_fbwinframe.png">image</a>) | 44 | /// holds a window frame with a client window (see: <a href="fluxbox_fbwinframe.png">image</a>) |
44 | class FbWinFrame:public FbTk::EventHandler { | 45 | class FbWinFrame:public FbTk::EventHandler { |
45 | public: | 46 | public: |
46 | 47 | ||
47 | /// create a top level window | 48 | /// create a top level window |
48 | FbWinFrame(FbWinFrameTheme &theme, BImageControl &imgctrl, int screen_num, int x, int y, | 49 | FbWinFrame(FbWinFrameTheme &theme, FbTk::ImageControl &imgctrl, int screen_num, int x, int y, |
49 | unsigned int width, unsigned int height); | 50 | unsigned int width, unsigned int height); |
50 | 51 | ||
51 | /// create a frame window inside another FbWindow, NOT IMPLEMENTED! | 52 | /// create a frame window inside another FbWindow, NOT IMPLEMENTED! |
52 | FbWinFrame(FbWinFrameTheme &theme, BImageControl &imgctrl, const FbTk::FbWindow &parent, | 53 | FbWinFrame(FbWinFrameTheme &theme, FbTk::ImageControl &imgctrl, const FbTk::FbWindow &parent, |
53 | int x, int y, | 54 | int x, int y, |
54 | unsigned int width, unsigned int height); | 55 | unsigned int width, unsigned int height); |
55 | 56 | ||
@@ -170,7 +171,7 @@ private: | |||
170 | void setupButton(FbTk::Button &btn); | 171 | void setupButton(FbTk::Button &btn); |
171 | 172 | ||
172 | FbWinFrameTheme &m_theme; ///< theme to be used | 173 | FbWinFrameTheme &m_theme; ///< theme to be used |
173 | BImageControl &m_imagectrl; ///< Image control for rendering | 174 | FbTk::ImageControl &m_imagectrl; ///< Image control for rendering |
174 | /** | 175 | /** |
175 | @name windows | 176 | @name windows |
176 | */ | 177 | */ |