]> git.saurik.com Git - wxWidgets.git/blob - include/wx/x11/toplevel.h
erase separators shown behind the controls added to the toolbar
[wxWidgets.git] / include / wx / x11 / toplevel.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/x11/toplevel.h
3 // Purpose: wxTopLevelWindowX11 is the X11 implementation of wxTLW
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 20.09.01
7 // RCS-ID: $Id$
8 // Copyright: (c) 2002 Julian Smart
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_X11_TOPLEVEL_H_
13 #define _WX_X11_TOPLEVEL_H_
14
15 #ifdef __GNUG__
16 #pragma interface "toplevel.h"
17 #endif
18
19 // ----------------------------------------------------------------------------
20 // wxTopLevelWindowX11
21 // ----------------------------------------------------------------------------
22
23 class WXDLLEXPORT wxTopLevelWindowX11 : public wxTopLevelWindowBase
24 {
25 public:
26 // constructors and such
27 wxTopLevelWindowX11() { Init(); }
28
29 wxTopLevelWindowX11(wxWindow *parent,
30 wxWindowID id,
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)
36 {
37 Init();
38
39 (void)Create(parent, id, title, pos, size, style, name);
40 }
41
42 bool Create(wxWindow *parent,
43 wxWindowID id,
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);
49
50 virtual ~wxTopLevelWindowX11();
51
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();
59
60 virtual bool Show( bool show = TRUE );
61
62 virtual bool ShowFullScreen( bool show, long style = wxFULLSCREEN_ALL );
63 virtual bool IsFullScreen() const { return m_fsIsShowing; }
64
65 virtual void SetTitle( const wxString& title);
66 virtual wxString GetTitle() const;
67
68 // implementation
69 void SetNeedResizeInIdle( bool set = TRUE ) { m_needResizeInIdle = set; }
70
71 protected:
72 // common part of all ctors
73 void Init();
74
75 // For implementation purposes - sometimes decorations make the
76 // client area smaller
77 virtual wxPoint GetClientAreaOrigin() const;
78
79 // For implementation of delayed resize events
80 bool m_needResizeInIdle;
81 virtual void OnInternalIdle();
82
83 virtual void DoGetClientSize( int *width, int *height ) const;
84 virtual void DoSetClientSize(int width, int height);
85 virtual void DoSetSize(int x, int y,
86 int width, int height,
87 int sizeFlags = wxSIZE_AUTO);
88 virtual void DoGetPosition( int *x, int *y ) const;
89
90 // Is the frame currently iconized?
91 bool m_iconized;
92
93 // Should the frame be maximized when it will be shown? set by Maximize()
94 // when it is called while the frame is hidden
95 bool m_maximizeOnShow;
96
97 // Data to save/restore when calling ShowFullScreen
98 long m_fsStyle; // Passed to ShowFullScreen
99 wxRect m_fsOldSize;
100 bool m_fsIsMaximized;
101 bool m_fsIsShowing;
102 wxString m_title;
103 };
104
105 // list of all frames and modeless dialogs
106 //extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows;
107
108 #endif // _WX_X11_TOPLEVEL_H_
109