1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/toplevel.h
3 // Purpose: wxTopLevelWindowX11 is the X11 implementation of wxTLW
4 // Author: Julian Smart
8 // Copyright: (c) 2002 Julian Smart
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_X11_TOPLEVEL_H_
13 #define _WX_X11_TOPLEVEL_H_
16 #pragma interface "toplevel.h"
19 // ----------------------------------------------------------------------------
20 // wxTopLevelWindowX11
21 // ----------------------------------------------------------------------------
23 class WXDLLEXPORT wxTopLevelWindowX11
: public wxTopLevelWindowBase
26 // constructors and such
27 wxTopLevelWindowX11() { Init(); }
29 wxTopLevelWindowX11(wxWindow
*parent
,
31 const wxString
& title
,
32 const wxPoint
& pos
= wxDefaultPosition
,
33 const wxSize
& size
= wxDefaultSize
,
34 long style
= wxDEFAULT_FRAME_STYLE
,
35 const wxString
& name
= wxFrameNameStr
)
39 (void)Create(parent
, id
, title
, pos
, size
, style
, name
);
42 bool Create(wxWindow
*parent
,
44 const wxString
& title
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
47 long style
= wxDEFAULT_FRAME_STYLE
,
48 const wxString
& name
= wxFrameNameStr
);
50 virtual ~wxTopLevelWindowX11();
52 // implement base class pure virtuals
53 virtual void Maximize(bool maximize
= TRUE
);
54 virtual bool IsMaximized() const;
55 virtual void Iconize(bool iconize
= TRUE
);
56 virtual bool IsIconized() const;
57 virtual void SetIcon(const wxIcon
& icon
);
58 virtual void Restore();
60 virtual bool Show(bool show
= TRUE
);
62 virtual bool ShowFullScreen(bool show
, long style
= wxFULLSCREEN_ALL
);
63 virtual bool IsFullScreen() const { return m_fsIsShowing
; }
65 virtual void SetTitle( const wxString
& title
);
66 virtual wxString
GetTitle() const;
68 // implementation from now on
69 // --------------------------
71 void SetFocusWidget( wxWindow
*focus
) { m_focusWidget
= focus
; }
72 wxWindow
*GetFocusWidget() const { return m_focusWidget
; }
75 // common part of all ctors
78 // For implementation purposes - sometimes decorations make the client area
80 virtual wxPoint
GetClientAreaOrigin() const;
82 virtual void DoGetClientSize( int *width
, int *height
) const;
83 virtual void DoSetClientSize(int width
, int height
);
84 virtual void DoSetSize(int x
, int y
,
85 int width
, int height
,
86 int sizeFlags
= wxSIZE_AUTO
);
87 virtual void DoGetPosition( int *x
, int *y
) const;
89 // Is the frame currently iconized?
92 // Should the frame be maximized when it will be shown? set by Maximize()
93 // when it is called while the frame is hidden
94 bool m_maximizeOnShow
;
96 // Data to save/restore when calling ShowFullScreen
97 long m_fsStyle
; // Passed to ShowFullScreen
103 // This widget gets the key input
104 wxWindow
* m_focusWidget
;
107 // list of all frames and modeless dialogs
108 //extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows;
110 #endif // _WX_X11_TOPLEVEL_H_