]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/palmos/window.h | |
3 | // Purpose: wxWindow class | |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
db101bd3 | 5 | // Modified by: Wlodzimierz ABX Skiba - more than minimal functionality |
ffecfa5a | 6 | // Created: 10/13/04 |
e1d63b79 | 7 | // RCS-ID: $Id$ |
db101bd3 | 8 | // Copyright: (c) William Osborne, Wlodzimierz Skiba |
ffecfa5a JS |
9 | // Licence: wxWindows licence |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_WINDOW_H_ | |
13 | #define _WX_WINDOW_H_ | |
14 | ||
ffecfa5a JS |
15 | // --------------------------------------------------------------------------- |
16 | // headers | |
17 | // --------------------------------------------------------------------------- | |
18 | ||
ffecfa5a JS |
19 | // [at least] some version of Windows send extra mouse move messages after |
20 | // a mouse click or a key press - to temporarily fix this problem, set the | |
21 | // define below to 1 | |
22 | // | |
23 | // a better solution should be found later... | |
24 | #define wxUSE_MOUSEEVENT_HACK 0 | |
25 | ||
ffecfa5a JS |
26 | // --------------------------------------------------------------------------- |
27 | // wxWindow declaration for Palm | |
28 | // --------------------------------------------------------------------------- | |
29 | ||
53a2db12 | 30 | class WXDLLIMPEXP_CORE wxWindowPalm : public wxWindowBase |
ffecfa5a JS |
31 | { |
32 | public: | |
33 | wxWindowPalm() { Init(); } | |
34 | ||
35 | wxWindowPalm(wxWindow *parent, | |
36 | wxWindowID id, | |
37 | const wxPoint& pos = wxDefaultPosition, | |
38 | const wxSize& size = wxDefaultSize, | |
39 | long style = 0, | |
40 | const wxString& name = wxPanelNameStr) | |
41 | { | |
42 | Init(); | |
43 | Create(parent, id, pos, size, style, name); | |
44 | } | |
45 | ||
46 | virtual ~wxWindowPalm(); | |
47 | ||
48 | bool Create(wxWindow *parent, | |
49 | wxWindowID id, | |
50 | const wxPoint& pos = wxDefaultPosition, | |
51 | const wxSize& size = wxDefaultSize, | |
52 | long style = 0, | |
53 | const wxString& name = wxPanelNameStr); | |
54 | ||
55 | // implement base class pure virtuals | |
0ab48d64 WS |
56 | |
57 | virtual void SetLabel( const wxString& label); | |
58 | virtual wxString GetLabel() const; | |
ffecfa5a JS |
59 | |
60 | virtual void Raise(); | |
61 | virtual void Lower(); | |
62 | ||
e951b8e4 WS |
63 | virtual bool Show( bool show = true ); |
64 | virtual bool Enable( bool enable = true ); | |
ffecfa5a JS |
65 | |
66 | virtual void SetFocus(); | |
67 | virtual void SetFocusFromKbd(); | |
68 | ||
69 | virtual bool Reparent(wxWindowBase *newParent); | |
70 | ||
71 | virtual void WarpPointer(int x, int y); | |
72 | ||
e951b8e4 | 73 | virtual void Refresh( bool eraseBackground = true, |
324eeecb | 74 | const wxRect *rect = NULL ); |
ffecfa5a | 75 | virtual void Update(); |
ffecfa5a | 76 | |
ffecfa5a JS |
77 | virtual bool SetCursor( const wxCursor &cursor ); |
78 | virtual bool SetFont( const wxFont &font ); | |
79 | ||
80 | virtual int GetCharHeight() const; | |
81 | virtual int GetCharWidth() const; | |
82 | virtual void GetTextExtent(const wxString& string, | |
83 | int *x, int *y, | |
d3b9f782 VZ |
84 | int *descent = NULL, |
85 | int *externalLeading = NULL, | |
ffecfa5a JS |
86 | const wxFont *theFont = (const wxFont *) NULL) |
87 | const; | |
88 | ||
89 | #if wxUSE_MENUS_NATIVE | |
90 | virtual bool DoPopupMenu( wxMenu *menu, int x, int y ); | |
91 | #endif // wxUSE_MENUS_NATIVE | |
92 | ||
93 | virtual void SetScrollbar( int orient, int pos, int thumbVisible, | |
e951b8e4 WS |
94 | int range, bool refresh = true ); |
95 | virtual void SetScrollPos( int orient, int pos, bool refresh = true ); | |
ffecfa5a JS |
96 | virtual int GetScrollPos( int orient ) const; |
97 | virtual int GetScrollThumb( int orient ) const; | |
98 | virtual int GetScrollRange( int orient ) const; | |
99 | virtual void ScrollWindow( int dx, int dy, | |
d3b9f782 | 100 | const wxRect* rect = NULL ); |
ffecfa5a JS |
101 | |
102 | virtual bool ScrollLines(int lines); | |
103 | virtual bool ScrollPages(int pages); | |
104 | ||
105 | #if wxUSE_DRAG_AND_DROP | |
106 | virtual void SetDropTarget( wxDropTarget *dropTarget ); | |
107 | #endif // wxUSE_DRAG_AND_DROP | |
108 | ||
109 | // Accept files for dragging | |
110 | virtual void DragAcceptFiles(bool accept); | |
111 | ||
ffecfa5a JS |
112 | #ifndef __WXUNIVERSAL__ |
113 | // Native resource loading (implemented in src/Palm/nativdlg.cpp) | |
114 | // FIXME: should they really be all virtual? | |
115 | virtual bool LoadNativeDialog(wxWindow* parent, wxWindowID& id); | |
116 | virtual bool LoadNativeDialog(wxWindow* parent, const wxString& name); | |
117 | wxWindow* GetWindowChild1(wxWindowID id); | |
118 | wxWindow* GetWindowChild(wxWindowID id); | |
119 | #endif // __WXUNIVERSAL__ | |
120 | ||
121 | #if wxUSE_HOTKEY | |
122 | // install and deinstall a system wide hotkey | |
123 | virtual bool RegisterHotKey(int hotkeyId, int modifiers, int keycode); | |
124 | virtual bool UnregisterHotKey(int hotkeyId); | |
125 | #endif // wxUSE_HOTKEY | |
126 | ||
127 | // implementation from now on | |
128 | // -------------------------- | |
129 | ||
130 | // simple accessors | |
131 | // ---------------- | |
132 | ||
e2fc40b4 VZ |
133 | WXHWND GetHWND() const { return m_hWnd; } |
134 | void SetHWND(WXHWND hWnd) { m_hWnd = hWnd; } | |
135 | virtual WXWidget GetHandle() const { return GetHWND(); } | |
ffecfa5a JS |
136 | |
137 | // event handlers | |
138 | // -------------- | |
139 | ||
140 | void OnEraseBackground(wxEraseEvent& event); | |
141 | void OnPaint(wxPaintEvent& event); | |
142 | ||
143 | public: | |
ffecfa5a | 144 | wxWindow *FindItem(long id) const; |
324eeecb | 145 | wxWindow *FindItemByWinHandle(WXWINHANDLE handle, bool controlOnly = false) const; |
ffecfa5a | 146 | |
e951b8e4 | 147 | // Palm only: true if this control is part of the main control |
324eeecb | 148 | virtual bool ContainsWinHandle(WXWINHANDLE WXUNUSED(handle)) const { return false; }; |
ffecfa5a JS |
149 | |
150 | // translate wxWidgets style flags for this control into the Windows style | |
151 | // and optional extended style for the corresponding native control | |
152 | // | |
153 | // this is the function that should be overridden in the derived classes, | |
154 | // but you will mostly use PalmGetCreateWindowFlags() below | |
155 | virtual WXDWORD PalmGetStyle(long flags, WXDWORD *exstyle = NULL) const ; | |
156 | ||
157 | // get the Palm window flags corresponding to wxWidgets ones | |
158 | // | |
159 | // the functions returns the flags (WS_XXX) directly and puts the ext | |
160 | // (WS_EX_XXX) flags into the provided pointer if not NULL | |
161 | WXDWORD PalmGetCreateWindowFlags(WXDWORD *exflags = NULL) const | |
162 | { return PalmGetStyle(GetWindowStyle(), exflags); } | |
163 | ||
164 | // translate wxWidgets coords into Windows ones suitable to be passed to | |
165 | // ::CreateWindow() | |
166 | // | |
e951b8e4 | 167 | // returns true if non default coords are returned, false otherwise |
ffecfa5a JS |
168 | bool PalmGetCreateWindowCoords(const wxPoint& pos, |
169 | const wxSize& size, | |
170 | int& x, int& y, | |
171 | int& w, int& h) const; | |
172 | ||
ffecfa5a JS |
173 | // creates the window of specified Windows class with given style, extended |
174 | // style, title and geometry (default values | |
175 | // | |
e951b8e4 | 176 | // returns true if the window has been created, false if creation failed |
ffecfa5a JS |
177 | bool PalmCreate(const wxChar *wclass, |
178 | const wxChar *title = NULL, | |
179 | const wxPoint& pos = wxDefaultPosition, | |
180 | const wxSize& size = wxDefaultSize, | |
181 | WXDWORD style = 0, | |
182 | WXDWORD exendedStyle = 0); | |
183 | ||
ffecfa5a | 184 | #ifndef __WXUNIVERSAL__ |
324eeecb WS |
185 | // Create an appropriate wxWindow from a WinHandle |
186 | virtual wxWindow* CreateWindowFromWinHandle(wxWindow* parent, WXWINHANDLE handle); | |
ffecfa5a | 187 | |
324eeecb WS |
188 | // Make sure the window style reflects the WinHandle style (roughly) |
189 | virtual void AdoptAttributesFromWinHandle(); | |
ffecfa5a JS |
190 | #endif // __WXUNIVERSAL__ |
191 | ||
192 | // Setup background and foreground colours correctly | |
193 | virtual void SetupColours(); | |
194 | ||
ffecfa5a JS |
195 | // ------------------------------------------------------------------------ |
196 | // internal handlers for Palm messages: all handlers return a boolean value: | |
e951b8e4 | 197 | // true means that the handler processed the event and false that it didn't |
ffecfa5a JS |
198 | // ------------------------------------------------------------------------ |
199 | ||
ffecfa5a JS |
200 | // scroll event (both horizontal and vertical) |
201 | virtual bool PalmOnScroll(int orientation, WXWORD nSBCode, | |
324eeecb | 202 | WXWORD pos, WXWINHANDLE control); |
ffecfa5a JS |
203 | |
204 | // virtual function for implementing internal idle | |
205 | // behaviour | |
206 | virtual void OnInternalIdle() ; | |
207 | ||
208 | protected: | |
209 | // the window handle | |
e2fc40b4 | 210 | WXHWND m_hWnd; |
20bc5ad8 | 211 | WXFORMPTR FrameForm; |
e951b8e4 | 212 | |
20bc5ad8 WS |
213 | WXFORMPTR GetFormPtr(); |
214 | void SetFormPtr(WXFORMPTR FormPtr); | |
ffecfa5a | 215 | |
ffecfa5a JS |
216 | // additional (Palm specific) flags |
217 | bool m_mouseInWindow:1; | |
218 | bool m_lastKeydownProcessed:1; | |
219 | ||
220 | // the size of one page for scrolling | |
221 | int m_xThumbSize; | |
222 | int m_yThumbSize; | |
223 | ||
224 | #if wxUSE_MOUSEEVENT_HACK | |
225 | // the coordinates of the last mouse event and the type of it | |
226 | long m_lastMouseX, | |
227 | m_lastMouseY; | |
228 | int m_lastMouseEvent; | |
229 | #endif // wxUSE_MOUSEEVENT_HACK | |
230 | ||
231 | WXHMENU m_hMenu; // Menu, if any | |
232 | ||
233 | // implement the base class pure virtuals | |
234 | virtual void DoClientToScreen( int *x, int *y ) const; | |
235 | virtual void DoScreenToClient( int *x, int *y ) const; | |
236 | virtual void DoGetPosition( int *x, int *y ) const; | |
237 | virtual void DoGetSize( int *width, int *height ) const; | |
238 | virtual void DoGetClientSize( int *width, int *height ) const; | |
239 | virtual void DoSetSize(int x, int y, | |
240 | int width, int height, | |
241 | int sizeFlags = wxSIZE_AUTO); | |
242 | virtual void DoSetClientSize(int width, int height); | |
243 | ||
244 | virtual void DoCaptureMouse(); | |
245 | virtual void DoReleaseMouse(); | |
246 | ||
247 | // move the window to the specified location and resize it: this is called | |
248 | // from both DoSetSize() and DoSetClientSize() and would usually just call | |
249 | // ::MoveWindow() except for composite controls which will want to arrange | |
250 | // themselves inside the given rectangle | |
251 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
252 | ||
253 | #if wxUSE_TOOLTIPS | |
254 | virtual void DoSetToolTip( wxToolTip *tip ); | |
255 | ||
256 | // process TTN_NEEDTEXT message properly (i.e. fixing the bugs in | |
257 | // comctl32.dll in our code -- see the function body for more info) | |
258 | bool HandleTooltipNotify(WXUINT code, | |
259 | WXLPARAM lParam, | |
260 | const wxString& ttip); | |
261 | #endif // wxUSE_TOOLTIPS | |
262 | ||
ffecfa5a JS |
263 | private: |
264 | // common part of all ctors | |
265 | void Init(); | |
266 | ||
267 | // the (non-virtual) handlers for the events | |
268 | bool HandleMove(int x, int y); | |
269 | bool HandleMoving(wxRect& rect); | |
270 | bool HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags); | |
271 | ||
ffecfa5a | 272 | DECLARE_DYNAMIC_CLASS(wxWindowPalm) |
c0c133e1 | 273 | wxDECLARE_NO_COPY_CLASS(wxWindowPalm); |
ffecfa5a JS |
274 | DECLARE_EVENT_TABLE() |
275 | }; | |
276 | ||
ffecfa5a JS |
277 | // ---------------------------------------------------------------------------- |
278 | // global objects | |
279 | // ---------------------------------------------------------------------------- | |
280 | ||
281 | // notice that this hash must be defined after wxWindow declaration as it | |
282 | // needs to "see" its dtor and not just forward declaration | |
283 | #include "wx/hash.h" | |
284 | ||
324eeecb | 285 | // pseudo-template WinHandle <-> wxWindow hash table |
ffecfa5a | 286 | WX_DECLARE_HASH(wxWindowPalm, wxWindowList, wxWinHashTable); |
ffecfa5a JS |
287 | |
288 | extern wxWinHashTable *wxWinHandleHash; | |
289 | ||
290 | #endif | |
291 | // _WX_WINDOW_H_ |