1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #ifndef __GTKWINDOWH__
13 #define __GTKWINDOWH__
20 #include "wx/object.h"
23 #include "wx/validate.h"
24 #include "wx/cursor.h"
27 #include "wx/region.h"
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 extern const char *wxFrameNameStr
;
35 extern wxList wxTopLevelWindows
;
37 //-----------------------------------------------------------------------------
39 //-----------------------------------------------------------------------------
41 class wxLayoutConstraints
;
47 //-----------------------------------------------------------------------------
49 //-----------------------------------------------------------------------------
51 extern const char *wxPanelNameStr
;
52 extern const wxSize wxDefaultSize
;
53 extern const wxPoint wxDefaultPosition
;
55 //-----------------------------------------------------------------------------
57 //-----------------------------------------------------------------------------
59 class wxWindow
: public wxEvtHandler
63 wxWindow( wxWindow
*parent
, wxWindowID id
,
64 const wxPoint
&pos
= wxDefaultPosition
, const wxSize
&size
= wxDefaultSize
,
65 long style
= 0, const wxString
&name
= wxPanelNameStr
);
66 bool Create( wxWindow
*parent
, wxWindowID id
,
67 const wxPoint
&pos
= wxDefaultPosition
, const wxSize
&size
= wxDefaultSize
,
68 long style
= 0, const wxString
&name
= wxPanelNameStr
);
70 bool Close( bool force
= FALSE
);
71 virtual bool Destroy();
72 virtual bool DestroyChildren();
74 virtual void PrepareDC( wxDC
&dc
);
76 virtual void SetSize( int x
, int y
, int width
, int height
,
77 int sizeFlags
= wxSIZE_AUTO
);
78 virtual void SetSize( int width
, int height
);
79 virtual void Move( int x
, int y
);
80 virtual void GetSize( int *width
, int *height
) const;
81 virtual void SetClientSize( int const width
, int const height
);
82 virtual void GetClientSize( int *width
, int *height
) const;
83 virtual void GetPosition( int *x
, int *y
) const;
84 virtual void Centre( int direction
= wxHORIZONTAL
);
87 void OnSize( wxSizeEvent
&event
);
88 void OnIdle( wxIdleEvent
& event
);
90 virtual bool Show( bool show
);
91 virtual void Enable( bool enable
);
92 virtual void MakeModal( bool modal
);
93 virtual bool IsEnabled() const { return m_isEnabled
; };
94 virtual void SetFocus();
95 virtual bool OnClose();
97 virtual void AddChild( wxWindow
*child
);
98 wxList
*GetChildren();
99 virtual void RemoveChild( wxWindow
*child
);
100 void SetReturnCode( int retCode
);
102 wxWindow
*GetParent();
104 wxEvtHandler
*GetEventHandler();
105 void SetEventhandler( wxEvtHandler
*handler
);
107 virtual wxValidator
*GetValidator();
108 virtual void SetValidator( wxValidator
*validator
);
110 bool IsBeingDeleted();
112 void SetId( wxWindowID id
);
115 void SetCursor( const wxCursor
&cursor
);
117 virtual void Refresh( bool eraseBackground
= TRUE
, const wxRect
*rect
= NULL
);
118 virtual void Clear();
119 virtual bool IsExposed( long x
, long y
);
120 virtual bool IsExposed( long x
, long y
, long width
, long height
);
122 virtual wxColour
GetBackgroundColour() const;
123 virtual void SetBackgroundColour( const wxColour
&colour
);
125 virtual void SetDefaultBackgroundColour( const wxColour
& col
)
126 { m_defaultBackgroundColour
= col
; };
127 virtual wxColour
GetDefaultBackgroundColour() const
128 { return m_defaultBackgroundColour
; };
129 virtual void SetDefaultForegroundColour( const wxColour
& col
)
130 { m_defaultForegroundColour
= col
; };
131 virtual wxColour
GetDefaultForegroundColour() const
132 { return m_defaultForegroundColour
; };
134 virtual void SetFont( const wxFont
&font
);
135 virtual wxFont
*GetFont();
136 // For backward compatibility
137 inline virtual void SetButtonFont(const wxFont
& font
) { SetFont(font
); }
138 inline virtual void SetLabelFont(const wxFont
& font
) { SetFont(font
); }
139 inline virtual wxFont
*GetLabelFont() { return GetFont(); };
140 inline virtual wxFont
*GetButtonFont() { return GetFont(); };
141 virtual void SetWindowStyleFlag( long flag
);
142 virtual long GetWindowStyleFlag() const;
143 virtual void CaptureMouse();
144 virtual void ReleaseMouse();
145 virtual void SetTitle( const wxString
&title
);
146 virtual wxString
GetTitle() const;
147 virtual void SetName( const wxString
&name
);
148 virtual wxString
GetName() const;
149 virtual wxString
GetLabel() const;
151 void OnSysColourChanged( wxSysColourChangedEvent
&WXUNUSED(event
) ) {};
153 virtual bool IsShown() const;
154 virtual bool IsRetained();
155 virtual wxWindow
*FindWindow( long id
);
156 virtual wxWindow
*FindWindow( const wxString
& name
);
157 void AllowDoubleClick( bool WXUNUSED(allow
) ) {};
158 void SetDoubleClick( bool WXUNUSED(allow
) ) {};
159 virtual void ClientToScreen( int *x
, int *y
);
160 virtual void ScreenToClient( int *x
, int *y
);
162 virtual bool Validate();
163 virtual bool TransferDataToWindow();
164 virtual bool TransferDataFromWindow();
165 void OnInitDialog( wxInitDialogEvent
&event
);
166 virtual void InitDialog();
168 virtual bool PopupMenu( wxMenu
*menu
, int x
, int y
);
170 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
171 virtual wxDropTarget
*GetDropTarget() const;
174 virtual GtkWidget
* GetConnectWidget(void);
177 virtual void SetScrollbar( int orient
, int pos
, int thumbVisible
,
178 int range
, bool refresh
= TRUE
);
179 virtual void SetScrollPos( int orient
, int pos
, bool refresh
= TRUE
);
180 virtual int GetScrollPos( int orient
) const;
181 virtual int GetScrollThumb( int orient
) const;
182 virtual int GetScrollRange( int orient
) const;
183 virtual void ScrollWindow( int dx
, int dy
, const wxRect
* rect
= NULL
);
185 // return FALSE from here if the window doesn't want the focus
186 virtual bool AcceptsFocus() const;
188 // update the UI state (called from OnIdle)
189 void UpdateWindowUI();
192 public: // cannot get private going yet
194 void PreCreation( wxWindow
*parent
, wxWindowID id
, const wxPoint
&pos
,
195 const wxSize
&size
, long style
, const wxString
&name
);
198 virtual void ImplementSetSize();
199 virtual void ImplementSetPosition();
200 void GetDrawingOffset( long *x
, long *y
);
205 int m_width
,m_height
;
207 wxEvtHandler
*m_eventHandler
;
208 wxValidator
*m_windowValidator
;
209 wxDropTarget
*m_pDropTarget
;
210 wxWindowID m_windowId
;
213 wxColour m_backgroundColour
;
214 wxColour m_defaultBackgroundColour
;
215 wxColour m_foregroundColour
;
216 wxColour m_defaultForegroundColour
;
217 wxRegion m_updateRegion
;
221 wxString m_windowName
;
222 long m_drawingOffsetX
,m_drawingOffsetY
;
225 GtkWidget
*m_wxwindow
;
226 GtkAdjustment
*m_hAdjust
,*m_vAdjust
;
227 float m_oldHorizontalPos
;
228 float m_oldVerticalPos
;
235 public: // Layout section
237 wxLayoutConstraints
* m_constraints
;
238 wxList
* m_constraintsInvolvedIn
;
239 wxSizer
* m_windowSizer
;
240 wxWindow
* m_sizerParent
;
243 wxLayoutConstraints
*GetConstraints() const;
244 void SetConstraints( wxLayoutConstraints
*constraints
);
245 void SetAutoLayout( bool autoLayout
);
246 bool GetAutoLayout() const;
248 void SetSizer( wxSizer
*sizer
);
249 wxSizer
*GetSizer() const;
250 void SetSizerParent( wxWindow
*win
);
251 wxWindow
*GetSizerParent() const;
252 void UnsetConstraints(wxLayoutConstraints
*c
);
253 inline wxList
*GetConstraintsInvolvedIn() const ;
254 void AddConstraintReference(wxWindow
*otherWin
);
255 void RemoveConstraintReference(wxWindow
*otherWin
);
256 void DeleteRelatedConstraints();
257 virtual void ResetConstraints();
258 virtual void SetConstraintSizes(bool recurse
= TRUE
);
259 virtual bool LayoutPhase1(int *noChanges
);
260 virtual bool LayoutPhase2(int *noChanges
);
261 virtual bool DoPhase(int);
262 virtual void TransformSizerToActual(int *x
, int *y
) const ;
263 virtual void SizerSetSize(int x
, int y
, int w
, int h
);
264 virtual void SizerMove(int x
, int y
);
265 virtual void SetSizeConstraint(int x
, int y
, int w
, int h
);
266 virtual void MoveConstraint(int x
, int y
);
267 virtual void GetSizeConstraint(int *w
, int *h
) const ;
268 virtual void GetClientSizeConstraint(int *w
, int *h
) const ;
269 virtual void GetPositionConstraint(int *x
, int *y
) const ;
271 DECLARE_DYNAMIC_CLASS(wxWindow
)
272 DECLARE_EVENT_TABLE()
275 #endif // __GTKWINDOWH__