]>
Commit | Line | Data |
---|---|---|
83df96d6 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: window.h | |
3 | // Purpose: wxWindow class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
83df96d6 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_WINDOW_H_ | |
13 | #define _WX_WINDOW_H_ | |
14 | ||
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
83df96d6 JS |
16 | #pragma interface "window.h" |
17 | #endif | |
18 | ||
19 | #include "wx/region.h" | |
20 | ||
21 | // ---------------------------------------------------------------------------- | |
22 | // wxWindow class for Motif - see also wxWindowBase | |
23 | // ---------------------------------------------------------------------------- | |
24 | ||
bc797f4c | 25 | class wxWindowX11 : public wxWindowBase |
83df96d6 JS |
26 | { |
27 | friend class WXDLLEXPORT wxDC; | |
28 | friend class WXDLLEXPORT wxWindowDC; | |
29 | ||
30 | public: | |
bc797f4c | 31 | wxWindowX11() { Init(); } |
83df96d6 | 32 | |
bc797f4c | 33 | wxWindowX11(wxWindow *parent, |
83df96d6 JS |
34 | wxWindowID id, |
35 | const wxPoint& pos = wxDefaultPosition, | |
36 | const wxSize& size = wxDefaultSize, | |
37 | long style = 0, | |
38 | const wxString& name = wxPanelNameStr) | |
39 | { | |
40 | Init(); | |
41 | Create(parent, id, pos, size, style, name); | |
42 | } | |
43 | ||
f79bd02d | 44 | virtual ~wxWindowX11(); |
83df96d6 JS |
45 | |
46 | bool Create(wxWindow *parent, | |
47 | wxWindowID id, | |
48 | const wxPoint& pos = wxDefaultPosition, | |
49 | const wxSize& size = wxDefaultSize, | |
50 | long style = 0, | |
51 | const wxString& name = wxPanelNameStr); | |
52 | ||
83df96d6 JS |
53 | virtual void Raise(); |
54 | virtual void Lower(); | |
55 | ||
56 | virtual bool Show( bool show = TRUE ); | |
57 | virtual bool Enable( bool enable = TRUE ); | |
58 | ||
59 | virtual void SetFocus(); | |
60 | ||
61 | virtual void WarpPointer(int x, int y); | |
62 | ||
63 | virtual void Refresh( bool eraseBackground = TRUE, | |
64 | const wxRect *rect = (const wxRect *) NULL ); | |
d02cb44e RR |
65 | virtual void Update(); |
66 | ||
83df96d6 JS |
67 | virtual bool SetBackgroundColour( const wxColour &colour ); |
68 | virtual bool SetForegroundColour( const wxColour &colour ); | |
69 | ||
70 | virtual bool SetCursor( const wxCursor &cursor ); | |
71 | virtual bool SetFont( const wxFont &font ); | |
72 | ||
73 | virtual int GetCharHeight() const; | |
74 | virtual int GetCharWidth() const; | |
75 | virtual void GetTextExtent(const wxString& string, | |
76 | int *x, int *y, | |
77 | int *descent = (int *) NULL, | |
78 | int *externalLeading = (int *) NULL, | |
79 | const wxFont *theFont = (const wxFont *) NULL) | |
80 | const; | |
81 | ||
83df96d6 JS |
82 | virtual void ScrollWindow( int dx, int dy, |
83 | const wxRect* rect = (wxRect *) NULL ); | |
84 | ||
571f6981 | 85 | virtual void DoSetSizeHints(int minW, int minH, |
83df96d6 JS |
86 | int maxW = -1, int maxH = -1, |
87 | int incW = -1, int incH = -1); | |
571f6981 | 88 | |
83df96d6 JS |
89 | #if wxUSE_DRAG_AND_DROP |
90 | virtual void SetDropTarget( wxDropTarget *dropTarget ); | |
91 | #endif // wxUSE_DRAG_AND_DROP | |
92 | ||
93 | // Accept files for dragging | |
94 | virtual void DragAcceptFiles(bool accept); | |
95 | ||
96 | // Get the unique identifier of a window | |
bc797f4c | 97 | virtual WXWindow GetHandle() const { return GetMainWindow(); } |
83df96d6 JS |
98 | |
99 | // implementation from now on | |
100 | // -------------------------- | |
101 | ||
102 | // accessors | |
103 | // --------- | |
104 | ||
ab6b6b15 | 105 | // Get main X11 window |
bc797f4c | 106 | virtual WXWindow GetMainWindow() const; |
83df96d6 | 107 | |
ab6b6b15 | 108 | // Get X11 window representing the client area |
f41bc3e3 JS |
109 | virtual WXWindow GetClientAreaWindow() const; |
110 | ||
83df96d6 | 111 | void SetLastClick(int button, long timestamp) |
ba696cfa | 112 | { m_lastButton = button; m_lastTS = timestamp; } |
83df96d6 JS |
113 | |
114 | int GetLastClickedButton() const { return m_lastButton; } | |
115 | long GetLastClickTime() const { return m_lastTS; } | |
116 | ||
117 | // Gives window a chance to do something in response to a size message, e.g. | |
118 | // arrange status bar, toolbar etc. | |
119 | virtual bool PreResize(); | |
120 | ||
887dd52f RR |
121 | // Generates paint events from m_updateRegion |
122 | void SendPaintEvents(); | |
123 | ||
ab6b6b15 RR |
124 | // Generates paint events from flag |
125 | void SendNcPaintEvents(); | |
126 | ||
887dd52f RR |
127 | // Generates erase events from m_clearRegion |
128 | void SendEraseEvents(); | |
83df96d6 | 129 | |
3cd0b8c5 RR |
130 | // Clip to paint region? |
131 | bool GetClipPaintRegion() { return m_clipPaintRegion; } | |
132 | ||
ba696cfa RR |
133 | // Return clear region |
134 | wxRegion &GetClearRegion() { return m_clearRegion; } | |
135 | ||
ab6b6b15 RR |
136 | void NeedUpdateNcAreaInIdle( bool update = TRUE ) { m_updateNcArea = update; } |
137 | ||
138 | // Inserting into main window instead of client | |
139 | // window. This is mostly for a wxWindow's own | |
140 | // scrollbars. | |
141 | void SetInsertIntoMain( bool insert = TRUE ) { m_insertIntoMain = insert; } | |
142 | bool GetInsertIntoMain() { return m_insertIntoMain; } | |
143 | ||
83df96d6 | 144 | // sets the fore/background colour for the given widget |
bc797f4c JS |
145 | static void DoChangeForegroundColour(WXWindow widget, wxColour& foregroundColour); |
146 | static void DoChangeBackgroundColour(WXWindow widget, wxColour& backgroundColour, bool changeArmColour = FALSE); | |
83df96d6 JS |
147 | |
148 | // For implementation purposes - sometimes decorations make the client area | |
149 | // smaller | |
150 | virtual wxPoint GetClientAreaOrigin() const; | |
151 | ||
0d1dff01 RR |
152 | // I don't want users to override what's done in idle so everything that |
153 | // has to be done in idle time in order for wxX11 to work is done in | |
154 | // OnInternalIdle | |
155 | virtual void OnInternalIdle(); | |
156 | ||
0d1dff01 | 157 | protected: |
83df96d6 JS |
158 | // Responds to colour changes: passes event on to children. |
159 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
160 | ||
83df96d6 JS |
161 | // For double-click detection |
162 | long m_lastTS; // last timestamp | |
163 | int m_lastButton; // last pressed button | |
164 | ||
83df96d6 | 165 | protected: |
ab6b6b15 RR |
166 | WXWindow m_mainWindow; |
167 | WXWindow m_clientWindow; | |
168 | bool m_insertIntoMain; | |
169 | ||
170 | bool m_winCaptured; | |
1934d291 RR |
171 | wxRegion m_clearRegion; |
172 | bool m_clipPaintRegion; | |
ab6b6b15 | 173 | bool m_updateNcArea; |
3a0b23eb | 174 | bool m_needsInputFocus; // Input focus set in OnIdle |
b513212d | 175 | |
83df96d6 JS |
176 | // implement the base class pure virtuals |
177 | virtual void DoClientToScreen( int *x, int *y ) const; | |
178 | virtual void DoScreenToClient( int *x, int *y ) const; | |
179 | virtual void DoGetPosition( int *x, int *y ) const; | |
180 | virtual void DoGetSize( int *width, int *height ) const; | |
181 | virtual void DoGetClientSize( int *width, int *height ) const; | |
182 | virtual void DoSetSize(int x, int y, | |
183 | int width, int height, | |
184 | int sizeFlags = wxSIZE_AUTO); | |
185 | virtual void DoSetClientSize(int width, int height); | |
186 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
83df96d6 JS |
187 | virtual void DoCaptureMouse(); |
188 | virtual void DoReleaseMouse(); | |
7edcafa4 | 189 | |
83df96d6 JS |
190 | #if wxUSE_TOOLTIPS |
191 | virtual void DoSetToolTip( wxToolTip *tip ); | |
192 | #endif // wxUSE_TOOLTIPS | |
193 | ||
194 | private: | |
195 | // common part of all ctors | |
196 | void Init(); | |
197 | ||
bc797f4c JS |
198 | DECLARE_DYNAMIC_CLASS(wxWindowX11) |
199 | DECLARE_NO_COPY_CLASS(wxWindowX11) | |
83df96d6 JS |
200 | DECLARE_EVENT_TABLE() |
201 | }; | |
202 | ||
203 | // ---------------------------------------------------------------------------- | |
204 | // A little class to switch off `size optimization' while an instance of the | |
205 | // object exists: this may be useful to temporarily disable the optimisation | |
206 | // which consists to do nothing when the new size is equal to the old size - | |
207 | // although quite useful usually to avoid flicker, sometimes it leads to | |
208 | // undesired effects. | |
209 | // | |
210 | // Usage: create an instance of this class on the stack to disable the size | |
211 | // optimisation, it will be reenabled as soon as the object goes out from scope. | |
212 | // ---------------------------------------------------------------------------- | |
213 | ||
214 | class WXDLLEXPORT wxNoOptimize | |
215 | { | |
216 | public: | |
217 | wxNoOptimize() { ms_count++; } | |
218 | ~wxNoOptimize() { ms_count--; } | |
219 | ||
220 | static bool CanOptimize() { return ms_count == 0; } | |
221 | ||
222 | protected: | |
223 | static int ms_count; | |
224 | }; | |
225 | ||
226 | #endif | |
227 | // _WX_WINDOW_H_ |