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