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