aboutsummaryrefslogtreecommitdiff
path: root/src/FbWinFrame.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-01-09 22:08:27 (GMT)
committerfluxgen <fluxgen>2003-01-09 22:08:27 (GMT)
commit5cfe837b742f78655053256f8f67cb7429c42bcd (patch)
tree562c14c65ae1839a0244127b51f8ca935dfc0768 /src/FbWinFrame.hh
parentd5a394a1e430d927497a2e929779286f7a75df56 (diff)
downloadfluxbox-5cfe837b742f78655053256f8f67cb7429c42bcd.zip
fluxbox-5cfe837b742f78655053256f8f67cb7429c42bcd.tar.bz2
adjusted for FbTk ImageControl
Diffstat (limited to 'src/FbWinFrame.hh')
-rw-r--r--src/FbWinFrame.hh13
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
40class FbWinFrameTheme; 39class FbWinFrameTheme;
41class BImageControl; 40namespace FbTk {
41class 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>)
44class FbWinFrame:public FbTk::EventHandler { 45class FbWinFrame:public FbTk::EventHandler {
45public: 46public:
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 */