]>
Commit | Line | Data |
---|---|---|
7d9f12f3 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/gtk/toplevel.h | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart | |
65571936 | 7 | // Licence: wxWindows licence |
7d9f12f3 VS |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
b5e31cc8 PC |
10 | #ifndef _WX_GTK_TOPLEVEL_H_ |
11 | #define _WX_GTK_TOPLEVEL_H_ | |
7d9f12f3 | 12 | |
7d9f12f3 VS |
13 | //----------------------------------------------------------------------------- |
14 | // wxTopLevelWindowGTK | |
15 | //----------------------------------------------------------------------------- | |
16 | ||
20123d49 | 17 | class WXDLLIMPEXP_CORE wxTopLevelWindowGTK : public wxTopLevelWindowBase |
7d9f12f3 | 18 | { |
3c7620f6 | 19 | typedef wxTopLevelWindowBase base_type; |
7d9f12f3 VS |
20 | public: |
21 | // construction | |
22 | wxTopLevelWindowGTK() { Init(); } | |
23 | wxTopLevelWindowGTK(wxWindow *parent, | |
24 | wxWindowID id, | |
25 | const wxString& title, | |
26 | const wxPoint& pos = wxDefaultPosition, | |
27 | const wxSize& size = wxDefaultSize, | |
28 | long style = wxDEFAULT_FRAME_STYLE, | |
29 | const wxString& name = wxFrameNameStr) | |
30 | { | |
31 | Init(); | |
32 | ||
33 | Create(parent, id, title, pos, size, style, name); | |
34 | } | |
35 | ||
36 | bool Create(wxWindow *parent, | |
37 | wxWindowID id, | |
38 | const wxString& title, | |
39 | const wxPoint& pos = wxDefaultPosition, | |
40 | const wxSize& size = wxDefaultSize, | |
41 | long style = wxDEFAULT_FRAME_STYLE, | |
42 | const wxString& name = wxFrameNameStr); | |
43 | ||
44 | virtual ~wxTopLevelWindowGTK(); | |
45 | ||
46 | // implement base class pure virtuals | |
cb8cc250 | 47 | virtual void Maximize(bool maximize = true); |
7d9f12f3 | 48 | virtual bool IsMaximized() const; |
cb8cc250 | 49 | virtual void Iconize(bool iconize = true); |
7d9f12f3 | 50 | virtual bool IsIconized() const; |
f618020a | 51 | virtual void SetIcons(const wxIconBundle& icons); |
7d9f12f3 VS |
52 | virtual void Restore(); |
53 | ||
0d635035 RR |
54 | virtual bool EnableCloseButton(bool enable = true); |
55 | ||
dbc7ceb9 | 56 | virtual void ShowWithoutActivating(); |
7d9f12f3 | 57 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); |
6dd0883d | 58 | virtual bool IsFullScreen() const { return m_fsIsShowing; } |
7d9f12f3 | 59 | |
dca92ddf MR |
60 | virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO); |
61 | ||
015dca24 MR |
62 | virtual void SetWindowStyleFlag( long style ); |
63 | ||
cb8cc250 | 64 | virtual bool Show(bool show = true); |
7d9f12f3 | 65 | |
a2ac55f5 RR |
66 | virtual void Raise(); |
67 | ||
6b30a44e | 68 | virtual bool IsActive(); |
35ff90a0 | 69 | |
7d9f12f3 VS |
70 | virtual void SetTitle( const wxString &title ); |
71 | virtual wxString GetTitle() const { return m_title; } | |
72 | ||
a03b38ef RR |
73 | virtual void SetLabel(const wxString& label) { SetTitle( label ); } |
74 | virtual wxString GetLabel() const { return GetTitle(); } | |
75 | ||
76 | ||
07e49707 MR |
77 | virtual bool SetTransparent(wxByte alpha); |
78 | virtual bool CanSetTransparent(); | |
79 | ||
5152b0e5 JS |
80 | // Experimental, to allow help windows to be |
81 | // viewable from within modal dialogs | |
82 | virtual void AddGrab(); | |
83 | virtual void RemoveGrab(); | |
84 | virtual bool IsGrabbed() const { return m_grabbed; } | |
85 | ||
d0285203 RR |
86 | |
87 | virtual void Refresh( bool eraseBackground = true, | |
88 | const wxRect *rect = (const wxRect *) NULL ); | |
89 | ||
7d9f12f3 VS |
90 | // implementation from now on |
91 | // -------------------------- | |
92 | ||
7d9f12f3 | 93 | // GTK callbacks |
7d9f12f3 VS |
94 | virtual void OnInternalIdle(); |
95 | ||
612515af VZ |
96 | virtual void GTKHandleRealized(); |
97 | ||
7d9f12f3 VS |
98 | // do *not* call this to iconize the frame, this is a private function! |
99 | void SetIconizeState(bool iconic); | |
100 | ||
7d9f12f3 | 101 | GtkWidget *m_mainWidget; |
7d9f12f3 VS |
102 | |
103 | bool m_fsIsShowing; /* full screen */ | |
290cd301 | 104 | int m_fsSaveGdkFunc, m_fsSaveGdkDecor; |
7d9f12f3 | 105 | wxRect m_fsSaveFrame; |
6aeb6f2a VZ |
106 | |
107 | // m_windowStyle translated to GDK's terms | |
290cd301 | 108 | int m_gdkFunc, |
6aeb6f2a | 109 | m_gdkDecor; |
7d9f12f3 | 110 | |
0ab0d0e1 PC |
111 | // size of WM decorations |
112 | wxSize m_decorSize; | |
113 | ||
ef1a9be4 MR |
114 | // private gtk_timeout_add result for mimicing wxUSER_ATTENTION_INFO and |
115 | // wxUSER_ATTENTION_ERROR difference, -2 for no hint, -1 for ERROR hint, rest for GtkTimeout handle. | |
116 | int m_urgency_hint; | |
f5c0761f PC |
117 | // timer for detecting WM with broken _NET_REQUEST_FRAME_EXTENTS handling |
118 | unsigned m_netFrameExtentsTimerId; | |
ef1a9be4 | 119 | |
290cd301 | 120 | // return the size of the window without WM decorations |
6e264997 VZ |
121 | void GTKDoGetSize(int *width, int *height) const; |
122 | ||
81b0235f PC |
123 | void GTKUpdateDecorSize(const wxSize& decorSize); |
124 | ||
7d9f12f3 | 125 | protected: |
b2e10dac PC |
126 | // give hints to the Window Manager for how the size |
127 | // of the TLW can be changed by dragging | |
128 | virtual void DoSetSizeHints( int minW, int minH, | |
129 | int maxW, int maxH, | |
130 | int incW, int incH); | |
949ff63e | 131 | // move the window to the specified location and resize it |
6f02a879 VZ |
132 | virtual void DoMoveWindow(int x, int y, int width, int height); |
133 | ||
a6cdd521 | 134 | // take into account WM decorations here |
7d9f12f3 VS |
135 | virtual void DoSetSize(int x, int y, |
136 | int width, int height, | |
137 | int sizeFlags = wxSIZE_AUTO); | |
a6cdd521 | 138 | |
428f841b | 139 | virtual void DoSetClientSize(int width, int height); |
a6cdd521 VZ |
140 | virtual void DoGetClientSize(int *width, int *height) const; |
141 | ||
a6cdd521 VZ |
142 | // string shown in the title bar |
143 | wxString m_title; | |
cb8cc250 | 144 | |
11d8dfd2 PC |
145 | bool m_deferShow; |
146 | ||
cca410b3 | 147 | private: |
95dc31e0 | 148 | void Init(); |
fce611e4 PC |
149 | wxSize& GetCachedDecorSize(); |
150 | ||
8f71e657 PC |
151 | // size hint increments |
152 | int m_incWidth, m_incHeight; | |
153 | ||
7d9f12f3 VS |
154 | // is the frame currently iconized? |
155 | bool m_isIconized; | |
a6cdd521 VZ |
156 | |
157 | // is the frame currently grabbed explicitly by the application? | |
5152b0e5 | 158 | bool m_grabbed; |
11d8dfd2 PC |
159 | |
160 | bool m_updateDecorSize; | |
6089c4c8 | 161 | bool m_deferShowAllowed; |
7d9f12f3 VS |
162 | }; |
163 | ||
b5e31cc8 | 164 | #endif // _WX_GTK_TOPLEVEL_H_ |