]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
1e6feb95 | 2 | // Name: wx/gtk/window.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
58614078 | 5 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 6 | // Licence: wxWindows licence |
c801d85f KB |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
ef5c70f9 VZ |
9 | #ifndef _WX_GTK_WINDOW_H_ |
10 | #define _WX_GTK_WINDOW_H_ | |
11 | ||
12 | #include "wx/dynarray.h" | |
c801d85f | 13 | |
9dc44eff PC |
14 | #ifdef __WXGTK3__ |
15 | typedef struct _cairo cairo_t; | |
80a77e3c | 16 | typedef struct _GtkStyleProvider GtkStyleProvider; |
9dc44eff PC |
17 | #define WXUNUSED_IN_GTK3(x) |
18 | #else | |
19 | #define WXUNUSED_IN_GTK3(x) x | |
20 | #endif | |
21 | ||
afa98731 VZ |
22 | typedef struct _GdkEventKey GdkEventKey; |
23 | typedef struct _GtkIMContext GtkIMContext; | |
24 | ||
ef5c70f9 VZ |
25 | WX_DEFINE_EXPORTED_ARRAY_PTR(GdkWindow *, wxArrayGdkWindows); |
26 | ||
1da8e6e4 VZ |
27 | extern "C" |
28 | { | |
29 | ||
30 | typedef void (*wxGTKCallback)(); | |
31 | ||
32 | } | |
33 | ||
c801d85f | 34 | //----------------------------------------------------------------------------- |
1e6feb95 | 35 | // wxWindowGTK |
c801d85f KB |
36 | //----------------------------------------------------------------------------- |
37 | ||
20123d49 | 38 | class WXDLLIMPEXP_CORE wxWindowGTK : public wxWindowBase |
c801d85f | 39 | { |
aed8df38 | 40 | public: |
bfc6fde4 VZ |
41 | // creating the window |
42 | // ------------------- | |
1e6feb95 VZ |
43 | wxWindowGTK(); |
44 | wxWindowGTK(wxWindow *parent, | |
45 | wxWindowID id, | |
46 | const wxPoint& pos = wxDefaultPosition, | |
47 | const wxSize& size = wxDefaultSize, | |
48 | long style = 0, | |
49 | const wxString& name = wxPanelNameStr); | |
f03fc89f VZ |
50 | bool Create(wxWindow *parent, |
51 | wxWindowID id, | |
52 | const wxPoint& pos = wxDefaultPosition, | |
53 | const wxSize& size = wxDefaultSize, | |
54 | long style = 0, | |
55 | const wxString& name = wxPanelNameStr); | |
1e6feb95 | 56 | virtual ~wxWindowGTK(); |
cd0183ca | 57 | |
f03fc89f VZ |
58 | // implement base class (pure) virtual methods |
59 | // ------------------------------------------- | |
a264ece2 | 60 | |
f03fc89f VZ |
61 | virtual void Raise(); |
62 | virtual void Lower(); | |
ff8bfdbb | 63 | |
5bc3865f | 64 | virtual bool Show( bool show = true ); |
ff8bfdbb | 65 | |
f03fc89f | 66 | virtual bool IsRetained() const; |
2f2aa628 | 67 | |
bfc6fde4 | 68 | virtual void SetFocus(); |
cca410b3 | 69 | |
00ff24c8 | 70 | // hint from wx to native GTK+ tab traversal code |
80332672 | 71 | virtual void SetCanFocus(bool canFocus); |
ff8bfdbb | 72 | |
fdb7dadb | 73 | virtual bool Reparent( wxWindowBase *newParent ); |
ff8bfdbb | 74 | |
f03fc89f | 75 | virtual void WarpPointer(int x, int y); |
b1170810 | 76 | |
5bc3865f | 77 | virtual void Refresh( bool eraseBackground = true, |
f03fc89f | 78 | const wxRect *rect = (const wxRect *) NULL ); |
beab25bd | 79 | virtual void Update(); |
596f1d11 | 80 | virtual void ClearBackground(); |
bfc6fde4 | 81 | |
f03fc89f VZ |
82 | virtual bool SetBackgroundColour( const wxColour &colour ); |
83 | virtual bool SetForegroundColour( const wxColour &colour ); | |
84 | virtual bool SetCursor( const wxCursor &cursor ); | |
85 | virtual bool SetFont( const wxFont &font ); | |
cd0183ca | 86 | |
c7382f91 | 87 | virtual bool SetBackgroundStyle(wxBackgroundStyle style) ; |
14421681 | 88 | virtual bool IsTransparentBackgroundSupported(wxString* reason = NULL) const; |
f26623c8 | 89 | |
bfc6fde4 VZ |
90 | virtual int GetCharHeight() const; |
91 | virtual int GetCharWidth() const; | |
aed8df38 | 92 | |
f03fc89f | 93 | virtual void SetScrollbar( int orient, int pos, int thumbVisible, |
5bc3865f WS |
94 | int range, bool refresh = true ); |
95 | virtual void SetScrollPos( int orient, int pos, bool refresh = true ); | |
f03fc89f VZ |
96 | virtual int GetScrollPos( int orient ) const; |
97 | virtual int GetScrollThumb( int orient ) const; | |
98 | virtual int GetScrollRange( int orient ) const; | |
99 | virtual void ScrollWindow( int dx, int dy, | |
d3b9f782 | 100 | const wxRect* rect = NULL ); |
0c131a5a VZ |
101 | virtual bool ScrollLines(int lines); |
102 | virtual bool ScrollPages(int pages); | |
8bbe427f | 103 | |
f03fc89f VZ |
104 | #if wxUSE_DRAG_AND_DROP |
105 | virtual void SetDropTarget( wxDropTarget *dropTarget ); | |
106 | #endif // wxUSE_DRAG_AND_DROP | |
f26623c8 | 107 | |
a589495e VS |
108 | virtual void AddChild( wxWindowBase *child ); |
109 | virtual void RemoveChild( wxWindowBase *child ); | |
8bbe427f | 110 | |
978af864 VZ |
111 | virtual void SetLayoutDirection(wxLayoutDirection dir); |
112 | virtual wxLayoutDirection GetLayoutDirection() const; | |
fe92a9d6 RR |
113 | virtual wxCoord AdjustForLayoutDirection(wxCoord x, |
114 | wxCoord width, | |
115 | wxCoord widthTotal) const; | |
978af864 | 116 | |
657b4fd4 RD |
117 | virtual bool DoIsExposed( int x, int y ) const; |
118 | virtual bool DoIsExposed( int x, int y, int w, int h ) const; | |
847dfdb4 | 119 | |
8e1a5bf9 VZ |
120 | // currently wxGTK2-only |
121 | void SetDoubleBuffered(bool on); | |
2e992e06 | 122 | virtual bool IsDoubleBuffered() const; |
8e1a5bf9 | 123 | |
c9248ddb RR |
124 | // SetLabel(), which does nothing in wxWindow |
125 | virtual void SetLabel(const wxString& label) { m_gtkLabel = label; } | |
126 | virtual wxString GetLabel() const { return m_gtkLabel; } | |
127 | ||
f03fc89f VZ |
128 | // implementation |
129 | // -------------- | |
c801d85f | 130 | |
d7c24517 VZ |
131 | virtual WXWidget GetHandle() const { return m_widget; } |
132 | ||
ef5c70f9 VZ |
133 | // many important things are done here, this function must be called |
134 | // regularly | |
bfc6fde4 | 135 | virtual void OnInternalIdle(); |
ff8bfdbb | 136 | |
beab25bd RR |
137 | // For compatibility across platforms (not in event table) |
138 | void OnIdle(wxIdleEvent& WXUNUSED(event)) {} | |
20e85460 | 139 | |
beab25bd | 140 | // Used by all window classes in the widget creation process. |
1e6feb95 | 141 | bool PreCreation( wxWindowGTK *parent, const wxPoint &pos, const wxSize &size ); |
bfc6fde4 | 142 | void PostCreation(); |
ff8bfdbb | 143 | |
48200154 | 144 | // Internal addition of child windows |
1e6feb95 | 145 | void DoAddChild(wxWindowGTK *child); |
f26623c8 | 146 | |
9dc44eff PC |
147 | // This method sends wxPaintEvents to the window. |
148 | // It is also responsible for background erase events. | |
149 | #ifdef __WXGTK3__ | |
150 | void GTKSendPaintEvents(cairo_t* cr); | |
151 | #else | |
152 | void GTKSendPaintEvents(const GdkRegion* region); | |
153 | #endif | |
beab25bd RR |
154 | |
155 | // The methods below are required because many native widgets | |
156 | // are composed of several subwidgets and setting a style for | |
157 | // the widget means setting it for all subwidgets as well. | |
90e572f1 | 158 | // also, it is not clear which native widget is the top |
beab25bd RR |
159 | // widget where (most of) the input goes. even tooltips have |
160 | // to be applied to all subwidgets. | |
bfc6fde4 | 161 | virtual GtkWidget* GetConnectWidget(); |
bfc6fde4 | 162 | void ConnectWidget( GtkWidget *widget ); |
8bbe427f | 163 | |
5478f221 VZ |
164 | // Called from several event handlers, if it returns true or false, the |
165 | // same value should be immediately returned by the handler without doing | |
166 | // anything else. If it returns -1, the handler should continue as usual | |
167 | int GTKCallbackCommonPrologue(struct _GdkEventAny *event) const; | |
ef5c70f9 | 168 | |
02bad830 VZ |
169 | // Simplified form of GTKCallbackCommonPrologue() which can be used from |
170 | // GTK callbacks without return value to check if the event should be | |
171 | // ignored: if this returns true, the event shouldn't be handled | |
172 | bool GTKShouldIgnoreEvent() const; | |
173 | ||
174 | ||
97687291 VZ |
175 | // override this if some events should never be consumed by wxWidgets but |
176 | // but have to be left for the native control | |
177 | // | |
004867db | 178 | // base version just calls HandleWindowEvent() |
97687291 VZ |
179 | virtual bool GTKProcessEvent(wxEvent& event) const; |
180 | ||
978af864 VZ |
181 | // Map GTK widget direction of the given widget to/from wxLayoutDirection |
182 | static wxLayoutDirection GTKGetLayout(GtkWidget *widget); | |
183 | static void GTKSetLayout(GtkWidget *widget, wxLayoutDirection dir); | |
184 | ||
004867db | 185 | // This is called when capture is taken from the window. It will |
7738af59 VZ |
186 | // fire off capture lost events. |
187 | void GTKReleaseMouseAndNotify(); | |
188 | ||
08f53168 PC |
189 | GdkWindow* GTKGetDrawingWindow() const; |
190 | ||
bd2e08d0 VS |
191 | bool GTKHandleFocusIn(); |
192 | bool GTKHandleFocusOut(); | |
193 | void GTKHandleFocusOutNoDeferring(); | |
194 | static void GTKHandleDeferredFocusOut(); | |
195 | ||
612515af VZ |
196 | // Called when m_widget becomes realized. Derived classes must call the |
197 | // base class method if they override it. | |
198 | virtual void GTKHandleRealized(); | |
603e7f6d | 199 | void GTKHandleUnrealize(); |
612515af | 200 | |
cb3db090 | 201 | protected: |
bd2e08d0 VS |
202 | // for controls composed of multiple GTK widgets, return true to eliminate |
203 | // spurious focus events if the focus changes between GTK+ children within | |
204 | // the same wxWindow | |
205 | virtual bool GTKNeedsToFilterSameWindowFocus() const { return false; } | |
206 | ||
2e1f5012 | 207 | // Override GTKWidgetNeedsMnemonic and return true if your |
28e88942 | 208 | // needs to set its mnemonic widget, such as for a |
2e1f5012 VZ |
209 | // GtkLabel for wxStaticText, then do the actual |
210 | // setting of the widget inside GTKWidgetDoSetMnemonic | |
211 | virtual bool GTKWidgetNeedsMnemonic() const; | |
212 | virtual void GTKWidgetDoSetMnemonic(GtkWidget* w); | |
213 | ||
ef5c70f9 VZ |
214 | // Get the GdkWindows making part of this window: usually there will be |
215 | // only one of them in which case it should be returned directly by this | |
216 | // function. If there is more than one GdkWindow (can be the case for | |
217 | // composite widgets), return NULL and fill in the provided array | |
218 | // | |
219 | // This is not pure virtual for backwards compatibility but almost | |
220 | // certainly must be overridden in any wxControl-derived class! | |
221 | virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; | |
222 | ||
223 | // Check if the given window makes part of this widget | |
224 | bool GTKIsOwnWindow(GdkWindow *window) const; | |
225 | ||
cb3db090 | 226 | public: |
2b5f62a0 | 227 | // Returns the default context which usually is anti-aliased |
496e7ec6 | 228 | PangoContext *GTKGetPangoDefaultContext(); |
2b5f62a0 | 229 | |
ff8bfdbb | 230 | #if wxUSE_TOOLTIPS |
6e5f6c7c | 231 | // applies tooltip to the widget (tip must be UTF-8 encoded) |
558a94bd | 232 | virtual void GTKApplyToolTip(const char* tip); |
ff8bfdbb | 233 | #endif // wxUSE_TOOLTIPS |
301cd871 | 234 | |
f46ad98f | 235 | // Called when a window should delay showing itself |
71ead4bf RR |
236 | // until idle time used in Reparent(). |
237 | void GTKShowOnIdle() { m_showOnIdle = true; } | |
28e88942 | 238 | |
7317857d | 239 | // This is called from the various OnInternalIdle methods |
71ead4bf | 240 | bool GTKShowFromOnIdle(); |
3ae4c570 | 241 | |
d1f2ac45 | 242 | // is this window transparent for the mouse events (as wxStaticBox is)? |
71ead4bf | 243 | virtual bool GTKIsTransparentForMouse() const { return false; } |
d1f2ac45 | 244 | |
add7cadd | 245 | // Common scroll event handling code for wxWindow and wxScrollBar |
71ead4bf | 246 | wxEventType GTKGetScrollEventType(GtkRange* range); |
add7cadd | 247 | |
f03fc89f VZ |
248 | // position and size of the window |
249 | int m_x, m_y; | |
250 | int m_width, m_height; | |
b0d053c1 PC |
251 | int m_clientWidth, m_clientHeight; |
252 | // Whether the client size variables above are known to be correct | |
253 | // (because they have been validated by a size-allocate) and should | |
254 | // be used to report client size | |
255 | bool m_useCachedClientSize; | |
bcf1fa6b | 256 | |
76fcf0f2 RR |
257 | // see the docs in src/gtk/window.cpp |
258 | GtkWidget *m_widget; // mostly the widget seen by the rest of GTK | |
77ffb593 | 259 | GtkWidget *m_wxwindow; // mostly the client area as per wxWidgets |
ce00f59b | 260 | |
c9248ddb RR |
261 | // label for use with GetLabelSetLabel |
262 | wxString m_gtkLabel; | |
ce00f59b | 263 | |
da1bd25f RR |
264 | // return true if the window is of a standard (i.e. not wxWidgets') class |
265 | bool IsOfStandardClass() const { return m_wxwindow == NULL; } | |
cca410b3 | 266 | |
76fcf0f2 RR |
267 | // this widget will be queried for GTK's focus events |
268 | GtkWidget *m_focusWidget; | |
004867db | 269 | |
36a845fe RR |
270 | void GTKDisableFocusOutEvent(); |
271 | void GTKEnableFocusOutEvent(); | |
f03fc89f | 272 | |
afa98731 VZ |
273 | |
274 | // Input method support | |
275 | ||
276 | // The IM context used for generic, i.e. non-native, windows. | |
277 | // | |
278 | // It might be a good idea to avoid allocating it unless key events from | |
279 | // this window are really needed but currently we do it unconditionally. | |
280 | // | |
281 | // For native widgets (i.e. those for which IsOfStandardClass() returns | |
282 | // true) it is NULL. | |
283 | GtkIMContext* m_imContext; | |
284 | ||
285 | // Pointer to the event being currently processed by the IME or NULL if not | |
286 | // inside key handling. | |
287 | GdkEventKey* m_imKeyEvent; | |
288 | ||
289 | // This method generalizes gtk_im_context_filter_keypress(): for the | |
290 | // generic windows it does just that but it's overridden by the classes | |
291 | // wrapping native widgets that use IM themselves and so provide specific | |
292 | // methods for accessing it such gtk_entry_im_context_filter_keypress(). | |
293 | virtual int GTKIMFilterKeypress(GdkEventKey* event) const; | |
294 | ||
b2c35774 VZ |
295 | // This method must be called from the derived classes "insert-text" signal |
296 | // handlers to check if the text is not being inserted by the IM and, if | |
297 | // this is the case, generate appropriate wxEVT_CHAR events for it. | |
298 | // | |
299 | // Returns true if we did generate and process events corresponding to this | |
300 | // text or false if we didn't handle it. | |
301 | bool GTKOnInsertText(const char* text); | |
302 | ||
303 | // This is just a helper of GTKOnInsertText() which is also used by GTK+ | |
304 | // "commit" signal handler. | |
305 | bool GTKDoInsertTextFromIM(const char* text); | |
306 | ||
3bcc8d15 | 307 | |
22c9b211 VZ |
308 | // indices for the arrays below |
309 | enum ScrollDir { ScrollDir_Horz, ScrollDir_Vert, ScrollDir_Max }; | |
310 | ||
add7cadd | 311 | // horizontal/vertical scroll bar |
22c9b211 VZ |
312 | GtkRange* m_scrollBar[ScrollDir_Max]; |
313 | ||
add7cadd | 314 | // horizontal/vertical scroll position |
22c9b211 VZ |
315 | double m_scrollPos[ScrollDir_Max]; |
316 | ||
22c9b211 VZ |
317 | // return the scroll direction index corresponding to the given orientation |
318 | // (which is wxVERTICAL or wxHORIZONTAL) | |
319 | static ScrollDir ScrollDirFromOrient(int orient) | |
320 | { | |
321 | return orient == wxVERTICAL ? ScrollDir_Vert : ScrollDir_Horz; | |
322 | } | |
323 | ||
324 | // return the orientation for the given scrolling direction | |
325 | static int OrientFromScrollDir(ScrollDir dir) | |
326 | { | |
327 | return dir == ScrollDir_Horz ? wxHORIZONTAL : wxVERTICAL; | |
328 | } | |
329 | ||
330 | // find the direction of the given scrollbar (must be one of ours) | |
331 | ScrollDir ScrollDirFromRange(GtkRange *range) const; | |
332 | ||
c2246a38 RR |
333 | // set the current cursor for all GdkWindows making part of this widget |
334 | // (see GTKGetWindow) | |
335 | void GTKUpdateCursor(bool update_self = true, bool recurse = true); | |
336 | ||
f03fc89f | 337 | // extra (wxGTK-specific) flags |
76fcf0f2 RR |
338 | bool m_noExpose:1; // wxGLCanvas has its own redrawing |
339 | bool m_nativeSizeEvent:1; // wxGLCanvas sends wxSizeEvent upon "alloc_size" | |
6cad4f1b | 340 | bool m_isScrolling:1; // dragging scrollbar thumb? |
5bc3865f | 341 | bool m_clipPaintRegion:1; // true after ScrollWindow() |
bcb614b3 | 342 | wxRegion m_nativeUpdateRegion; // not transformed for RTL |
a589495e VS |
343 | bool m_dirtyTabOrder:1; // tab order changed, GTK focus |
344 | // chain needs update | |
add7cadd | 345 | bool m_mouseButtonDown:1; |
28e88942 | 346 | |
f46ad98f | 347 | bool m_showOnIdle:1; // postpone showing the window until idle |
7af6f327 | 348 | |
c821db16 | 349 | protected: |
f03fc89f | 350 | // implement the base class pure virtuals |
6de70470 VZ |
351 | virtual void DoGetTextExtent(const wxString& string, |
352 | int *x, int *y, | |
353 | int *descent = NULL, | |
354 | int *externalLeading = NULL, | |
355 | const wxFont *font = NULL) const; | |
dabc0cd5 VZ |
356 | virtual void DoClientToScreen( int *x, int *y ) const; |
357 | virtual void DoScreenToClient( int *x, int *y ) const; | |
f03fc89f VZ |
358 | virtual void DoGetPosition( int *x, int *y ) const; |
359 | virtual void DoGetSize( int *width, int *height ) const; | |
360 | virtual void DoGetClientSize( int *width, int *height ) const; | |
bfc6fde4 VZ |
361 | virtual void DoSetSize(int x, int y, |
362 | int width, int height, | |
363 | int sizeFlags = wxSIZE_AUTO); | |
bfc6fde4 | 364 | virtual void DoSetClientSize(int width, int height); |
b3554952 | 365 | virtual wxSize DoGetBorderSize() const; |
9d9b7755 | 366 | virtual void DoMoveWindow(int x, int y, int width, int height); |
c821db16 | 367 | virtual void DoEnable(bool enable); |
aed8df38 | 368 | |
6f02a879 VZ |
369 | #if wxUSE_MENUS_NATIVE |
370 | virtual bool DoPopupMenu( wxMenu *menu, int x, int y ); | |
371 | #endif // wxUSE_MENUS_NATIVE | |
372 | ||
94633ad9 VZ |
373 | virtual void DoCaptureMouse(); |
374 | virtual void DoReleaseMouse(); | |
f26623c8 | 375 | |
5f346ddc VS |
376 | virtual void DoFreeze(); |
377 | virtual void DoThaw(); | |
378 | ||
f089940f PC |
379 | void GTKFreezeWidget(GtkWidget *w); |
380 | void GTKThawWidget(GtkWidget *w); | |
8ab75332 | 381 | void GTKDisconnect(void* instance); |
5f346ddc | 382 | |
f03fc89f VZ |
383 | #if wxUSE_TOOLTIPS |
384 | virtual void DoSetToolTip( wxToolTip *tip ); | |
385 | #endif // wxUSE_TOOLTIPS | |
386 | ||
992ea406 VZ |
387 | // Create a GtkScrolledWindow containing the given widget (usually |
388 | // m_wxwindow but not necessarily) and assigns it to m_widget. Also shows | |
389 | // the widget passed to it. | |
390 | // | |
391 | // Can be only called if we have either wxHSCROLL or wxVSCROLL in our | |
392 | // style. | |
393 | void GTKCreateScrolledWindowWith(GtkWidget* view); | |
394 | ||
915bd4e4 | 395 | virtual void DoMoveInTabOrder(wxWindow *win, WindowOrder move); |
5644933f VZ |
396 | virtual bool DoNavigateIn(int flags); |
397 | ||
a589495e VS |
398 | |
399 | // Copies m_children tab order to GTK focus chain: | |
400 | void RealizeTabOrder(); | |
f26623c8 | 401 | |
9dc44eff | 402 | #ifndef __WXGTK3__ |
f40fdaa3 VS |
403 | // Called by ApplyWidgetStyle (which is called by SetFont() and |
404 | // SetXXXColour etc to apply style changed to native widgets) to create | |
80a77e3c PC |
405 | // modified GTK style with non-standard attributes. |
406 | GtkRcStyle* GTKCreateWidgetStyle(); | |
9dc44eff | 407 | #endif |
f40fdaa3 | 408 | |
9dc44eff | 409 | void GTKApplyWidgetStyle(bool forceStyle = false); |
f26623c8 | 410 | |
5bc3865f | 411 | // helper function to ease native widgets wrapping, called by |
7074ce35 VS |
412 | // ApplyWidgetStyle -- override this, not ApplyWidgetStyle |
413 | virtual void DoApplyWidgetStyle(GtkRcStyle *style); | |
f03fc89f | 414 | |
9dc44eff PC |
415 | void GTKApplyStyle(GtkWidget* widget, GtkRcStyle* style); |
416 | ||
6493aaca | 417 | // sets the border of a given GtkScrolledWindow from a wx style |
496e7ec6 | 418 | static void GTKScrolledWindowSetBorder(GtkWidget* w, int style); |
6493aaca | 419 | |
a0c8bb73 VZ |
420 | // Connect the given function to the specified signal on m_widget. |
421 | // | |
422 | // This is just a wrapper for g_signal_connect() and returns the handler id | |
423 | // just as it does. | |
1da8e6e4 | 424 | unsigned long GTKConnectWidget(const char *signal, wxGTKCallback callback); |
a0c8bb73 | 425 | |
82008f15 PC |
426 | void ConstrainSize(); |
427 | ||
68dda785 | 428 | private: |
ec373f2a PC |
429 | void Init(); |
430 | ||
bf487502 PC |
431 | // return true if this window must have a non-NULL parent, false if it can |
432 | // be created without parent (normally only top level windows but in wxGTK | |
433 | // there is also the exception of wxMenuBar) | |
434 | virtual bool GTKNeedsParent() const { return !IsTopLevel(); } | |
435 | ||
22c9b211 VZ |
436 | enum ScrollUnit { ScrollUnit_Line, ScrollUnit_Page, ScrollUnit_Max }; |
437 | ||
438 | // common part of ScrollLines() and ScrollPages() and could be used, in the | |
439 | // future, for horizontal scrolling as well | |
440 | // | |
441 | // return true if we scrolled, false otherwise (on error or simply if we | |
442 | // are already at the end) | |
443 | bool DoScrollByUnits(ScrollDir dir, ScrollUnit unit, int units); | |
48200154 | 444 | virtual void AddChildGTK(wxWindowGTK* child); |
22c9b211 | 445 | |
9dc44eff PC |
446 | #ifdef __WXGTK3__ |
447 | // paint context is stashed here so wxPaintDC can use it | |
448 | cairo_t* m_paintContext; | |
80a77e3c PC |
449 | // style provider for "background-image" |
450 | GtkStyleProvider* m_styleProvider; | |
9dc44eff PC |
451 | |
452 | public: | |
453 | cairo_t* GTKPaintContext() const | |
454 | { | |
455 | return m_paintContext; | |
456 | } | |
457 | #endif | |
458 | ||
1e6feb95 | 459 | DECLARE_DYNAMIC_CLASS(wxWindowGTK) |
c0c133e1 | 460 | wxDECLARE_NO_COPY_CLASS(wxWindowGTK); |
c801d85f KB |
461 | }; |
462 | ||
ef5c70f9 | 463 | #endif // _WX_GTK_WINDOW_H_ |