1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/window.h
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef __GTKWINDOWH__
11 #define __GTKWINDOWH__
13 typedef struct _GtkTooltips GtkTooltips
;
15 typedef struct _GdkIC GdkIC
;
16 typedef struct _GdkICAttr GdkICAttr
;
19 //-----------------------------------------------------------------------------
20 // callback definition for inserting a window (internal)
21 //-----------------------------------------------------------------------------
23 class WXDLLIMPEXP_FWD_CORE wxWindowGTK
;
24 typedef void (*wxInsertChildFunction
)( wxWindowGTK
*, wxWindowGTK
* );
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 class WXDLLIMPEXP_CORE wxWindowGTK
: public wxWindowBase
33 // creating the window
34 // -------------------
36 wxWindowGTK(wxWindow
*parent
,
38 const wxPoint
& pos
= wxDefaultPosition
,
39 const wxSize
& size
= wxDefaultSize
,
41 const wxString
& name
= wxPanelNameStr
);
42 bool Create(wxWindow
*parent
,
44 const wxPoint
& pos
= wxDefaultPosition
,
45 const wxSize
& size
= wxDefaultSize
,
47 const wxString
& name
= wxPanelNameStr
);
48 virtual ~wxWindowGTK();
50 // implement base class (pure) virtual methods
51 // -------------------------------------------
53 virtual void SetLabel(const wxString
& WXUNUSED(label
)) { }
54 virtual wxString
GetLabel() const { return wxEmptyString
; }
56 virtual bool Destroy();
61 virtual bool Show( bool show
= true );
62 virtual void DoEnable( bool enable
);
64 virtual void SetWindowStyleFlag( long style
);
66 virtual bool IsRetained() const;
68 virtual void SetFocus();
69 virtual bool AcceptsFocus() const;
71 virtual bool Reparent( wxWindowBase
*newParent
);
73 virtual void WarpPointer(int x
, int y
);
75 virtual void Refresh( bool eraseBackground
= true,
76 const wxRect
*rect
= (const wxRect
*) NULL
);
77 virtual void Update();
78 virtual void ClearBackground();
80 virtual bool SetBackgroundColour( const wxColour
&colour
);
81 virtual bool SetForegroundColour( const wxColour
&colour
);
82 virtual bool SetCursor( const wxCursor
&cursor
);
83 virtual bool SetFont( const wxFont
&font
);
85 virtual bool SetBackgroundStyle(wxBackgroundStyle style
) ;
87 virtual int GetCharHeight() const;
88 virtual int GetCharWidth() const;
90 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
91 int range
, bool refresh
= true );
92 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= true );
93 virtual int GetScrollPos( int orient
) const;
94 virtual int GetScrollThumb( int orient
) const;
95 virtual int GetScrollRange( int orient
) const;
96 virtual void ScrollWindow( int dx
, int dy
,
97 const wxRect
* rect
= NULL
);
99 #if wxUSE_DRAG_AND_DROP
100 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
101 #endif // wxUSE_DRAG_AND_DROP
103 virtual bool IsDoubleBuffered() const { return false; }
105 GdkWindow
* GTKGetDrawingWindow() const;
110 virtual WXWidget
GetHandle() const { return m_widget
; }
112 // I don't want users to override what's done in idle so everything that
113 // has to be done in idle time in order for wxGTK to work is done in
115 virtual void OnInternalIdle();
117 // Internal representation of Update()
120 // For compatibility across platforms (not in event table)
121 void OnIdle(wxIdleEvent
& WXUNUSED(event
)) {}
123 // Used by all window classes in the widget creation process.
124 bool PreCreation( wxWindowGTK
*parent
, const wxPoint
&pos
, const wxSize
&size
);
127 // Internal addition of child windows. differs from class
128 // to class not by using virtual functions but by using
129 // the m_insertCallback.
130 void DoAddChild(wxWindowGTK
*child
);
132 // This methods sends wxPaintEvents to the window. It reads the
133 // update region, breaks it up into rects and sends an event
134 // for each rect. It is also responsible for background erase
135 // events and NC paint events. It is called from "draw" and
136 // "expose" handlers as well as from ::Update()
137 void GtkSendPaintEvents();
139 // The methods below are required because many native widgets
140 // are composed of several subwidgets and setting a style for
141 // the widget means setting it for all subwidgets as well.
142 // also, it is not clear which native widget is the top
143 // widget where (most of) the input goes. even tooltips have
144 // to be applied to all subwidgets.
145 virtual GtkWidget
* GetConnectWidget();
146 virtual bool IsOwnGtkWindow( GdkWindow
*window
);
147 void ConnectWidget( GtkWidget
*widget
);
150 virtual void ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
);
151 #endif // wxUSE_TOOLTIPS
153 // Call after modifing the value of m_hAdjust or m_vAdjust to bring the
154 // scrolbar in sync (this does not generate any wx events)
155 void GtkUpdateScrollbar(int orient
);
157 // Called from GTK signal handlers. it indicates that
158 // the layout functions have to be called later on
159 // (i.e. in idle time, implemented in OnInternalIdle() ).
160 void GtkUpdateSize() { m_sizeSet
= false; }
162 // fix up the mouse event coords, used by wxListBox only so far
163 virtual void FixUpMouseEvent(GtkWidget
* WXUNUSED(widget
),
164 wxCoord
& WXUNUSED(x
),
165 wxCoord
& WXUNUSED(y
)) { }
167 // is this window transparent for the mouse events (as wxStaticBox is)?
168 virtual bool IsTransparentForMouse() const { return false; }
170 // is this a radiobutton (used by radiobutton code itself only)?
171 virtual bool IsRadioButton() const { return false; }
173 // position and size of the window
175 int m_width
, m_height
;
176 int m_oldClientWidth
,m_oldClientHeight
;
178 // see the docs in src/gtk/window.cpp
179 GtkWidget
*m_widget
; // mostly the widget seen by the rest of GTK
180 GtkWidget
*m_wxwindow
; // mostly the client area as per wxWidgets
182 // this widget will be queried for GTK's focus events
183 GtkWidget
*m_focusWidget
;
186 // XIM support for wxWidgets
191 // The area to be cleared (and not just refreshed)
192 // We cannot make this distinction under GTK 2.0.
193 wxRegion m_clearRegion
;
196 GtkAdjustment
*m_hAdjust
,*m_vAdjust
;
197 float m_oldHorizontalPos
;
198 float m_oldVerticalPos
;
200 // extra (wxGTK-specific) flags
201 bool m_needParent
:1; // ! wxFrame, wxDialog, wxNotebookPage ?
202 bool m_noExpose
:1; // wxGLCanvas has its own redrawing
203 bool m_nativeSizeEvent
:1; // wxGLCanvas sends wxSizeEvent upon "alloc_size"
204 bool m_hasScrolling
:1;
208 bool m_acceptsFocus
:1; // true if not static
209 bool m_hasFocus
:1; // true if == FindFocus()
210 bool m_isScrolling
:1; // dragging scrollbar thumb?
211 bool m_clipPaintRegion
:1; // true after ScrollWindow()
212 bool m_needsStyleChange
:1; // May not be able to change
213 // background style until OnIdle
215 // C++ has no virtual methods in the constrcutor of any class but we need
216 // different methods of inserting a child window into a wxFrame,
217 // wxMDIFrame, wxNotebook etc. this is the callback that will get used.
218 wxInsertChildFunction m_insertCallback
;
220 // implement the base class pure virtuals
221 virtual void DoGetTextExtent(const wxString
& string
,
224 int *externalLeading
= NULL
,
225 const wxFont
*theFont
= NULL
) const;
227 #if wxUSE_MENUS_NATIVE
228 virtual bool DoPopupMenu( wxMenu
*menu
, int x
, int y
);
229 #endif // wxUSE_MENUS_NATIVE
231 virtual void DoClientToScreen( int *x
, int *y
) const;
232 virtual void DoScreenToClient( int *x
, int *y
) const;
233 virtual void DoGetPosition( int *x
, int *y
) const;
234 virtual void DoGetSize( int *width
, int *height
) const;
235 virtual void DoGetClientSize( int *width
, int *height
) const;
236 virtual void DoSetSize(int x
, int y
,
237 int width
, int height
,
238 int sizeFlags
= wxSIZE_AUTO
);
239 virtual void DoSetClientSize(int width
, int height
);
240 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
242 virtual void DoCaptureMouse();
243 virtual void DoReleaseMouse();
246 virtual void DoSetToolTip( wxToolTip
*tip
);
247 #endif // wxUSE_TOOLTIPS
250 // common part of all ctors (not virtual because called from ctor)
253 // Called by ApplyWidgetStyle (which is called by SetFont() and
254 // SetXXXColour etc to apply style changed to native widgets) to create
255 // modified GTK style with non-standard attributes. If forceStyle=true,
256 // creates empty GtkRcStyle if there are no modifications, otherwise
257 // returns NULL in such case.
258 GtkRcStyle
*CreateWidgetStyle(bool forceStyle
= false);
260 // Overridden in many GTK widgets who have to handle subwidgets
261 virtual void ApplyWidgetStyle(bool forceStyle
= false);
263 // helper function to ease native widgets wrapping, called by
264 // ApplyWidgetStyle -- override this, not ApplyWidgetStyle
265 virtual void DoApplyWidgetStyle(GtkRcStyle
*style
);
268 DECLARE_DYNAMIC_CLASS(wxWindowGTK
)
269 wxDECLARE_NO_COPY_CLASS(wxWindowGTK
);
272 extern WXDLLIMPEXP_CORE wxWindow
*wxFindFocusedChild(wxWindowGTK
*win
);
274 #endif // __GTKWINDOWH__