]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: window.h | |
3 | // Purpose: wxWindow class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __WINDOWH__ | |
13 | #define __WINDOWH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "window.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/gdicmn.h" | |
20 | #include "wx/icon.h" | |
21 | #include "wx/cursor.h" | |
22 | #include "wx/pen.h" | |
23 | #include "wx/font.h" | |
24 | #include "wx/validate.h" | |
25 | #include "wx/event.h" | |
26 | #include "wx/string.h" | |
27 | #include "wx/list.h" | |
81d66cf3 | 28 | #include "wx/region.h" |
2bda0e17 KB |
29 | |
30 | #define wxKEY_SHIFT 1 | |
31 | #define wxKEY_CTRL 2 | |
32 | ||
33 | /* | |
34 | * Base class for frame, panel, canvas, panel items, dialog box. | |
35 | * | |
36 | */ | |
37 | ||
38 | /* | |
39 | * Event handler: windows have themselves as their event handlers | |
40 | * by default, but their event handlers could be set to another | |
41 | * object entirely. This separation can reduce the amount of | |
42 | * derivation required, and allow alteration of a window's functionality | |
43 | * (e.g. by a resource editor that temporarily switches event handlers). | |
44 | */ | |
45 | ||
46 | class WXDLLEXPORT wxWindow; | |
47 | class WXDLLEXPORT wxEvent; | |
48 | class WXDLLEXPORT wxCommandEvent; | |
49 | class WXDLLEXPORT wxKeyEvent; | |
50 | class WXDLLEXPORT wxControl; | |
51 | class WXDLLEXPORT wxCursor; | |
52 | class WXDLLEXPORT wxColourMap; | |
53 | class WXDLLEXPORT wxFont; | |
54 | class WXDLLEXPORT wxMenu; | |
55 | class WXDLLEXPORT wxRectangle; | |
56 | class WXDLLEXPORT wxBitmap; | |
57 | class WXDLLEXPORT wxSizer; | |
58 | class WXDLLEXPORT wxList; | |
59 | class WXDLLEXPORT wxLayoutConstraints; | |
60 | class WXDLLEXPORT wxMouseEvent; | |
61 | class WXDLLEXPORT wxButton; | |
62 | class WXDLLEXPORT wxColour; | |
63 | class WXDLLEXPORT wxBrush; | |
64 | class WXDLLEXPORT wxPen; | |
65 | class WXDLLEXPORT wxIcon; | |
66 | class WXDLLEXPORT wxDC; | |
67 | class WXDLLEXPORT wxValidator; | |
68 | ||
69 | #if USE_DRAG_AND_DROP | |
70 | class wxDropTarget; | |
71 | #endif | |
72 | ||
73 | #if USE_WX_RESOURCES | |
74 | class WXDLLEXPORT wxResourceTable; | |
75 | class WXDLLEXPORT wxItemResource; | |
76 | #endif | |
77 | ||
78 | WXDLLEXPORT_DATA(extern const char*) wxPanelNameStr; | |
79 | ||
80 | WXDLLEXPORT_DATA(extern const wxSize) wxDefaultSize; | |
81 | WXDLLEXPORT_DATA(extern const wxPoint) wxDefaultPosition; | |
82 | ||
83 | class WXDLLEXPORT wxWindow: public wxEvtHandler | |
84 | { | |
85 | DECLARE_ABSTRACT_CLASS(wxWindow) | |
86 | ||
87 | friend class wxUpdateIterator; | |
88 | friend class wxDC; | |
89 | friend class wxPaintDC; | |
90 | ||
91 | public: | |
92 | wxWindow(void); | |
debe6624 | 93 | inline wxWindow(wxWindow *parent, wxWindowID id, |
2bda0e17 KB |
94 | const wxPoint& pos = wxDefaultPosition, |
95 | const wxSize& size = wxDefaultSize, | |
debe6624 | 96 | long style = 0, |
2bda0e17 KB |
97 | const wxString& name = wxPanelNameStr) |
98 | { | |
99 | m_children = new wxList; | |
100 | Create(parent, id, pos, size, style, name); | |
101 | } | |
102 | ||
103 | virtual ~wxWindow(void); | |
104 | ||
debe6624 | 105 | bool Create(wxWindow *parent, wxWindowID id, |
2bda0e17 KB |
106 | const wxPoint& pos = wxDefaultPosition, |
107 | const wxSize& size = wxDefaultSize, | |
debe6624 | 108 | long style = 0, |
2bda0e17 KB |
109 | const wxString& name = wxPanelNameStr); |
110 | ||
111 | // Fit the window around the items | |
112 | virtual void Fit(void); | |
113 | ||
114 | // Show or hide the window | |
debe6624 | 115 | virtual bool Show(bool show); |
2bda0e17 KB |
116 | |
117 | // Is the window shown? | |
118 | virtual bool IsShown(void) const; | |
119 | ||
120 | // Raise the window to the top of the Z order | |
121 | virtual void Raise(void); | |
122 | ||
123 | // Lower the window to the bottom of the Z order | |
124 | virtual void Lower(void); | |
125 | ||
126 | // Is the window enabled? | |
127 | virtual bool IsEnabled(void) const; | |
128 | ||
129 | // For compatibility | |
130 | inline bool Enabled(void) const { return IsEnabled(); } | |
131 | ||
132 | // Dialog support: override these and call | |
133 | // base class members to add functionality | |
134 | // that can't be done using validators. | |
135 | ||
136 | // Transfer values to controls. If returns FALSE, | |
137 | // it's an application error (pops up a dialog) | |
138 | virtual bool TransferDataToWindow(void); | |
139 | ||
140 | // Transfer values from controls. If returns FALSE, | |
141 | // transfer failed: don't quit | |
142 | virtual bool TransferDataFromWindow(void); | |
143 | ||
144 | // Validate controls. If returns FALSE, | |
145 | // validation failed: don't quit | |
146 | virtual bool Validate(void); | |
147 | ||
148 | // Return code for dialogs | |
149 | inline void SetReturnCode(int retCode); | |
150 | inline int GetReturnCode(void); | |
151 | ||
152 | // Set the cursor | |
153 | virtual void SetCursor(const wxCursor& cursor); | |
154 | inline virtual wxCursor *GetCursor(void) const { return (wxCursor *)& m_windowCursor; }; | |
155 | ||
156 | // Get the window with the focus | |
157 | static wxWindow *FindFocus(void); | |
158 | ||
159 | // Get character size | |
160 | virtual int GetCharHeight(void) const; | |
161 | virtual int GetCharWidth(void) const; | |
162 | ||
163 | // Get overall window size | |
164 | virtual void GetSize(int *width, int *height) const; | |
165 | ||
166 | // Get window position, relative to parent (or screen if no parent) | |
167 | virtual void GetPosition(int *x, int *y) const; | |
168 | ||
169 | // Get client (application-useable) size | |
170 | virtual void GetClientSize(int *width, int *height) const; | |
171 | ||
172 | // Set overall size and position | |
debe6624 JS |
173 | virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); |
174 | inline virtual void SetSize(int width, int height) { SetSize(-1, -1, width, height, wxSIZE_USE_EXISTING); } | |
175 | inline virtual void Move(int x, int y) { SetSize(x, y, -1, -1, wxSIZE_USE_EXISTING); } | |
2bda0e17 KB |
176 | |
177 | // Set client size | |
debe6624 | 178 | virtual void SetClientSize(int width, int size); |
2bda0e17 KB |
179 | |
180 | // Convert client to screen coordinates | |
181 | virtual void ClientToScreen(int *x, int *y) const; | |
182 | ||
183 | // Convert screen to client coordinates | |
184 | virtual void ScreenToClient(int *x, int *y) const; | |
185 | ||
186 | // Set the focus to this window | |
187 | virtual void SetFocus(void); | |
188 | ||
189 | // Capture/release mouse | |
190 | virtual void CaptureMouse(void); | |
191 | virtual void ReleaseMouse(void); | |
192 | ||
193 | // Enable or disable the window | |
debe6624 | 194 | virtual void Enable(bool enable); |
2bda0e17 KB |
195 | |
196 | #if USE_DRAG_AND_DROP | |
197 | // Associate a drop target with this window (if the window already had a drop | |
198 | // target, it's deleted!) and return the current drop target (may be NULL). | |
199 | void SetDropTarget(wxDropTarget *pDropTarget); | |
200 | wxDropTarget *GetDropTarget() const { return m_pDropTarget; } | |
201 | #endif | |
202 | ||
203 | // Accept files for dragging | |
debe6624 | 204 | virtual void DragAcceptFiles(bool accept); |
2bda0e17 | 205 | |
81d66cf3 JS |
206 | // Update region access |
207 | virtual wxRegion GetUpdateRegion() const; | |
208 | virtual bool IsExposed(int x, int y, int w, int h) const; | |
209 | virtual bool IsExposed(const wxPoint& pt) const; | |
210 | virtual bool IsExposed(const wxRect& rect) const; | |
211 | ||
2bda0e17 KB |
212 | // Set/get the window title |
213 | virtual inline void SetTitle(const wxString& WXUNUSED(title)) {}; | |
214 | inline virtual wxString GetTitle(void) const { return wxString(""); }; | |
215 | // Most windows have the concept of a label; for frames, this is the | |
216 | // title; for items, this is the label or button text. | |
217 | inline virtual wxString GetLabel(void) const { return GetTitle(); } | |
218 | ||
219 | // Set/get the window name (used for resource setting in X) | |
220 | inline virtual wxString GetName(void) const; | |
221 | inline virtual void SetName(const wxString& name); | |
222 | ||
223 | // Centre the window | |
debe6624 JS |
224 | virtual void Centre(int direction) ; |
225 | inline void Center(int direction = wxHORIZONTAL) { Centre(direction); } | |
2bda0e17 KB |
226 | |
227 | // Popup a menu | |
debe6624 | 228 | virtual bool PopupMenu(wxMenu *menu, int x, int y); |
2bda0e17 KB |
229 | |
230 | // Send the window a refresh event | |
debe6624 | 231 | virtual void Refresh(bool eraseBack = TRUE, const wxRectangle *rect = NULL); |
2bda0e17 KB |
232 | |
233 | #if WXWIN_COMPATIBILITY | |
234 | // Set/get scroll attributes | |
debe6624 JS |
235 | virtual void SetScrollRange(int orient, int range, bool refresh = TRUE); |
236 | virtual void SetScrollPage(int orient, int page, bool refresh = TRUE); | |
237 | virtual int OldGetScrollRange(int orient) const; | |
238 | virtual int GetScrollPage(int orient) const; | |
2bda0e17 KB |
239 | #endif |
240 | ||
241 | // New functions that will replace the above. | |
debe6624 JS |
242 | virtual void SetScrollbar(int orient, int pos, int thumbVisible, |
243 | int range, bool refresh = TRUE); | |
2bda0e17 | 244 | |
debe6624 JS |
245 | virtual void SetScrollPos(int orient, int pos, bool refresh = TRUE); |
246 | virtual int GetScrollPos(int orient) const; | |
247 | virtual int GetScrollRange(int orient) const; | |
248 | virtual int GetScrollThumb(int orient) const; | |
2bda0e17 | 249 | |
debe6624 | 250 | virtual void ScrollWindow(int dx, int dy, const wxRectangle *rect = NULL); |
2bda0e17 KB |
251 | |
252 | // Caret manipulation | |
debe6624 | 253 | virtual void CreateCaret(int w, int h); |
2bda0e17 KB |
254 | virtual void CreateCaret(const wxBitmap *bitmap); |
255 | virtual void DestroyCaret(void); | |
debe6624 JS |
256 | virtual void ShowCaret(bool show); |
257 | virtual void SetCaretPos(int x, int y); | |
2bda0e17 KB |
258 | virtual void GetCaretPos(int *x, int *y) const; |
259 | ||
260 | // Tell window how much it can be sized | |
debe6624 | 261 | virtual void SetSizeHints(int minW = -1, int minH = -1, int maxW = -1, int maxH = -1, int incW = -1, int incH = -1); |
2bda0e17 KB |
262 | |
263 | // Set/get the window's identifier | |
264 | inline int GetId() const; | |
debe6624 | 265 | inline void SetId(int id); |
2bda0e17 KB |
266 | |
267 | // Make the window modal (all other windows unresponsive) | |
debe6624 | 268 | virtual void MakeModal(bool modal); |
2bda0e17 KB |
269 | |
270 | // Get the private handle (platform-dependent) | |
271 | inline void *GetHandle(void) const; | |
272 | ||
273 | // Set/get the window's relatives | |
274 | inline wxWindow *GetParent(void) const; | |
275 | inline void SetParent(wxWindow *p) ; | |
276 | inline wxWindow *GetGrandParent(void) const; | |
277 | inline wxList *GetChildren() const; | |
278 | ||
279 | // Set/get the window's font | |
280 | virtual void SetFont(const wxFont& f); | |
281 | inline virtual wxFont *GetFont(void) const; | |
282 | ||
283 | // Set/get the window's validator | |
284 | void SetValidator(const wxValidator& validator); | |
285 | inline wxValidator *GetValidator(void) const; | |
286 | ||
287 | // Set/get the window's style | |
debe6624 | 288 | inline void SetWindowStyleFlag(long flag); |
2bda0e17 KB |
289 | inline long GetWindowStyleFlag(void) const; |
290 | ||
291 | // Set/get double-clickability | |
292 | // TODO: we probably wish to get rid of this, and | |
293 | // always allow double clicks. | |
debe6624 | 294 | inline void SetDoubleClick(bool flag); |
2bda0e17 | 295 | inline bool GetDoubleClick(void) const; |
debe6624 | 296 | inline void AllowDoubleClick(bool value) { SetDoubleClick(value); } |
2bda0e17 KB |
297 | |
298 | // Old way to handle a control command | |
299 | virtual void OnCommand(wxWindow& win, wxCommandEvent& event); | |
300 | ||
301 | // Set/get event handler | |
302 | inline void SetEventHandler(wxEvtHandler *handler); | |
303 | inline wxEvtHandler *GetEventHandler(void) const; | |
304 | ||
305 | // Push/pop event handler (i.e. allow a chain of event handlers | |
306 | // be searched) | |
307 | void PushEventHandler(wxEvtHandler *handler) ; | |
308 | wxEvtHandler *PopEventHandler(bool deleteHandler = FALSE) ; | |
309 | ||
310 | // Close the window by calling OnClose, posting a deletion | |
debe6624 | 311 | virtual bool Close(bool force = FALSE); |
2bda0e17 KB |
312 | |
313 | // Destroy the window (delayed, if a managed window) | |
314 | virtual bool Destroy(void) ; | |
315 | ||
316 | // Mode for telling default OnSize members to | |
317 | // call Layout(), if not using Sizers, just top-down constraints | |
debe6624 | 318 | inline void SetAutoLayout(bool a); |
2bda0e17 KB |
319 | inline bool GetAutoLayout(void) const; |
320 | ||
321 | // Set/get constraints | |
322 | inline wxLayoutConstraints *GetConstraints(void) const; | |
323 | void SetConstraints(wxLayoutConstraints *c); | |
324 | ||
325 | // Set/get window background colour | |
326 | inline virtual void SetBackgroundColour(const wxColour& col); | |
327 | inline virtual wxColour GetBackgroundColour(void) const; | |
328 | ||
329 | // Set/get window foreground colour | |
330 | inline virtual void SetForegroundColour(const wxColour& col); | |
331 | inline virtual wxColour GetForegroundColour(void) const; | |
332 | ||
333 | // TODO: are these really necessary??? | |
334 | // Set/get window default background colour (for children to inherit) | |
335 | inline virtual void SetDefaultBackgroundColour(const wxColour& col); | |
336 | inline virtual wxColour GetDefaultBackgroundColour(void) const; | |
337 | ||
338 | // Set/get window default foreground colour (for children to inherit) | |
339 | inline virtual void SetDefaultForegroundColour(const wxColour& col); | |
340 | inline virtual wxColour GetDefaultForegroundColour(void) const; | |
341 | ||
342 | // For backward compatibility | |
343 | inline virtual void SetButtonFont(const wxFont& font) { SetFont(font); } | |
344 | inline virtual void SetLabelFont(const wxFont& font) { SetFont(font); } | |
345 | inline virtual wxFont *GetLabelFont(void) const { return GetFont(); }; | |
346 | inline virtual wxFont *GetButtonFont(void) const { return GetFont(); }; | |
347 | ||
348 | // Get the default button, if there is one | |
349 | inline virtual wxButton *GetDefaultItem(void) const; | |
350 | inline virtual void SetDefaultItem(wxButton *but); | |
351 | ||
352 | // Override to define new behaviour for default action (e.g. double clicking | |
353 | // on a listbox) | |
354 | virtual void OnDefaultAction(wxControl *initiatingItem); | |
355 | ||
356 | // Resource loading | |
357 | #if USE_WX_RESOURCES | |
358 | virtual bool LoadFromResource(wxWindow *parent, const wxString& resourceName, const wxResourceTable *table = NULL); | |
359 | virtual wxControl *CreateItem(const wxItemResource *childResource, const wxResourceTable *table = NULL); | |
360 | #endif | |
361 | ||
362 | // Native resource loading | |
debe6624 | 363 | virtual bool LoadNativeDialog(wxWindow* parent, wxWindowID& id); |
2bda0e17 | 364 | virtual bool LoadNativeDialog(wxWindow* parent, const wxString& name); |
debe6624 JS |
365 | virtual wxWindow* GetWindowChild1(wxWindowID& id); |
366 | virtual wxWindow* GetWindowChild(wxWindowID& id); | |
2bda0e17 KB |
367 | |
368 | virtual void GetTextExtent(const wxString& string, int *x, int *y, | |
369 | int *descent = NULL, | |
370 | int *externalLeading = NULL, | |
debe6624 | 371 | const wxFont *theFont = NULL, bool use16 = FALSE) const; |
2bda0e17 KB |
372 | |
373 | // Is the window retained? | |
374 | inline bool IsRetained(void) const; | |
375 | ||
2bda0e17 | 376 | // Warp the pointer the given position |
debe6624 | 377 | virtual void WarpPointer(int x_pos, int y_pos) ; |
2bda0e17 KB |
378 | |
379 | // Clear the window | |
380 | virtual void Clear(void); | |
381 | ||
382 | // Find a window by id or name | |
debe6624 | 383 | virtual wxWindow *FindWindow(long id); |
2bda0e17 KB |
384 | virtual wxWindow *FindWindow(const wxString& name); |
385 | ||
386 | // Constraint operations | |
387 | bool Layout(void); | |
388 | void SetSizer(wxSizer *sizer); // Adds sizer child to this window | |
389 | inline wxSizer *GetSizer(void) const ; | |
390 | inline wxWindow *GetSizerParent(void) const ; | |
391 | inline void SetSizerParent(wxWindow *win); | |
392 | ||
393 | // Do Update UI processing for controls | |
394 | void UpdateWindowUI(void); | |
395 | ||
2bda0e17 KB |
396 | void OnEraseBackground(wxEraseEvent& event); |
397 | void OnChar(wxKeyEvent& event); | |
398 | void OnPaint(wxPaintEvent& event); | |
399 | void OnIdle(wxIdleEvent& event); | |
400 | ||
52476186 VZ |
401 | // Does this window want to accept keyboard focus? |
402 | virtual bool AcceptsFocus() const; | |
403 | ||
2bda0e17 KB |
404 | public: |
405 | //////////////////////////////////////////////////////////////////////// | |
406 | //// IMPLEMENTATION | |
407 | ||
81d66cf3 JS |
408 | // For implementation purposes - sometimes decorations make the client area |
409 | // smaller | |
410 | virtual wxPoint GetClientAreaOrigin() const; | |
411 | ||
412 | // Makes an adjustment to the window position (for example, a frame that has | |
413 | // a toolbar that it manages itself). | |
414 | virtual void AdjustForParentClientOrigin(int& x, int& y, int sizeFlags); | |
415 | ||
2bda0e17 KB |
416 | // Windows subclassing |
417 | void SubclassWin(WXHWND hWnd); | |
418 | void UnsubclassWin(void); | |
419 | virtual long Default(void); | |
debe6624 JS |
420 | virtual bool MSWCommand(WXUINT param, WXWORD id); |
421 | virtual bool MSWNotify(WXWPARAM wParam, WXLPARAM lParam); | |
422 | virtual wxWindow *FindItem(int id) const; | |
423 | virtual wxWindow *FindItemByHWND(WXHWND hWnd, bool controlOnly = FALSE) const ; | |
424 | virtual void PreDelete(WXHDC dc); // Allows system cleanup | |
2bda0e17 KB |
425 | // TO DO: how many of these need to be virtual? |
426 | virtual WXHWND GetHWND(void) const ; | |
427 | virtual void SetHWND(WXHWND hWnd); | |
428 | ||
429 | // Make a Windows extended style from the given wxWindows window style | |
430 | virtual WXDWORD MakeExtendedStyle(long style, bool eliminateBorders = TRUE); | |
431 | // Determine whether 3D effects are wanted | |
432 | virtual WXDWORD Determine3DEffects(WXDWORD defaultBorderStyle, bool *want3D); | |
433 | ||
434 | virtual void AddChild(wxWindow *child); // Adds reference to the child object | |
435 | virtual void RemoveChild(wxWindow *child); // Removes reference to child | |
436 | // (but doesn't delete the child object) | |
437 | virtual void DestroyChildren(void); // Removes and destroys all children | |
438 | ||
439 | inline bool IsBeingDeleted(void); | |
440 | ||
441 | // MSW only: TRUE if this control is part of the main control | |
442 | virtual bool ContainsHWND(WXHWND WXUNUSED(hWnd)) const { return FALSE; }; | |
443 | ||
444 | // Constraint implementation | |
445 | void UnsetConstraints(wxLayoutConstraints *c); | |
446 | inline wxList *GetConstraintsInvolvedIn(void) const ; | |
447 | // Back-pointer to other windows we're involved with, so if we delete | |
448 | // this window, we must delete any constraints we're involved with. | |
449 | void AddConstraintReference(wxWindow *otherWin); | |
450 | void RemoveConstraintReference(wxWindow *otherWin); | |
451 | void DeleteRelatedConstraints(void); | |
452 | ||
453 | virtual void ResetConstraints(void); | |
debe6624 | 454 | virtual void SetConstraintSizes(bool recurse = TRUE); |
2bda0e17 KB |
455 | virtual bool LayoutPhase1(int *noChanges); |
456 | virtual bool LayoutPhase2(int *noChanges); | |
debe6624 | 457 | virtual bool DoPhase(int); |
2bda0e17 KB |
458 | // Transforms from sizer coordinate space to actual |
459 | // parent coordinate space | |
460 | virtual void TransformSizerToActual(int *x, int *y) const ; | |
461 | ||
462 | // Set size with transformation to actual coordinates if nec. | |
debe6624 JS |
463 | virtual void SizerSetSize(int x, int y, int w, int h); |
464 | virtual void SizerMove(int x, int y); | |
2bda0e17 KB |
465 | |
466 | // Only set/get the size/position of the constraint (if any) | |
debe6624 JS |
467 | virtual void SetSizeConstraint(int x, int y, int w, int h); |
468 | virtual void MoveConstraint(int x, int y); | |
2bda0e17 KB |
469 | virtual void GetSizeConstraint(int *w, int *h) const ; |
470 | virtual void GetClientSizeConstraint(int *w, int *h) const ; | |
471 | virtual void GetPositionConstraint(int *x, int *y) const ; | |
472 | ||
debe6624 | 473 | wxObject *GetChild(int number) const ; |
2bda0e17 | 474 | |
debe6624 JS |
475 | void MSWCreate(int id, wxWindow *parent, const char *wclass, wxWindow *wx_win, const char *title, |
476 | int x, int y, int width, int height, | |
477 | WXDWORD style, const char *dialog_template = NULL, | |
478 | WXDWORD exendedStyle = 0); | |
2bda0e17 KB |
479 | |
480 | // Actually defined in wx_canvs.cc since requires wxCanvas declaration | |
481 | virtual void MSWDeviceToLogical(float *x, float *y) const ; | |
482 | ||
483 | // Create an appropriate wxWindow from a HWND | |
484 | virtual wxWindow* CreateWindowFromHWND(wxWindow* parent, WXHWND hWnd); | |
485 | ||
486 | // Make sure the window style reflects the HWND style (roughly) | |
487 | virtual void AdoptAttributesFromHWND(void); | |
488 | ||
489 | // Setup background and foreground colours correctly | |
490 | virtual void SetupColours(void); | |
491 | ||
492 | // Handlers | |
493 | virtual void MSWOnCreate(WXLPCREATESTRUCT cs); | |
494 | virtual bool MSWOnPaint(void); | |
495 | virtual WXHICON MSWOnQueryDragIcon(void) { return 0; } | |
debe6624 | 496 | virtual void MSWOnSize(int x, int y, WXUINT flag); |
2bda0e17 | 497 | virtual void MSWOnWindowPosChanging(void *lpPos); |
debe6624 JS |
498 | virtual void MSWOnHScroll(WXWORD nSBCode, WXWORD pos, WXHWND control); |
499 | virtual void MSWOnVScroll(WXWORD nSBCode, WXWORD pos, WXHWND control); | |
500 | virtual bool MSWOnCommand(WXWORD id, WXWORD cmd, WXHWND control); | |
2bda0e17 | 501 | virtual long MSWOnSysCommand(WXWPARAM wParam, WXLPARAM lParam); |
debe6624 JS |
502 | virtual bool MSWOnNotify(WXWPARAM wParam, WXLPARAM lParam); |
503 | virtual WXHBRUSH MSWOnCtlColor(WXHDC dc, WXHWND pWnd, WXUINT nCtlColor, | |
504 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
505 | virtual bool MSWOnColorChange(WXHWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
f7bd2698 JS |
506 | virtual long MSWOnPaletteChanged(WXHWND hWndPalChange); |
507 | virtual long MSWOnQueryNewPalette(); | |
debe6624 JS |
508 | virtual bool MSWOnEraseBkgnd(WXHDC pDC); |
509 | virtual void MSWOnMenuHighlight(WXWORD item, WXWORD flags, WXHMENU sysmenu); | |
510 | virtual void MSWOnInitMenuPopup(WXHMENU menu, int pos, bool isSystem); | |
2bda0e17 KB |
511 | virtual bool MSWOnClose(void); |
512 | virtual bool MSWOnDestroy(void); | |
debe6624 JS |
513 | virtual bool MSWOnSetFocus(WXHWND wnd); |
514 | virtual bool MSWOnKillFocus(WXHWND wnd); | |
515 | virtual void MSWOnDropFiles(WXWPARAM wParam); | |
2bda0e17 KB |
516 | virtual bool MSWOnInitDialog(WXHWND hWndFocus); |
517 | virtual void MSWOnShow(bool show, int status); | |
518 | ||
519 | // TODO: rationalise these functions into 1 or 2 which take the | |
520 | // event type as argument. | |
debe6624 JS |
521 | virtual void MSWOnLButtonDown(int x, int y, WXUINT flags); |
522 | virtual void MSWOnLButtonUp(int x, int y, WXUINT flags); | |
523 | virtual void MSWOnLButtonDClick(int x, int y, WXUINT flags); | |
2bda0e17 | 524 | |
debe6624 JS |
525 | virtual void MSWOnMButtonDown(int x, int y, WXUINT flags); |
526 | virtual void MSWOnMButtonUp(int x, int y, WXUINT flags); | |
527 | virtual void MSWOnMButtonDClick(int x, int y, WXUINT flags); | |
2bda0e17 | 528 | |
debe6624 JS |
529 | virtual void MSWOnRButtonDown(int x, int y, WXUINT flags); |
530 | virtual void MSWOnRButtonUp(int x, int y, WXUINT flags); | |
531 | virtual void MSWOnRButtonDClick(int x, int y, WXUINT flags); | |
2bda0e17 | 532 | |
debe6624 JS |
533 | virtual void MSWOnMouseMove(int x, int y, WXUINT flags); |
534 | virtual void MSWOnMouseEnter(int x, int y, WXUINT flags); | |
535 | virtual void MSWOnMouseLeave(int x, int y, WXUINT flags); | |
2bda0e17 | 536 | |
debe6624 | 537 | virtual void MSWOnChar(WXWORD wParam, WXLPARAM lParam, bool isASCII = FALSE); |
2bda0e17 | 538 | |
debe6624 JS |
539 | virtual bool MSWOnActivate(int flag, bool minimized, WXHWND activate); |
540 | virtual long MSWOnMDIActivate(long flag, WXHWND activate, WXHWND deactivate); | |
2bda0e17 | 541 | |
debe6624 JS |
542 | virtual bool MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *item); |
543 | virtual bool MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *item); | |
2bda0e17 | 544 | |
debe6624 JS |
545 | virtual void MSWOnJoyDown(int joystick, int x, int y, WXUINT flags); |
546 | virtual void MSWOnJoyUp(int joystick, int x, int y, WXUINT flags); | |
547 | virtual void MSWOnJoyMove(int joystick, int x, int y, WXUINT flags); | |
548 | virtual void MSWOnJoyZMove(int joystick, int z, WXUINT flags); | |
2bda0e17 | 549 | |
52476186 VZ |
550 | virtual long MSWGetDlgCode(); |
551 | ||
2bda0e17 KB |
552 | // Window procedure |
553 | virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
554 | ||
555 | // Calls an appropriate default window procedure | |
556 | virtual long MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
557 | virtual bool MSWProcessMessage(WXMSG* pMsg); | |
57a7b7c1 | 558 | virtual bool MSWTranslateMessage(WXMSG* pMsg); |
2bda0e17 KB |
559 | virtual void MSWDestroyWindow(void); |
560 | ||
561 | // Detach "Window" menu from menu bar so it doesn't get deleted | |
562 | void MSWDetachWindowMenu(void); | |
563 | ||
564 | inline WXFARPROC MSWGetOldWndProc() const; | |
debe6624 | 565 | inline void MSWSetOldWndProc(WXFARPROC proc); |
2bda0e17 KB |
566 | |
567 | // Define for each class of dialog and control | |
debe6624 | 568 | virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, |
2bda0e17 KB |
569 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam); |
570 | ||
debe6624 | 571 | inline void SetShowing(bool show); |
2bda0e17 KB |
572 | inline bool IsUserEnabled(void) const; |
573 | inline bool GetUseCtl3D(void) const ; | |
574 | inline bool GetTransparentBackground(void) const ; | |
575 | ||
576 | // Responds to colour changes: passes event on to children. | |
577 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
578 | ||
579 | // Transfers data to any child controls | |
580 | void OnInitDialog(wxInitDialogEvent& event); | |
581 | ||
582 | // Sends an OnInitDialog event, which in turns transfers data to | |
583 | // to the window via validators. | |
584 | virtual void InitDialog(void); | |
585 | ||
586 | //////////////////////////////////////////////////////////////////////// | |
587 | //// PROTECTED DATA | |
588 | protected: | |
589 | int m_windowId; | |
590 | long m_windowStyle; // Store the window's style | |
591 | wxEvtHandler * m_windowEventHandler; // Usually is 'this' | |
592 | wxLayoutConstraints * m_constraints; // Constraints for this window | |
593 | wxList * m_constraintsInvolvedIn; // List of constraints we're involved in | |
594 | wxSizer * m_windowSizer; // Window's top-level sizer (if any) | |
595 | wxWindow * m_sizerParent; // Window's parent sizer (if any) | |
596 | bool m_autoLayout; // Whether to call Layout() in OnSize | |
597 | wxWindow * m_windowParent; // Each window always knows its parent | |
598 | wxValidator * m_windowValidator; | |
599 | // Old window proc, for subclassed controls | |
600 | WXFARPROC m_oldWndProc; | |
601 | bool m_useCtl3D; // Using CTL3D for this control | |
602 | ||
603 | bool m_inOnSize; // Protection against OnSize reentry | |
604 | #ifndef __WIN32__ | |
605 | // Pointer to global memory, for EDIT controls that need | |
606 | // special treatment to reduce USER area consumption. | |
607 | WXHGLOBAL m_globalHandle; | |
608 | #endif | |
609 | ||
610 | bool m_winEnabled; | |
611 | int m_minSizeX; | |
612 | int m_minSizeY; | |
613 | int m_maxSizeX; | |
614 | int m_maxSizeY; | |
615 | ||
616 | // Caret data | |
617 | int m_caretWidth; | |
618 | int m_caretHeight; | |
619 | bool m_caretEnabled; | |
620 | bool m_caretShown; | |
2bda0e17 KB |
621 | wxFont m_windowFont; // Window's font |
622 | bool m_isShown; | |
623 | bool m_doubleClickAllowed ; | |
624 | wxCursor m_windowCursor; // Window's cursor | |
625 | bool m_winCaptured; | |
626 | wxString m_windowName; // Window name | |
627 | ||
628 | #if USE_EXTENDED_STATICS | |
629 | wxList m_staticItems; | |
630 | #endif | |
631 | ||
632 | wxButton * m_defaultItem; | |
633 | ||
634 | wxColour m_backgroundColour ; | |
635 | wxColour m_defaultBackgroundColour; | |
636 | ||
637 | wxColour m_foregroundColour ; | |
638 | wxColour m_defaultForegroundColour; | |
639 | ||
640 | bool m_backgroundTransparent; | |
641 | ||
2bda0e17 KB |
642 | int m_xThumbSize; |
643 | int m_yThumbSize; | |
644 | ||
645 | float m_lastXPos; | |
646 | float m_lastYPos; | |
647 | int m_lastEvent; | |
648 | ||
649 | bool m_mouseInWindow; | |
650 | ||
651 | #if USE_DRAG_AND_DROP | |
652 | wxDropTarget *m_pDropTarget; // the current drop target or NULL | |
653 | #endif //USE_DRAG_AND_DROP | |
654 | ||
655 | public: | |
656 | WXHWND m_hWnd; // MS Windows window handle | |
657 | WXUINT m_lastMsg; | |
658 | WXWPARAM m_lastWParam; | |
659 | WXLPARAM m_lastLParam; | |
81d66cf3 JS |
660 | |
661 | wxRegion m_updateRegion; | |
662 | /* | |
2bda0e17 KB |
663 | wxRectangle m_updateRect; // Bounding box for screen damage area |
664 | #ifdef __WIN32__ | |
665 | WXHRGN m_updateRgn; // NT allows access to the rectangle list | |
666 | #endif | |
81d66cf3 JS |
667 | */ |
668 | ||
57a7b7c1 | 669 | // WXHANDLE m_acceleratorTable; |
2bda0e17 KB |
670 | WXHMENU m_hMenu; // Menu, if any |
671 | wxList * m_children; // Window's children | |
672 | int m_returnCode; | |
673 | bool m_isBeingDeleted; // Fudge because can't access parent | |
674 | // when being deleted | |
675 | ||
676 | DECLARE_EVENT_TABLE() | |
677 | }; | |
678 | ||
679 | //////////////////////////////////////////////////////////////////////// | |
680 | //// INLINES | |
681 | ||
682 | inline void *wxWindow::GetHandle(void) const { return (void *)GetHWND(); } | |
683 | inline int wxWindow::GetId() const { return m_windowId; } | |
debe6624 | 684 | inline void wxWindow::SetId(int id) { m_windowId = id; } |
2bda0e17 KB |
685 | inline wxWindow *wxWindow::GetParent(void) const { return m_windowParent; } |
686 | inline void wxWindow::SetParent(wxWindow *p) { m_windowParent = p; } | |
687 | inline wxWindow *wxWindow::GetGrandParent(void) const { return (m_windowParent ? m_windowParent->m_windowParent : NULL); } | |
688 | inline wxList *wxWindow::GetChildren() const { return m_children; } | |
689 | inline wxFont *wxWindow::GetFont(void) const { return (wxFont *) & m_windowFont; } | |
690 | inline wxString wxWindow::GetName(void) const { return m_windowName; } | |
691 | inline void wxWindow::SetName(const wxString& name) { m_windowName = name; } | |
692 | inline long wxWindow::GetWindowStyleFlag(void) const { return m_windowStyle; } | |
debe6624 JS |
693 | inline void wxWindow::SetWindowStyleFlag(long flag) { m_windowStyle = flag; } |
694 | inline void wxWindow::SetDoubleClick(bool flag) { m_doubleClickAllowed = flag; } | |
2bda0e17 KB |
695 | inline bool wxWindow::GetDoubleClick(void) const { return m_doubleClickAllowed; } |
696 | inline void wxWindow::SetEventHandler(wxEvtHandler *handler) { m_windowEventHandler = handler; } | |
697 | inline wxEvtHandler *wxWindow::GetEventHandler(void) const { return m_windowEventHandler; } | |
debe6624 | 698 | inline void wxWindow::SetAutoLayout(bool a) { m_autoLayout = a; } |
2bda0e17 KB |
699 | inline bool wxWindow::GetAutoLayout(void) const { return m_autoLayout; } |
700 | inline wxLayoutConstraints *wxWindow::GetConstraints(void) const { return m_constraints; } | |
701 | inline void wxWindow::SetBackgroundColour(const wxColour& col) { m_backgroundColour = col; }; | |
702 | inline wxColour wxWindow::GetBackgroundColour(void) const { return m_backgroundColour; }; | |
703 | inline void wxWindow::SetForegroundColour(const wxColour& col) { m_foregroundColour = col; }; | |
704 | inline wxColour wxWindow::GetForegroundColour(void) const { return m_foregroundColour; }; | |
705 | inline void wxWindow::SetDefaultForegroundColour(const wxColour& col) { m_defaultForegroundColour = col; }; | |
706 | inline wxColour wxWindow::GetDefaultForegroundColour(void) const { return m_defaultForegroundColour; }; | |
707 | inline void wxWindow::SetDefaultBackgroundColour(const wxColour& col) { m_defaultBackgroundColour = col; }; | |
708 | inline wxColour wxWindow::GetDefaultBackgroundColour(void) const { return m_defaultBackgroundColour; }; | |
709 | ||
710 | inline wxButton *wxWindow::GetDefaultItem(void) const { return m_defaultItem; } | |
711 | inline void wxWindow::SetDefaultItem(wxButton *but) { m_defaultItem = but; } | |
2bda0e17 | 712 | inline bool wxWindow::IsRetained(void) const { return ((m_windowStyle & wxRETAINED) == wxRETAINED); } |
debe6624 | 713 | |
debe6624 | 714 | inline void wxWindow::SetShowing(bool show) { m_isShown = show; } |
2bda0e17 KB |
715 | inline wxList *wxWindow::GetConstraintsInvolvedIn(void) const { return m_constraintsInvolvedIn; } |
716 | inline wxSizer *wxWindow::GetSizer(void) const { return m_windowSizer; } | |
717 | inline wxWindow *wxWindow::GetSizerParent(void) const { return m_sizerParent; } | |
718 | inline void wxWindow::SetSizerParent(wxWindow *win) { m_sizerParent = win; } | |
719 | inline WXFARPROC wxWindow::MSWGetOldWndProc() const { return m_oldWndProc; } | |
debe6624 | 720 | inline void wxWindow::MSWSetOldWndProc(WXFARPROC proc) { m_oldWndProc = proc; } |
2bda0e17 KB |
721 | inline wxValidator *wxWindow::GetValidator(void) const { return m_windowValidator; } |
722 | inline bool wxWindow::IsUserEnabled(void) const { return m_winEnabled; } | |
723 | inline bool wxWindow::GetUseCtl3D(void) const { return m_useCtl3D; } | |
724 | inline bool wxWindow::GetTransparentBackground(void) const { return m_backgroundTransparent; } | |
725 | inline void wxWindow::SetReturnCode(int retCode) { m_returnCode = retCode; } | |
726 | inline int wxWindow::GetReturnCode(void) { return m_returnCode; } | |
727 | inline bool wxWindow::IsBeingDeleted(void) { return m_isBeingDeleted; } | |
728 | ||
729 | // Window specific (so far) | |
730 | wxWindow* WXDLLEXPORT wxGetActiveWindow(void); | |
731 | ||
81d66cf3 JS |
732 | // OBSOLETE |
733 | #if 0 | |
2bda0e17 KB |
734 | // Allows iteration through damaged rectangles in OnPaint |
735 | class WXDLLEXPORT wxUpdateIterator | |
736 | { | |
737 | int rects; // How many rects in Update region | |
738 | int current; // Current rectangle index | |
739 | void *rp; // current rectangle | |
740 | #ifdef __WIN32__ | |
741 | WXRGNDATA *rlist; // Storage for regiondata | |
742 | #endif | |
743 | ||
744 | public: | |
745 | wxUpdateIterator(wxWindow* wnd); | |
746 | ~wxUpdateIterator(void); | |
747 | ||
748 | operator int (void); | |
749 | wxUpdateIterator* operator ++(int); | |
750 | void GetRect(wxRectangle *rect); | |
751 | int GetX(); | |
752 | int GetY(); | |
753 | int GetW(); | |
754 | int GetH(); | |
755 | }; | |
81d66cf3 | 756 | #endif |
2bda0e17 KB |
757 | |
758 | WXDLLEXPORT_DATA(extern wxList) wxTopLevelWindows; | |
759 | ||
760 | int WXDLLEXPORT wxCharCodeMSWToWX(int keySym); | |
761 | int WXDLLEXPORT wxCharCodeWXToMSW(int id, bool *IsVirtual); | |
762 | ||
763 | // Allocates control ids | |
764 | int WXDLLEXPORT NewControlId(void); | |
765 | ||
766 | #endif | |
767 | // __WINDOWH__ |