]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mgl/window.h
another DMC build fix (http://thread.gmane.org/gmane.comp.lib.wxwidgets.devel/93155)
[wxWidgets.git] / include / wx / mgl / window.h
CommitLineData
32b8ec41 1/////////////////////////////////////////////////////////////////////////////
a4bbc9f7
VS
2// Name: wx/mgl/window.h
3// Purpose: wxWindow class
32b8ec41 4// Author: Vaclav Slavik
a4bbc9f7 5// RCS-ID: $Id$
52750c2e 6// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
65571936 7// Licence: wxWindows licence
32b8ec41
VZ
8/////////////////////////////////////////////////////////////////////////////
9
a4bbc9f7
VS
10#ifndef _WX_WINDOW_H_
11#define _WX_WINDOW_H_
32b8ec41 12
a4bbc9f7
VS
13// ---------------------------------------------------------------------------
14// headers
15// ---------------------------------------------------------------------------
32b8ec41 16
a4bbc9f7 17#include "wx/font.h"
32b8ec41 18
a4bbc9f7
VS
19struct window_t;
20class MGLDevCtx;
21
22// ---------------------------------------------------------------------------
23// wxWindow declaration for MGL
24// ---------------------------------------------------------------------------
32b8ec41
VZ
25
26class WXDLLEXPORT wxWindowMGL : public wxWindowBase
27{
32b8ec41 28public:
a4bbc9f7
VS
29 wxWindowMGL() { Init(); }
30
32b8ec41
VZ
31 wxWindowMGL(wxWindow *parent,
32 wxWindowID id,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 long style = 0,
a4bbc9f7
VS
36 const wxString& name = wxPanelNameStr)
37 {
38 Init();
39 Create(parent, id, pos, size, style, name);
40 }
41
42 virtual ~wxWindowMGL();
43
32b8ec41
VZ
44 bool Create(wxWindow *parent,
45 wxWindowID id,
46 const wxPoint& pos = wxDefaultPosition,
47 const wxSize& size = wxDefaultSize,
48 long style = 0,
a4bbc9f7 49 const wxString& name = wxPanelNameStr);
32b8ec41 50
46ae103b
WS
51 // implement base class (pure) virtual methods
52 // -------------------------------------------
53
54 virtual void SetLabel( const wxString &WXUNUSED(label) ) {}
55 virtual wxString GetLabel() const { return wxEmptyString; }
56
a4bbc9f7
VS
57 virtual void Raise();
58 virtual void Lower();
32b8ec41 59
46ae103b 60 virtual bool Show(bool show = true);
32b8ec41 61
a4bbc9f7 62 virtual void SetFocus();
32b8ec41 63
a4bbc9f7 64 virtual bool Reparent(wxWindowBase *newParent);
32b8ec41 65
a4bbc9f7 66 virtual void WarpPointer(int x, int y);
32b8ec41 67
46ae103b 68 virtual void Refresh(bool eraseBackground = true,
a4bbc9f7
VS
69 const wxRect *rect = (const wxRect *) NULL);
70 virtual void Update();
a4bbc9f7
VS
71 virtual void Freeze();
72 virtual void Thaw();
32b8ec41 73
a4bbc9f7 74 virtual bool SetCursor(const wxCursor &cursor);
46ae103b 75 virtual bool SetFont(const wxFont &font) { m_font = font; return true; }
32b8ec41 76
a4bbc9f7
VS
77 virtual int GetCharHeight() const;
78 virtual int GetCharWidth() const;
32b8ec41
VZ
79 virtual void GetTextExtent(const wxString& string,
80 int *x, int *y,
81 int *descent = (int *) NULL,
82 int *externalLeading = (int *) NULL,
83 const wxFont *theFont = (const wxFont *) NULL)
a4bbc9f7 84 const;
32b8ec41
VZ
85
86#if wxUSE_DRAG_AND_DROP
a4bbc9f7 87 virtual void SetDropTarget(wxDropTarget *dropTarget);
32b8ec41
VZ
88#endif // wxUSE_DRAG_AND_DROP
89
a4bbc9f7
VS
90 // Accept files for dragging
91 virtual void DragAcceptFiles(bool accept);
92
a4bbc9f7 93 virtual WXWidget GetHandle() const { return m_wnd; }
46ae103b 94
58061670 95 void SetMGLwindow_t(struct window_t *wnd);
a4bbc9f7 96
a4bbc9f7
VS
97 // implementation from now on
98 // --------------------------
46ae103b 99
8b0f8432 100 void OnInternalIdle();
a4bbc9f7
VS
101
102protected:
103 // the window handle
104 struct window_t *m_wnd;
105 // whether there should be wxEraseEvent before wxPaintEvent or not
106 // (see wxWindow::Refresh)
f41ed3c4
VS
107 bool m_frozen:1;
108 bool m_refreshAfterThaw:1;
2b260bc3 109 int m_eraseBackground;
32b8ec41
VZ
110
111 // implement the base class pure virtuals
a4bbc9f7
VS
112 virtual void DoClientToScreen( int *x, int *y ) const;
113 virtual void DoScreenToClient( int *x, int *y ) const;
114 virtual void DoGetPosition( int *x, int *y ) const;
115 virtual void DoGetSize( int *width, int *height ) const;
116 virtual void DoGetClientSize( int *width, int *height ) const;
32b8ec41
VZ
117 virtual void DoSetSize(int x, int y,
118 int width, int height,
a4bbc9f7
VS
119 int sizeFlags = wxSIZE_AUTO);
120 virtual void DoSetClientSize(int width, int height);
32b8ec41 121
4116c221
VZ
122 virtual void DoCaptureMouse();
123 virtual void DoReleaseMouse();
124
a4bbc9f7
VS
125 // move the window to the specified location and resize it: this is called
126 // from both DoSetSize() and DoSetClientSize() and would usually just call
127 // ::MoveWindow() except for composite controls which will want to arrange
128 // themselves inside the given rectangle
129 virtual void DoMoveWindow(int x, int y, int width, int height);
46ae103b 130
32b8ec41 131private:
a4bbc9f7
VS
132 // common part of all ctors
133 void Init();
134 // counterpart to SetFocus
135 void KillFocus();
46ae103b 136
a4bbc9f7
VS
137 MGLDevCtx *m_paintMGLDC;
138 friend class wxPaintDC;
139
0bd63eb6
GT
140 DECLARE_DYNAMIC_CLASS(wxWindowMGL)
141 DECLARE_NO_COPY_CLASS(wxWindowMGL)
a4bbc9f7
VS
142 DECLARE_EVENT_TABLE()
143
144public:
145 void HandlePaint(MGLDevCtx *dc);
146 // needed by wxWindowPainter
7bdc1879 147 MGLDevCtx *GetPaintMGLDC() const { return m_paintMGLDC; }
32b8ec41
VZ
148};
149
a4bbc9f7 150
46ae103b 151#endif // _WX_WINDOW_H_