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 // helper structure that holds class that holds GtkIMContext object and
14 // some additional data needed for key events processing
17 //-----------------------------------------------------------------------------
18 // callback definition for inserting a window (internal)
19 //-----------------------------------------------------------------------------
21 class WXDLLIMPEXP_FWD_CORE wxWindowGTK
;
22 typedef void (*wxInsertChildFunction
)( wxWindowGTK
*, wxWindowGTK
* );
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
28 class WXDLLIMPEXP_CORE wxWindowGTK
: public wxWindowBase
31 // creating the window
32 // -------------------
34 wxWindowGTK(wxWindow
*parent
,
36 const wxPoint
& pos
= wxDefaultPosition
,
37 const wxSize
& size
= wxDefaultSize
,
39 const wxString
& name
= wxPanelNameStr
);
40 bool Create(wxWindow
*parent
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
45 const wxString
& name
= wxPanelNameStr
);
46 virtual ~wxWindowGTK();
48 // implement base class (pure) virtual methods
49 // -------------------------------------------
51 virtual void SetLabel(const wxString
& WXUNUSED(label
)) { }
52 virtual wxString
GetLabel() const { return wxEmptyString
; }
54 virtual bool Destroy();
59 virtual bool Show( bool show
= true );
60 virtual void DoEnable( bool enable
);
62 virtual void SetWindowStyleFlag( long style
);
64 virtual bool IsRetained() const;
66 virtual void SetFocus();
67 virtual bool AcceptsFocus() const;
69 virtual bool Reparent( wxWindowBase
*newParent
);
71 virtual void WarpPointer(int x
, int y
);
73 virtual void Refresh( bool eraseBackground
= true,
74 const wxRect
*rect
= (const wxRect
*) NULL
);
75 virtual void Update();
76 virtual void ClearBackground();
78 virtual bool SetBackgroundColour( const wxColour
&colour
);
79 virtual bool SetForegroundColour( const wxColour
&colour
);
80 virtual bool SetCursor( const wxCursor
&cursor
);
81 virtual bool SetFont( const wxFont
&font
);
83 virtual bool SetBackgroundStyle(wxBackgroundStyle style
) ;
85 virtual int GetCharHeight() const;
86 virtual int GetCharWidth() const;
88 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
89 int range
, bool refresh
= true );
90 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= true );
91 virtual int GetScrollPos( int orient
) const;
92 virtual int GetScrollThumb( int orient
) const;
93 virtual int GetScrollRange( int orient
) const;
94 virtual void ScrollWindow( int dx
, int dy
,
95 const wxRect
* rect
= NULL
);
97 #if wxUSE_DRAG_AND_DROP
98 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
99 #endif // wxUSE_DRAG_AND_DROP
101 virtual bool IsDoubleBuffered() const { return false; }
103 GdkWindow
* GTKGetDrawingWindow() const;
108 virtual WXWidget
GetHandle() const { return m_widget
; }
110 // I don't want users to override what's done in idle so everything that
111 // has to be done in idle time in order for wxGTK to work is done in
113 virtual void OnInternalIdle();
115 // Internal represention of Update()
118 // For compatibility across platforms (not in event table)
119 void OnIdle(wxIdleEvent
& WXUNUSED(event
)) {}
121 // Used by all window classes in the widget creation process.
122 bool PreCreation( wxWindowGTK
*parent
, const wxPoint
&pos
, const wxSize
&size
);
125 // Internal addition of child windows. differs from class
126 // to class not by using virtual functions but by using
127 // the m_insertCallback.
128 void DoAddChild(wxWindowGTK
*child
);
130 // This methods sends wxPaintEvents to the window. It reads the
131 // update region, breaks it up into rects and sends an event
132 // for each rect. It is also responsible for background erase
133 // events and NC paint events. It is called from "draw" and
134 // "expose" handlers as well as from ::Update()
135 void GtkSendPaintEvents();
137 // The methods below are required because many native widgets
138 // are composed of several subwidgets and setting a style for
139 // the widget means setting it for all subwidgets as well.
140 // also, it is not clear which native widget is the top
141 // widget where (most of) the input goes. even tooltips have
142 // to be applied to all subwidgets.
143 virtual GtkWidget
* GetConnectWidget();
144 virtual bool IsOwnGtkWindow( GdkWindow
*window
);
145 void ConnectWidget( GtkWidget
*widget
);
148 virtual void ApplyToolTip( GtkTooltips
*tips
, const wxChar
*tip
);
149 #endif // wxUSE_TOOLTIPS
151 // Call after modifing the value of m_hAdjust or m_vAdjust to bring the
152 // scrolbar in sync (this does not generate any wx events)
153 void GtkUpdateScrollbar(int orient
);
155 // Called from GTK signal handlers. it indicates that
156 // the layouting functions have to be called later on
157 // (i.e. in idle time, implemented in OnInternalIdle() ).
158 void GtkUpdateSize() { m_sizeSet
= false; }
160 // fix up the mouse event coords, used by wxListBox only so far
161 virtual void FixUpMouseEvent(GtkWidget
* WXUNUSED(widget
),
162 wxCoord
& WXUNUSED(x
),
163 wxCoord
& WXUNUSED(y
)) { }
165 // is this window transparent for the mouse events (as wxStaticBox is)?
166 virtual bool IsTransparentForMouse() const { return false; }
168 // is this a radiobutton (used by radiobutton code itself only)?
169 virtual bool IsRadioButton() const { return false; }
171 // position and size of the window
173 int m_width
, m_height
;
174 int m_oldClientWidth
,m_oldClientHeight
;
176 // see the docs in src/gtk/window.cpp
177 GtkWidget
*m_widget
; // mostly the widget seen by the rest of GTK
178 GtkWidget
*m_wxwindow
; // mostly the client area as per wxWidgets
180 // this widget will be queried for GTK's focus events
181 GtkWidget
*m_focusWidget
;
184 // XIM support for wxWidgets
189 // The area to be cleared (and not just refreshed)
190 // We cannot make this distinction under GTK 2.0.
191 wxRegion m_clearRegion
;
194 GtkAdjustment
*m_hAdjust
,*m_vAdjust
;
195 float m_oldHorizontalPos
;
196 float m_oldVerticalPos
;
198 // extra (wxGTK-specific) flags
199 bool m_needParent
:1; // ! wxFrame, wxDialog, wxNotebookPage ?
200 bool m_noExpose
:1; // wxGLCanvas has its own redrawing
201 bool m_nativeSizeEvent
:1; // wxGLCanvas sends wxSizeEvent upon "alloc_size"
202 bool m_hasScrolling
:1;
206 bool m_acceptsFocus
:1; // true if not static
207 bool m_hasFocus
:1; // true if == FindFocus()
208 bool m_isScrolling
:1; // dragging scrollbar thumb?
209 bool m_clipPaintRegion
:1; // true after ScrollWindow()
210 bool m_needsStyleChange
:1; // May not be able to change
211 // background style until OnIdle
213 // C++ has no virtual methods in the constrcutor of any class but we need
214 // different methods of inserting a child window into a wxFrame,
215 // wxMDIFrame, wxNotebook etc. this is the callback that will get used.
216 wxInsertChildFunction m_insertCallback
;
218 // implement the base class pure virtuals
219 virtual void DoGetTextExtent(const wxString
& string
,
222 int *externalLeading
= NULL
,
223 const wxFont
*theFont
= NULL
) const;
225 #if wxUSE_MENUS_NATIVE
226 virtual bool DoPopupMenu( wxMenu
*menu
, int x
, int y
);
227 #endif // wxUSE_MENUS_NATIVE
229 virtual void DoClientToScreen( int *x
, int *y
) const;
230 virtual void DoScreenToClient( int *x
, int *y
) const;
231 virtual void DoGetPosition( int *x
, int *y
) const;
232 virtual void DoGetSize( int *width
, int *height
) const;
233 virtual void DoGetClientSize( int *width
, int *height
) const;
234 virtual void DoSetSize(int x
, int y
,
235 int width
, int height
,
236 int sizeFlags
= wxSIZE_AUTO
);
237 virtual void DoSetClientSize(int width
, int height
);
238 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
240 virtual void DoCaptureMouse();
241 virtual void DoReleaseMouse();
244 virtual void DoSetToolTip( wxToolTip
*tip
);
245 #endif // wxUSE_TOOLTIPS
248 // common part of all ctors (not virtual because called from ctor)
251 // Called by ApplyWidgetStyle (which is called by SetFont() and
252 // SetXXXColour etc to apply style changed to native widgets) to create
253 // modified GTK style with non-standard attributes. If forceStyle=true,
254 // creates empty GtkRcStyle if there are no modifications, otherwise
255 // returns NULL in such case.
256 GtkRcStyle
*CreateWidgetStyle(bool forceStyle
= false);
258 // Overridden in many GTK widgets who have to handle subwidgets
259 virtual void ApplyWidgetStyle(bool forceStyle
= false);
261 // helper function to ease native widgets wrapping, called by
262 // ApplyWidgetStyle -- override this, not ApplyWidgetStyle
263 virtual void DoApplyWidgetStyle(GtkRcStyle
*style
);
266 DECLARE_DYNAMIC_CLASS(wxWindowGTK
)
267 wxDECLARE_NO_COPY_CLASS(wxWindowGTK
);
270 extern WXDLLIMPEXP_CORE wxWindow
*wxFindFocusedChild(wxWindowGTK
*win
);
272 #endif // __GTKWINDOWH__