1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/windows.cpp
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - more than minimal functionality
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/window.h"
33 #include "wx/dcclient.h"
34 #include "wx/dcmemory.h"
37 #include "wx/layout.h"
38 #include "wx/dialog.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"
47 #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__)
48 #include "wx/ownerdrw.h"
51 #include "wx/module.h"
53 #if wxUSE_DRAG_AND_DROP
57 #if wxUSE_ACCESSIBILITY
58 #include "wx/access.h"
61 #include "wx/menuitem.h"
65 #include "wx/tooltip.h"
73 #include "wx/spinctrl.h"
74 #endif // wxUSE_SPINCTRL
79 #include "wx/textctrl.h"
80 #include "wx/notebook.h"
81 #include "wx/listctrl.h"
82 #include "wx/window.h"
86 // ---------------------------------------------------------------------------
88 // ---------------------------------------------------------------------------
90 #if wxUSE_MENUS_NATIVE
91 wxMenu
*wxCurrentPopupMenu
= NULL
;
92 #endif // wxUSE_MENUS_NATIVE
94 // ---------------------------------------------------------------------------
96 // ---------------------------------------------------------------------------
98 // ---------------------------------------------------------------------------
100 // ---------------------------------------------------------------------------
102 // in wxUniv/Palm this class is abstract because it doesn't have DoPopupMenu()
104 #ifdef __WXUNIVERSAL__
105 IMPLEMENT_ABSTRACT_CLASS(wxWindowPalm
, wxWindowBase
)
107 #if wxUSE_EXTENDED_RTTI
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
113 bool wxWindowStreamingCallback( const wxObject
*object
, wxWriter
* , wxPersister
* , wxxVariantArray
& )
118 IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxWindow
, wxWindowBase
,"wx/window.h", wxWindowStreamingCallback
)
120 // make wxWindowList known before the property is used
122 wxCOLLECTION_TYPE_INFO( wxWindow
* , wxWindowList
) ;
124 template<> void wxCollectionToVariantArray( wxWindowList
const &theList
, wxxVariantArray
&value
)
126 wxListCollectionToVariantArray
<wxWindowList::compatibility_iterator
>( theList
, value
) ;
129 WX_DEFINE_FLAGS( wxWindowStyle
)
131 wxBEGIN_FLAGS( wxWindowStyle
)
132 // new style border flags, we put them first to
133 // use them for streaming out
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
)
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
)
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
)
160 wxEND_FLAGS( wxWindowStyle
)
162 wxBEGIN_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
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
174 // Then all relations of the object graph
176 wxREADONLY_PROPERTY_COLLECTION( Children
, wxWindowList
, wxWindowBase
* , GetWindowChildren
, wxPROP_OBJECT_GRAPH
/*flags*/ , wxT("Helpstring") , wxT("group"))
178 // and finally all other properties
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"))
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
193 wxPROPERTY( ThemeEnabled
, bool , SetThemeEnabled
, GetThemeEnabled
, )
194 //wxPROPERTY( Cursor , wxCursor , SetCursor , GetCursor , )
195 // wxPROPERTY( ToolTip , wxString , SetToolTip , GetToolTipText , )
196 wxPROPERTY( AutoLayout
, bool , SetAutoLayout
, GetAutoLayout
, )
201 wxEND_PROPERTIES_TABLE()
203 wxBEGIN_HANDLERS_TABLE(wxWindow
)
204 wxEND_HANDLERS_TABLE()
206 wxCONSTRUCTOR_DUMMY(wxWindow
)
209 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
211 #endif // __WXUNIVERSAL__/__WXPalm__
213 BEGIN_EVENT_TABLE(wxWindowPalm
, wxWindowBase
)
214 EVT_ERASE_BACKGROUND(wxWindowPalm::OnEraseBackground
)
215 EVT_INIT_DIALOG(wxWindowPalm::OnInitDialog
)
218 // ===========================================================================
220 // ===========================================================================
222 // ---------------------------------------------------------------------------
223 // wxWindow utility functions
224 // ---------------------------------------------------------------------------
226 // Find an item given the MS Windows id
227 wxWindow
*wxWindowPalm::FindItem(long id
) const
232 // Find an item given the MS Windows handle
233 wxWindow
*wxWindowPalm::FindItemByWinHandle(WXWINHANDLE handle
, bool controlOnly
) const
239 // ----------------------------------------------------------------------------
240 // constructors and such
241 // ----------------------------------------------------------------------------
243 void wxWindowPalm::Init()
249 wxWindowPalm::~wxWindowPalm()
253 // real construction (Init() must have been called before!)
254 bool wxWindowPalm::Create(wxWindow
*parent
,
259 const wxString
& name
)
261 wxCHECK_MSG( parent
, false, wxT("can't create wxWindow without parent") );
263 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
266 parent
->AddChild(this);
273 WXFORMPTR
wxWindowPalm::GetFormPtr()
277 void wxWindowPalm::SetFormPtr(WXFORMPTR FormPtr
)
282 // ---------------------------------------------------------------------------
284 // ---------------------------------------------------------------------------
286 void wxWindowPalm::SetFocus()
290 void wxWindowPalm::SetFocusFromKbd()
294 // Get the window with the focus
295 wxWindow
*wxWindowBase::DoFindFocus()
300 bool wxWindowPalm::Enable(bool enable
)
305 bool wxWindowPalm::Show(bool show
)
310 // Raise the window to the top of the Z order
311 void wxWindowPalm::Raise()
315 // Lower the window to the bottom of the Z order
316 void wxWindowPalm::Lower()
320 void wxWindowPalm::SetLabel( const wxString
& WXUNUSED(label
))
324 wxString
wxWindowPalm::GetLabel() const
326 return wxEmptyString
;
329 void wxWindowPalm::DoCaptureMouse()
333 void wxWindowPalm::DoReleaseMouse()
337 /* static */ wxWindow
*wxWindowBase::GetCapture()
342 bool wxWindowPalm::SetFont(const wxFont
& font
)
346 bool wxWindowPalm::SetCursor(const wxCursor
& cursor
)
351 void wxWindowPalm::WarpPointer (int x
, int y
)
355 // ---------------------------------------------------------------------------
357 // ---------------------------------------------------------------------------
359 // convert wxHORIZONTAL/wxVERTICAL to SB_HORZ/SB_VERT
360 static inline int wxDirToWinStyle(int orient
)
365 int wxWindowPalm::GetScrollPos(int orient
) const
370 // This now returns the whole range, not just the number
371 // of positions that we can scroll.
372 int wxWindowPalm::GetScrollRange(int orient
) const
377 int wxWindowPalm::GetScrollThumb(int orient
) const
382 void wxWindowPalm::SetScrollPos(int orient
, int pos
, bool refresh
)
386 // New function that will replace some of the above.
387 void wxWindowPalm::SetScrollbar(int orient
,
395 void wxWindowPalm::ScrollWindow(int dx
, int dy
, const wxRect
*prect
)
399 bool wxWindowPalm::ScrollLines(int lines
)
404 bool wxWindowPalm::ScrollPages(int pages
)
409 // ----------------------------------------------------------------------------
411 // ----------------------------------------------------------------------------
413 WXDWORD
wxWindowPalm::PalmGetStyle(long flags
, WXDWORD
*exstyle
) const
418 // Setup background and foreground colours correctly
419 void wxWindowPalm::SetupColours()
423 void wxWindowPalm::OnInternalIdle()
427 // Set this window to be the child of 'parent'.
428 bool wxWindowPalm::Reparent(wxWindowBase
*parent
)
433 void wxWindowPalm::Freeze()
437 void wxWindowPalm::Thaw()
441 void wxWindowPalm::Refresh(bool eraseBack
, const wxRect
*rect
)
443 WinHandle handle
= (WinHandle
)GetWinHandle();
448 RectangleType dirtyRect
;
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;
453 WinInvalidateRect(handle
, &dirtyRect
);
457 WinInvalidateWindow(handle
);
462 void wxWindowPalm::Update()
466 // ---------------------------------------------------------------------------
468 // ---------------------------------------------------------------------------
471 #if wxUSE_DRAG_AND_DROP
472 void wxWindowPalm::SetDropTarget(wxDropTarget
*pDropTarget
)
475 #endif // wxUSE_DRAG_AND_DROP
477 // old style file-manager drag&drop support: we retain the old-style
478 // DragAcceptFiles in parallel with SetDropTarget.
479 void wxWindowPalm::DragAcceptFiles(bool accept
)
483 // ----------------------------------------------------------------------------
485 // ----------------------------------------------------------------------------
489 void wxWindowPalm::DoSetToolTip(wxToolTip
*tooltip
)
493 #endif // wxUSE_TOOLTIPS
495 // ---------------------------------------------------------------------------
496 // moving and resizing
497 // ---------------------------------------------------------------------------
500 void wxWindowPalm::DoGetSize(int *x
, int *y
) const
504 // Get size *available for subwindows* i.e. excluding menu bar etc.
505 void wxWindowPalm::DoGetClientSize(int *x
, int *y
) const
509 void wxWindowPalm::DoGetPosition(int *x
, int *y
) const
517 void wxWindowPalm::DoScreenToClient(int *x
, int *y
) const
521 void wxWindowPalm::DoClientToScreen(int *x
, int *y
) const
525 void wxWindowPalm::DoMoveWindow(int x
, int y
, int width
, int height
)
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)
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
537 void wxWindowPalm::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
539 // get the current size and position...
540 int currentX
, currentY
;
541 GetPosition(¤tX
, ¤tY
);
542 int currentW
,currentH
;
543 GetSize(¤tW
, ¤tH
);
545 // ... and don't do anything (avoiding flicker) if it's already ok
546 if ( x
== currentX
&& y
== currentY
&&
547 width
== currentW
&& height
== currentH
)
552 if ( x
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
554 if ( y
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
557 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
559 wxSize size
= wxDefaultSize
;
560 if ( width
== wxDefaultCoord
)
562 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
564 size
= DoGetBestSize();
569 // just take the current one
574 if ( height
== wxDefaultCoord
)
576 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
578 if ( size
.x
== wxDefaultCoord
)
580 size
= DoGetBestSize();
582 //else: already called DoGetBestSize() above
588 // just take the current one
593 DoMoveWindow(x
, y
, width
, height
);
596 void wxWindowPalm::DoSetClientSize(int width
, int height
)
600 // ---------------------------------------------------------------------------
602 // ---------------------------------------------------------------------------
604 int wxWindowPalm::GetCharHeight() const
609 int wxWindowPalm::GetCharWidth() const
614 void wxWindowPalm::GetTextExtent(const wxString
& string
,
616 int *descent
, int *externalLeading
,
617 const wxFont
*theFont
) const
621 // ---------------------------------------------------------------------------
623 // ---------------------------------------------------------------------------
625 #if wxUSE_MENUS_NATIVE
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
630 // NB: this function should probably be made public later as it can almost
631 // surely replace wxYield() elsewhere as well
632 static void wxYieldForCommandsOnly()
636 bool wxWindowPalm::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
641 #endif // wxUSE_MENUS_NATIVE
643 // ----------------------------------------------------------------------------
644 // wxWindow <-> HWND map
645 // ----------------------------------------------------------------------------
647 wxWinHashTable
*wxWinHandleHash
= NULL
;
649 wxWindow
*wxFindWinFromWinHandle(WXWINHANDLE handle
)
655 void wxRemoveHandleAssociation(wxWindowPalm
*win
)
659 // ----------------------------------------------------------------------------
660 // various Palm specific class dependent functions
661 // ----------------------------------------------------------------------------
663 bool wxWindowPalm::PalmGetCreateWindowCoords(const wxPoint
& pos
,
666 int& w
, int& h
) const
671 bool wxWindowPalm::PalmCreate(const wxChar
*wclass
,
676 WXDWORD extendedStyle
)
681 // ===========================================================================
682 // Palm message handlers
683 // ===========================================================================
685 // ---------------------------------------------------------------------------
687 // ---------------------------------------------------------------------------
689 // Can be called from an application's OnPaint handler
690 void wxWindowPalm::OnPaint(wxPaintEvent
& event
)
694 void wxWindowPalm::OnEraseBackground(wxEraseEvent
& event
)
698 // ---------------------------------------------------------------------------
699 // moving and resizing
700 // ---------------------------------------------------------------------------
702 bool wxWindowPalm::HandleMove(int x
, int y
)
707 bool wxWindowPalm::HandleMoving(wxRect
& rect
)
712 // ---------------------------------------------------------------------------
714 // ---------------------------------------------------------------------------
716 bool wxWindowPalm::HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
721 // ---------------------------------------------------------------------------
723 // ---------------------------------------------------------------------------
725 bool wxWindowPalm::PalmOnScroll(int orientation
, WXWORD wParam
,
726 WXWORD pos
, WXWINHANDLE control
)
732 // ===========================================================================
734 // ===========================================================================
736 void wxGetCharSize(WXWINHANDLE wnd
, int *x
, int *y
, const wxFont
*the_font
)
743 bool wxWindowPalm::RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
)
748 bool wxWindowPalm::UnregisterHotKey(int hotkeyId
)
753 #endif // wxUSE_HOTKEY