]>
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 |
83df96d6 | 9 | // Licence: wxWindows licence |
1b0fb34b | 10 | /////////////////////////////////////////////////////////////////////////////// |
83df96d6 | 11 | |
1b0fb34b JS |
12 | #ifndef _WX_X11_TOPLEVEL_H_ |
13 | #define _WX_X11_TOPLEVEL_H_ | |
83df96d6 | 14 | |
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
1b0fb34b | 16 | #pragma interface "toplevel.h" |
83df96d6 JS |
17 | #endif |
18 | ||
1b0fb34b JS |
19 | // ---------------------------------------------------------------------------- |
20 | // wxTopLevelWindowX11 | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | class WXDLLEXPORT wxTopLevelWindowX11 : public wxTopLevelWindowBase | |
83df96d6 JS |
24 | { |
25 | public: | |
1b0fb34b JS |
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) | |
83df96d6 JS |
36 | { |
37 | Init(); | |
1b0fb34b JS |
38 | |
39 | (void)Create(parent, id, title, pos, size, style, name); | |
83df96d6 | 40 | } |
1b0fb34b | 41 | |
83df96d6 | 42 | bool Create(wxWindow *parent, |
1b0fb34b JS |
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); | |
83df96d6 | 54 | virtual bool IsMaximized() const; |
1b0fb34b JS |
55 | virtual void Iconize(bool iconize = TRUE); |
56 | virtual bool IsIconized() const; | |
f618020a MB |
57 | virtual void SetIcon(const wxIcon& icon) { SetIcons( wxIconBundle( icon ) ); } |
58 | virtual void SetIcons(const wxIconBundle& icons); | |
83df96d6 | 59 | virtual void Restore(); |
1b0fb34b | 60 | |
77df2fbc | 61 | virtual bool Show( bool show = TRUE ); |
1b0fb34b | 62 | |
77df2fbc | 63 | virtual bool ShowFullScreen( bool show, long style = wxFULLSCREEN_ALL ); |
1b0fb34b JS |
64 | virtual bool IsFullScreen() const { return m_fsIsShowing; } |
65 | ||
b513212d JS |
66 | virtual void SetTitle( const wxString& title); |
67 | virtual wxString GetTitle() const; | |
68 | ||
77df2fbc | 69 | // implementation |
c2c0dabf RR |
70 | void SetNeedResizeInIdle( bool set = TRUE ) |
71 | { m_needResizeInIdle = set; } | |
72 | void SetConfigureGeometry( int x, int y, int width, int height ) | |
73 | { m_x = x; m_y = y; m_width = width; m_height = height; } | |
ff9ca1fd MB |
74 | |
75 | virtual bool SetShape(const wxRegion& region); | |
7e4501ee | 76 | |
83df96d6 JS |
77 | protected: |
78 | // common part of all ctors | |
79 | void Init(); | |
1b0fb34b | 80 | |
f618020a MB |
81 | // set the icon for the window |
82 | void DoSetIcon( const wxIcon& icon ); | |
83 | ||
77df2fbc RR |
84 | // For implementation purposes - sometimes decorations make the |
85 | // client area smaller | |
e5053ade JS |
86 | virtual wxPoint GetClientAreaOrigin() const; |
87 | ||
77df2fbc RR |
88 | // For implementation of delayed resize events |
89 | bool m_needResizeInIdle; | |
90 | virtual void OnInternalIdle(); | |
91 | ||
e5053ade | 92 | virtual void DoGetClientSize( int *width, int *height ) const; |
e97d2576 | 93 | virtual void DoGetSize( int *width, int *height ) const; |
e5053ade | 94 | virtual void DoSetClientSize(int width, int height); |
3a0b23eb JS |
95 | virtual void DoSetSize(int x, int y, |
96 | int width, int height, | |
97 | int sizeFlags = wxSIZE_AUTO); | |
98 | virtual void DoGetPosition( int *x, int *y ) const; | |
e5053ade | 99 | |
7e4501ee | 100 | // Is the frame currently iconized? |
1b0fb34b JS |
101 | bool m_iconized; |
102 | ||
7e4501ee | 103 | // Should the frame be maximized when it will be shown? set by Maximize() |
1b0fb34b JS |
104 | // when it is called while the frame is hidden |
105 | bool m_maximizeOnShow; | |
106 | ||
107 | // Data to save/restore when calling ShowFullScreen | |
7e4501ee | 108 | long m_fsStyle; // Passed to ShowFullScreen |
1b0fb34b JS |
109 | wxRect m_fsOldSize; |
110 | bool m_fsIsMaximized; | |
111 | bool m_fsIsShowing; | |
b513212d | 112 | wxString m_title; |
c2c0dabf RR |
113 | |
114 | // Geometry | |
115 | int m_x,m_y,m_width,m_height; | |
83df96d6 JS |
116 | }; |
117 | ||
b28d3abf JS |
118 | // list of all frames and modeless dialogs |
119 | //extern WXDLLEXPORT_DATA(wxWindowList) wxModelessWindows; | |
120 | ||
1b0fb34b JS |
121 | #endif // _WX_X11_TOPLEVEL_H_ |
122 |