]> git.saurik.com Git - wxWidgets.git/blame - src/palmos/window.cpp
Compile fixes for the const patch
[wxWidgets.git] / src / palmos / window.cpp
CommitLineData
ffecfa5a
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/palmos/windows.cpp
3// Purpose: wxWindow
e2731512 4// Author: William Osborne - minimal working wxPalmOS port
ba889513 5// Modified by: Wlodzimierz ABX Skiba - more than minimal functionality
ffecfa5a 6// Created: 10/13/04
e2731512 7// RCS-ID: $Id$
ba889513 8// Copyright: (c) William Osborne, Wlodzimierz Skiba
ffecfa5a
JS
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ===========================================================================
13// declarations
14// ===========================================================================
15
16// ---------------------------------------------------------------------------
17// headers
18// ---------------------------------------------------------------------------
19
ffecfa5a
JS
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#ifndef WX_PRECOMP
28 #include "wx/window.h"
29 #include "wx/accel.h"
30 #include "wx/setup.h"
31 #include "wx/menu.h"
32 #include "wx/dc.h"
33 #include "wx/dcclient.h"
34 #include "wx/dcmemory.h"
35 #include "wx/utils.h"
36 #include "wx/app.h"
37 #include "wx/layout.h"
38 #include "wx/dialog.h"
39 #include "wx/frame.h"
40 #include "wx/listbox.h"
41 #include "wx/button.h"
42 #include "wx/msgdlg.h"
43 #include "wx/settings.h"
44 #include "wx/statbox.h"
45#endif
46
47#if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__)
48 #include "wx/ownerdrw.h"
49#endif
50
51#include "wx/module.h"
52
53#if wxUSE_DRAG_AND_DROP
54 #include "wx/dnd.h"
55#endif
56
57#if wxUSE_ACCESSIBILITY
58 #include "wx/access.h"
59#endif
60
61#include "wx/menuitem.h"
62#include "wx/log.h"
63
64#if wxUSE_TOOLTIPS
65 #include "wx/tooltip.h"
66#endif
67
68#if wxUSE_CARET
69 #include "wx/caret.h"
70#endif // wxUSE_CARET
71
72#if wxUSE_SPINCTRL
73 #include "wx/spinctrl.h"
74#endif // wxUSE_SPINCTRL
75
76#include "wx/intl.h"
77#include "wx/log.h"
78
79#include "wx/textctrl.h"
80#include "wx/notebook.h"
81#include "wx/listctrl.h"
ba889513 82#include "wx/window.h"
ffecfa5a 83
20bc5ad8
WS
84#include <Window.h>
85
ffecfa5a
JS
86// ---------------------------------------------------------------------------
87// global variables
88// ---------------------------------------------------------------------------
89
90#if wxUSE_MENUS_NATIVE
91wxMenu *wxCurrentPopupMenu = NULL;
92#endif // wxUSE_MENUS_NATIVE
93
ffecfa5a
JS
94// ---------------------------------------------------------------------------
95// private functions
96// ---------------------------------------------------------------------------
97
98// ---------------------------------------------------------------------------
99// event tables
100// ---------------------------------------------------------------------------
101
102// in wxUniv/Palm this class is abstract because it doesn't have DoPopupMenu()
103// method
104#ifdef __WXUNIVERSAL__
105 IMPLEMENT_ABSTRACT_CLASS(wxWindowPalm, wxWindowBase)
106#else // __WXPalm__
107#if wxUSE_EXTENDED_RTTI
108
109// windows that are created from a parent window during its Create method, eg. spin controls in a calendar controls
110// must never been streamed out separately otherwise chaos occurs. Right now easiest is to test for negative ids, as
111// windows with negative ids never can be recreated anyway
112
113bool wxWindowStreamingCallback( const wxObject *object, wxWriter * , wxPersister * , wxxVariantArray & )
114{
115 return false;
116}
117
118IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxWindow, wxWindowBase,"wx/window.h", wxWindowStreamingCallback)
119
120// make wxWindowList known before the property is used
121
122wxCOLLECTION_TYPE_INFO( wxWindow* , wxWindowList ) ;
123
124template<> void wxCollectionToVariantArray( wxWindowList const &theList, wxxVariantArray &value)
125{
126 wxListCollectionToVariantArray<wxWindowList::compatibility_iterator>( theList , value ) ;
127}
128
129WX_DEFINE_FLAGS( wxWindowStyle )
130
131wxBEGIN_FLAGS( wxWindowStyle )
132 // new style border flags, we put them first to
133 // use them for streaming out
134
135 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
136 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
137 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
138 wxFLAGS_MEMBER(wxBORDER_RAISED)
139 wxFLAGS_MEMBER(wxBORDER_STATIC)
140 wxFLAGS_MEMBER(wxBORDER_NONE)
4055ed82 141
ffecfa5a
JS
142 // old style border flags
143 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
144 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
145 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
146 wxFLAGS_MEMBER(wxRAISED_BORDER)
147 wxFLAGS_MEMBER(wxSTATIC_BORDER)
148 wxFLAGS_MEMBER(wxBORDER)
149
150 // standard window styles
151 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
152 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
153 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
154 wxFLAGS_MEMBER(wxWANTS_CHARS)
155 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
156 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
157 wxFLAGS_MEMBER(wxVSCROLL)
158 wxFLAGS_MEMBER(wxHSCROLL)
159
160wxEND_FLAGS( wxWindowStyle )
161
162wxBEGIN_PROPERTIES_TABLE(wxWindow)
163 wxEVENT_PROPERTY( Close , wxEVT_CLOSE_WINDOW , wxCloseEvent)
164 wxEVENT_PROPERTY( Create , wxEVT_CREATE , wxWindowCreateEvent )
165 wxEVENT_PROPERTY( Destroy , wxEVT_DESTROY , wxWindowDestroyEvent )
166 // Always constructor Properties first
167
168 wxREADONLY_PROPERTY( Parent,wxWindow*, GetParent, EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
169 wxPROPERTY( Id,wxWindowID, SetId, GetId, wxID_ANY, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
170 wxPROPERTY( Position,wxPoint, SetPosition , GetPosition, wxDefaultPosition , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // pos
171 wxPROPERTY( Size,wxSize, SetSize, GetSize, wxDefaultSize , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // size
172 wxPROPERTY( WindowStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
173
174 // Then all relations of the object graph
175
176 wxREADONLY_PROPERTY_COLLECTION( Children , wxWindowList , wxWindowBase* , GetWindowChildren , wxPROP_OBJECT_GRAPH /*flags*/ , wxT("Helpstring") , wxT("group"))
177
178 // and finally all other properties
179
180 wxPROPERTY( ExtraStyle , long , SetExtraStyle , GetExtraStyle , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // extstyle
181 wxPROPERTY( BackgroundColour , wxColour , SetBackgroundColour , GetBackgroundColour , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // bg
182 wxPROPERTY( ForegroundColour , wxColour , SetForegroundColour , GetForegroundColour , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // fg
183 wxPROPERTY( Enabled , bool , Enable , IsEnabled , wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
184 wxPROPERTY( Shown , bool , Show , IsShown , wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
185#if 0
186 // possible property candidates (not in xrc) or not valid in all subclasses
187 wxPROPERTY( Title,wxString, SetTitle, GetTitle, wxT("") )
188 wxPROPERTY( Font , wxFont , SetFont , GetWindowFont , )
189 wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxT("") )
190 // MaxHeight, Width , MinHeight , Width
191 // TODO switch label to control and title to toplevels
192
193 wxPROPERTY( ThemeEnabled , bool , SetThemeEnabled , GetThemeEnabled , )
194 //wxPROPERTY( Cursor , wxCursor , SetCursor , GetCursor , )
195 // wxPROPERTY( ToolTip , wxString , SetToolTip , GetToolTipText , )
196 wxPROPERTY( AutoLayout , bool , SetAutoLayout , GetAutoLayout , )
197
198
199
200#endif
201wxEND_PROPERTIES_TABLE()
202
203wxBEGIN_HANDLERS_TABLE(wxWindow)
204wxEND_HANDLERS_TABLE()
205
206wxCONSTRUCTOR_DUMMY(wxWindow)
207
208#else
209 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
210#endif
211#endif // __WXUNIVERSAL__/__WXPalm__
212
213BEGIN_EVENT_TABLE(wxWindowPalm, wxWindowBase)
214 EVT_ERASE_BACKGROUND(wxWindowPalm::OnEraseBackground)
ffecfa5a
JS
215 EVT_INIT_DIALOG(wxWindowPalm::OnInitDialog)
216END_EVENT_TABLE()
217
218// ===========================================================================
219// implementation
220// ===========================================================================
221
222// ---------------------------------------------------------------------------
223// wxWindow utility functions
224// ---------------------------------------------------------------------------
225
226// Find an item given the MS Windows id
227wxWindow *wxWindowPalm::FindItem(long id) const
228{
229 return NULL;
230}
231
232// Find an item given the MS Windows handle
324eeecb 233wxWindow *wxWindowPalm::FindItemByWinHandle(WXWINHANDLE handle, bool controlOnly) const
ffecfa5a 234{
324eeecb 235 // TODO
ffecfa5a
JS
236 return NULL;
237}
238
ffecfa5a
JS
239// ----------------------------------------------------------------------------
240// constructors and such
241// ----------------------------------------------------------------------------
242
243void wxWindowPalm::Init()
244{
324eeecb 245 m_handle = 0;
ffecfa5a
JS
246}
247
248// Destructor
249wxWindowPalm::~wxWindowPalm()
250{
251}
252
253// real construction (Init() must have been called before!)
254bool wxWindowPalm::Create(wxWindow *parent,
324eeecb
WS
255 wxWindowID id,
256 const wxPoint& pos,
257 const wxSize& size,
258 long style,
259 const wxString& name)
ffecfa5a 260{
a152561c
WS
261 wxCHECK_MSG( parent, false, wxT("can't create wxWindow without parent") );
262
263 if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
264 return false;
265
266 parent->AddChild(this);
267
268 InheritAttributes();
269
270 return true;
ffecfa5a
JS
271}
272
20bc5ad8 273WXFORMPTR wxWindowPalm::GetFormPtr()
ffecfa5a
JS
274{
275 return FrameForm;
276}
20bc5ad8 277void wxWindowPalm::SetFormPtr(WXFORMPTR FormPtr)
ffecfa5a 278{
20bc5ad8 279 FrameForm = FormPtr;
ffecfa5a
JS
280}
281
282// ---------------------------------------------------------------------------
283// basic operations
284// ---------------------------------------------------------------------------
285
286void wxWindowPalm::SetFocus()
287{
288}
289
290void wxWindowPalm::SetFocusFromKbd()
291{
292}
293
294// Get the window with the focus
295wxWindow *wxWindowBase::DoFindFocus()
296{
297 return NULL;
298}
299
300bool wxWindowPalm::Enable(bool enable)
301{
302 return false;
303}
304
305bool wxWindowPalm::Show(bool show)
306{
307 return false;
308}
309
310// Raise the window to the top of the Z order
311void wxWindowPalm::Raise()
312{
313}
314
315// Lower the window to the bottom of the Z order
316void wxWindowPalm::Lower()
317{
318}
319
320void wxWindowPalm::SetTitle( const wxString& title)
321{
322}
323
324wxString wxWindowPalm::GetTitle() const
325{
db101bd3 326 return wxEmptyString;
ffecfa5a
JS
327}
328
329void wxWindowPalm::DoCaptureMouse()
330{
331}
332
333void wxWindowPalm::DoReleaseMouse()
334{
335}
336
337/* static */ wxWindow *wxWindowBase::GetCapture()
338{
339 return NULL;
340}
341
342bool wxWindowPalm::SetFont(const wxFont& font)
343{
344 return false;
345}
346bool wxWindowPalm::SetCursor(const wxCursor& cursor)
347{
348 return false;
349}
350
351void wxWindowPalm::WarpPointer (int x, int y)
352{
353}
354
355// ---------------------------------------------------------------------------
356// scrolling stuff
357// ---------------------------------------------------------------------------
358
359// convert wxHORIZONTAL/wxVERTICAL to SB_HORZ/SB_VERT
360static inline int wxDirToWinStyle(int orient)
361{
362 return 0;
363}
364
365int wxWindowPalm::GetScrollPos(int orient) const
366{
367 return 0;
368}
369
370// This now returns the whole range, not just the number
371// of positions that we can scroll.
372int wxWindowPalm::GetScrollRange(int orient) const
373{
374 return 0;
375}
376
377int wxWindowPalm::GetScrollThumb(int orient) const
378{
379 return 0;
380}
381
382void wxWindowPalm::SetScrollPos(int orient, int pos, bool refresh)
383{
384}
385
386// New function that will replace some of the above.
387void wxWindowPalm::SetScrollbar(int orient,
388 int pos,
389 int pageSize,
390 int range,
391 bool refresh)
392{
393}
394
395void wxWindowPalm::ScrollWindow(int dx, int dy, const wxRect *prect)
396{
397}
398
399bool wxWindowPalm::ScrollLines(int lines)
400{
401 return false;
402}
403
404bool wxWindowPalm::ScrollPages(int pages)
405{
406 return false;
407}
408
ffecfa5a
JS
409// ----------------------------------------------------------------------------
410// Style handling
411// ----------------------------------------------------------------------------
412
ffecfa5a
JS
413WXDWORD wxWindowPalm::PalmGetStyle(long flags, WXDWORD *exstyle) const
414{
415 return 0;
416}
417
418// Setup background and foreground colours correctly
419void wxWindowPalm::SetupColours()
420{
421}
422
ffecfa5a
JS
423void wxWindowPalm::OnInternalIdle()
424{
425}
426
427// Set this window to be the child of 'parent'.
428bool wxWindowPalm::Reparent(wxWindowBase *parent)
429{
430 return false;
431}
432
433void wxWindowPalm::Freeze()
434{
435}
436
437void wxWindowPalm::Thaw()
438{
439}
440
441void wxWindowPalm::Refresh(bool eraseBack, const wxRect *rect)
442{
20bc5ad8 443 WinHandle handle = (WinHandle)GetWinHandle();
324eeecb
WS
444 if(handle)
445 {
446 if(rect)
447 {
448 RectangleType dirtyRect;
d2893292
WS
449 dirtyRect.topLeft.x = rect->GetX() - 1;
450 dirtyRect.topLeft.y = rect->GetY() - 1;
451 dirtyRect.extent.x = rect->GetWidth() + 1;
452 dirtyRect.extent.y = rect->GetHeight() + 1;
324eeecb
WS
453 WinInvalidateRect(handle, &dirtyRect);
454 }
455 else
456 {
457 WinInvalidateWindow(handle);
458 }
459 }
ffecfa5a
JS
460}
461
462void wxWindowPalm::Update()
463{
464}
465
466// ---------------------------------------------------------------------------
467// drag and drop
468// ---------------------------------------------------------------------------
469
470
471#if wxUSE_DRAG_AND_DROP
472void wxWindowPalm::SetDropTarget(wxDropTarget *pDropTarget)
473{
474}
475#endif // wxUSE_DRAG_AND_DROP
476
477// old style file-manager drag&drop support: we retain the old-style
478// DragAcceptFiles in parallel with SetDropTarget.
479void wxWindowPalm::DragAcceptFiles(bool accept)
480{
481}
482
483// ----------------------------------------------------------------------------
484// tooltips
485// ----------------------------------------------------------------------------
486
487#if wxUSE_TOOLTIPS
488
489void wxWindowPalm::DoSetToolTip(wxToolTip *tooltip)
490{
491}
492
493#endif // wxUSE_TOOLTIPS
494
495// ---------------------------------------------------------------------------
496// moving and resizing
497// ---------------------------------------------------------------------------
498
499// Get total size
500void wxWindowPalm::DoGetSize(int *x, int *y) const
501{
502}
503
504// Get size *available for subwindows* i.e. excluding menu bar etc.
505void wxWindowPalm::DoGetClientSize(int *x, int *y) const
506{
507}
508
509void wxWindowPalm::DoGetPosition(int *x, int *y) const
510{
d2893292
WS
511 if(x)
512 *x = 0;
513 if(y)
514 *y = 0;
ffecfa5a
JS
515}
516
517void wxWindowPalm::DoScreenToClient(int *x, int *y) const
518{
519}
520
521void wxWindowPalm::DoClientToScreen(int *x, int *y) const
522{
523}
524
525void wxWindowPalm::DoMoveWindow(int x, int y, int width, int height)
526{
527}
528
529// set the size of the window: if the dimensions are positive, just use them,
530// but if any of them is equal to -1, it means that we must find the value for
531// it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
532// which case -1 is a valid value for x and y)
533//
534// If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
535// the width/height to best suit our contents, otherwise we reuse the current
536// width/height
537void wxWindowPalm::DoSetSize(int x, int y, int width, int height, int sizeFlags)
538{
324eeecb
WS
539 // get the current size and position...
540 int currentX, currentY;
541 GetPosition(&currentX, &currentY);
542 int currentW,currentH;
543 GetSize(&currentW, &currentH);
544
545 // ... and don't do anything (avoiding flicker) if it's already ok
546 if ( x == currentX && y == currentY &&
547 width == currentW && height == currentH )
548 {
549 return;
550 }
551
552 if ( x == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
553 x = currentX;
554 if ( y == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
555 y = currentY;
556
557 AdjustForParentClientOrigin(x, y, sizeFlags);
558
559 wxSize size = wxDefaultSize;
560 if ( width == wxDefaultCoord )
561 {
562 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
563 {
564 size = DoGetBestSize();
565 width = size.x;
566 }
567 else
568 {
569 // just take the current one
570 width = currentW;
571 }
572 }
573
574 if ( height == wxDefaultCoord )
575 {
576 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
577 {
578 if ( size.x == wxDefaultCoord )
579 {
580 size = DoGetBestSize();
581 }
582 //else: already called DoGetBestSize() above
583
584 height = size.y;
585 }
586 else
587 {
588 // just take the current one
589 height = currentH;
590 }
591 }
592
593 DoMoveWindow(x, y, width, height);
ffecfa5a
JS
594}
595
596void wxWindowPalm::DoSetClientSize(int width, int height)
597{
598}
599
ffecfa5a
JS
600// ---------------------------------------------------------------------------
601// text metrics
602// ---------------------------------------------------------------------------
603
604int wxWindowPalm::GetCharHeight() const
605{
606 return 0;
607}
608
609int wxWindowPalm::GetCharWidth() const
610{
611 return 0;
612}
613
614void wxWindowPalm::GetTextExtent(const wxString& string,
615 int *x, int *y,
616 int *descent, int *externalLeading,
617 const wxFont *theFont) const
618{
619}
620
621// ---------------------------------------------------------------------------
622// popup menu
623// ---------------------------------------------------------------------------
624
625#if wxUSE_MENUS_NATIVE
626
627// yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
628// immediately, without waiting for the next event loop iteration
629//
630// NB: this function should probably be made public later as it can almost
631// surely replace wxYield() elsewhere as well
632static void wxYieldForCommandsOnly()
633{
634}
635
636bool wxWindowPalm::DoPopupMenu(wxMenu *menu, int x, int y)
637{
638 return false;
639}
640
641#endif // wxUSE_MENUS_NATIVE
642
ffecfa5a
JS
643// ----------------------------------------------------------------------------
644// wxWindow <-> HWND map
645// ----------------------------------------------------------------------------
646
647wxWinHashTable *wxWinHandleHash = NULL;
648
324eeecb 649wxWindow *wxFindWinFromWinHandle(WXWINHANDLE handle)
ffecfa5a 650{
324eeecb 651 // TODO
ffecfa5a
JS
652 return NULL;
653}
654
655void wxRemoveHandleAssociation(wxWindowPalm *win)
656{
657}
658
659// ----------------------------------------------------------------------------
324eeecb 660// various Palm specific class dependent functions
ffecfa5a
JS
661// ----------------------------------------------------------------------------
662
ffecfa5a 663bool wxWindowPalm::PalmGetCreateWindowCoords(const wxPoint& pos,
324eeecb
WS
664 const wxSize& size,
665 int& x, int& y,
666 int& w, int& h) const
ffecfa5a
JS
667{
668 return false;
669}
670
ffecfa5a 671bool wxWindowPalm::PalmCreate(const wxChar *wclass,
324eeecb
WS
672 const wxChar *title,
673 const wxPoint& pos,
674 const wxSize& size,
675 WXDWORD style,
676 WXDWORD extendedStyle)
ffecfa5a
JS
677{
678 return false;
679}
680
681// ===========================================================================
682// Palm message handlers
683// ===========================================================================
684
ffecfa5a
JS
685// ---------------------------------------------------------------------------
686// painting
687// ---------------------------------------------------------------------------
688
ffecfa5a
JS
689// Can be called from an application's OnPaint handler
690void wxWindowPalm::OnPaint(wxPaintEvent& event)
691{
692}
693
ffecfa5a
JS
694void wxWindowPalm::OnEraseBackground(wxEraseEvent& event)
695{
696}
697
698// ---------------------------------------------------------------------------
699// moving and resizing
700// ---------------------------------------------------------------------------
701
ffecfa5a
JS
702bool wxWindowPalm::HandleMove(int x, int y)
703{
704 return false;
705}
706
707bool wxWindowPalm::HandleMoving(wxRect& rect)
708{
709 return false;
710}
711
ffecfa5a
JS
712// ---------------------------------------------------------------------------
713// joystick
714// ---------------------------------------------------------------------------
715
716bool wxWindowPalm::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags)
717{
718 return false;
719}
720
721// ---------------------------------------------------------------------------
722// scrolling
723// ---------------------------------------------------------------------------
724
725bool wxWindowPalm::PalmOnScroll(int orientation, WXWORD wParam,
324eeecb 726 WXWORD pos, WXWINHANDLE control)
4055ed82 727{
324eeecb 728 // TODO
ffecfa5a
JS
729 return false;
730}
731
732// ===========================================================================
733// global functions
734// ===========================================================================
735
324eeecb 736void wxGetCharSize(WXWINHANDLE wnd, int *x, int *y, const wxFont *the_font)
ffecfa5a 737{
324eeecb 738 // TODO
ffecfa5a
JS
739}
740
741#if wxUSE_HOTKEY
742
743bool wxWindowPalm::RegisterHotKey(int hotkeyId, int modifiers, int keycode)
744{
745 return false;
746}
747
748bool wxWindowPalm::UnregisterHotKey(int hotkeyId)
749{
750 return false;
751}
752
ffecfa5a
JS
753#endif // wxUSE_HOTKEY
754
755