]>
Commit | Line | Data |
---|---|---|
1b0fb34b JS |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/x11/toplevel.h | |
3 | // Purpose: wxTopLevelWindowX11 is the X11 implementation of wxTLW | |
83df96d6 JS |
4 | // Author: Julian Smart |
5 | // Modified by: | |
1b0fb34b | 6 | // Created: 20.09.01 |
83df96d6 | 7 | // RCS-ID: $Id$ |
1b0fb34b | 8 | // Copyright: (c) 2002 Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
1b0fb34b | 10 | /////////////////////////////////////////////////////////////////////////////// |
83df96d6 | 11 | |
1b0fb34b JS |
12 | #ifndef _WX_X11_TOPLEVEL_H_ |
13 | #define _WX_X11_TOPLEVEL_H_ | |
83df96d6 | 14 | |
1b0fb34b JS |
15 | // ---------------------------------------------------------------------------- |
16 | // wxTopLevelWindowX11 | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | class WXDLLEXPORT wxTopLevelWindowX11 : public wxTopLevelWindowBase | |
83df96d6 JS |
20 | { |
21 | public: | |
1b0fb34b JS |
22 | // constructors and such |
23 | wxTopLevelWindowX11() { Init(); } | |
24 | ||
25 | wxTopLevelWindowX11(wxWindow *parent, | |
26 | wxWindowID id, | |
27 | const wxString& title, | |
28 | const wxPoint& pos = wxDefaultPosition, | |
29 | const wxSize& size = wxDefaultSize, | |
30 | long style = wxDEFAULT_FRAME_STYLE, | |
31 | const wxString& name = wxFrameNameStr) | |
83df96d6 JS |
32 | { |
33 | Init(); | |
1b0fb34b JS |
34 | |
35 | (void)Create(parent, id, title, pos, size, style, name); | |
83df96d6 | 36 | } |
1b0fb34b | 37 | |
83df96d6 | 38 | bool Create(wxWindow *parent, |
1b0fb34b JS |
39 | wxWindowID id, |
40 | const wxString& title, | |
41 | const wxPoint& pos = wxDefaultPosition, | |
42 | const wxSize& size = wxDefaultSize, | |
43 | long style = wxDEFAULT_FRAME_STYLE, | |
44 | const wxString& name = wxFrameNameStr); | |
45 | ||
46 | virtual ~wxTopLevelWindowX11(); | |
47 | ||
48 | // implement base class pure virtuals | |
ffd84c94 | 49 | virtual void Maximize(bool maximize = true); |
83df96d6 | 50 | virtual bool IsMaximized() const; |
ffd84c94 | 51 | virtual void Iconize(bool iconize = true); |
1b0fb34b | 52 | virtual bool IsIconized() const; |
f618020a | 53 | virtual void SetIcons(const wxIconBundle& icons); |
83df96d6 | 54 | virtual void Restore(); |
1b0fb34b | 55 | |
ffd84c94 | 56 | virtual bool Show( bool show = true ); |
1b0fb34b | 57 | |
77df2fbc | 58 | virtual bool ShowFullScreen( bool show, long style = wxFULLSCREEN_ALL ); |
1b0fb34b JS |
59 | virtual bool IsFullScreen() const { return m_fsIsShowing; } |
60 | ||
b513212d JS |
61 | virtual void SetTitle( const wxString& title); |
62 | virtual wxString GetTitle() const; | |
ffd84c94 | 63 | |
77df2fbc | 64 | // implementation |
ffd84c94 | 65 | void SetNeedResizeInIdle( bool set = true ) |
c2c0dabf RR |
66 | { m_needResizeInIdle = set; } |
67 | void SetConfigureGeometry( int x, int y, int width, int height ) | |
68 | { m_x = x; m_y = y; m_width = width; m_height = height; } | |
ff9ca1fd MB |
69 | |
70 | virtual bool SetShape(const wxRegion& region); | |
ffd84c94 | 71 | |
6f02a879 VZ |
72 | // For implementation purposes - sometimes decorations make the |
73 | // client area smaller | |
74 | virtual wxPoint GetClientAreaOrigin() const; | |
75 | ||
76 | virtual void OnInternalIdle(); | |
77 | ||
83df96d6 JS |
78 | protected: |
79 | // common part of all ctors | |
80 | void Init(); | |
1b0fb34b | 81 | |
f618020a MB |
82 | // set the icon for the window |
83 | void DoSetIcon( const wxIcon& icon ); | |
84 | ||
77df2fbc RR |
85 | // For implementation of delayed resize events |
86 | bool m_needResizeInIdle; | |
77df2fbc | 87 | |
e5053ade | 88 | virtual void DoGetClientSize( int *width, int *height ) const; |
e97d2576 | 89 | virtual void DoGetSize( int *width, int *height ) const; |
e5053ade | 90 | virtual void DoSetClientSize(int width, int height); |
3a0b23eb JS |
91 | virtual void DoSetSize(int x, int y, |
92 | int width, int height, | |
93 | int sizeFlags = wxSIZE_AUTO); | |
94 | virtual void DoGetPosition( int *x, int *y ) const; | |
ffd84c94 | 95 | |
7e4501ee | 96 | // Is the frame currently iconized? |
1b0fb34b JS |
97 | bool m_iconized; |
98 | ||
7e4501ee | 99 | // Should the frame be maximized when it will be shown? set by Maximize() |
1b0fb34b JS |
100 | // when it is called while the frame is hidden |
101 | bool m_maximizeOnShow; | |
102 | ||
103 | // Data to save/restore when calling ShowFullScreen | |
7e4501ee | 104 | long m_fsStyle; // Passed to ShowFullScreen |
1b0fb34b JS |
105 | wxRect m_fsOldSize; |
106 | bool m_fsIsMaximized; | |
107 | bool m_fsIsShowing; | |
b513212d | 108 | wxString m_title; |
ffd84c94 | 109 | |
c2c0dabf RR |
110 | // Geometry |
111 | int m_x,m_y,m_width,m_height; | |
83df96d6 JS |
112 | }; |
113 | ||
b28d3abf JS |
114 | // list of all frames and modeless dialogs |
115 | //extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows; | |
116 | ||
1b0fb34b | 117 | #endif // _WX_X11_TOPLEVEL_H_ |