1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/toplevel.cpp
3 // Purpose: implements wxTopLevelWindow for Palm OS
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - more than minimal functionality
8 // Copyright: (c) William Osborne <wbo@freeshell.org>, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "toplevel.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/toplevel.h"
34 #include "wx/dialog.h"
35 #include "wx/string.h"
39 #include "wx/containr.h" // wxSetFocusToChild()
42 #include "wx/module.h"
44 #include "wx/display.h"
46 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
50 // the name of the default wxWidgets class
51 extern const wxChar
*wxCanvasClassName
;
53 // Pointer to the currently active frame for the form event handler.
54 wxTopLevelWindowPalm
* ActiveParentFrame
;
56 // ============================================================================
57 // wxTopLevelWindowPalm implementation
58 // ============================================================================
60 BEGIN_EVENT_TABLE(wxTopLevelWindowPalm
, wxTopLevelWindowBase
)
61 EVT_ACTIVATE(wxTopLevelWindowPalm::OnActivate
)
64 // ----------------------------------------------------------------------------
65 // wxTopLevelWindowPalm creation
66 // ----------------------------------------------------------------------------
68 void wxTopLevelWindowPalm::Init()
72 WXDWORD
wxTopLevelWindowPalm::PalmGetStyle(long style
, WXDWORD
*exflags
) const
77 WXHWND
wxTopLevelWindowPalm::PalmGetParent() const
82 bool wxTopLevelWindowPalm::Create(wxWindow
*parent
,
84 const wxString
& title
,
90 // this is a check for limitation mentioned before FrameFormHandleEvent() code
91 if(wxTopLevelWindows
.GetCount()>0)
94 ActiveParentFrame
=NULL
;
96 wxTopLevelWindows
.Append(this);
99 parent
->AddChild(this);
101 m_windowId
= id
== wxID_ANY
? NewControlId() : id
;
103 WinConstraintsType constraints
;
104 memset(&constraints
, 0, sizeof(WinConstraintsType
));
105 constraints
.x_pos
= ( pos
.x
== wxDefaultCoord
) ? winUndefConstraint
: pos
.x
;
106 constraints
.y_pos
= ( pos
.y
== wxDefaultCoord
) ? winUndefConstraint
: pos
.y
;
107 constraints
.x_min
= winUndefConstraint
;
108 constraints
.x_max
= winMaxConstraint
;
109 constraints
.x_pref
= ( size
.x
== wxDefaultCoord
) ? winUndefConstraint
: size
.x
;
110 constraints
.y_min
= winUndefConstraint
;
111 constraints
.y_max
= winMaxConstraint
;
112 constraints
.y_pref
= ( size
.y
== wxDefaultCoord
) ? winUndefConstraint
: size
.y
;
114 FrameForm
= FrmNewFormWithConstraints(
129 FrmSetEventHandler(FrameForm
,FrameFormHandleEvent
);
131 FrmSetActiveForm(FrameForm
);
133 ActiveParentFrame
=this;
138 wxTopLevelWindowPalm::~wxTopLevelWindowPalm()
142 // ----------------------------------------------------------------------------
143 // wxTopLevelWindowPalm showing
144 // ----------------------------------------------------------------------------
146 void wxTopLevelWindowPalm::DoShowWindow(int nShowCmd
)
150 bool wxTopLevelWindowPalm::Show(bool show
)
152 FrmDrawForm(FrameForm
);
154 wxPaintEvent
event(m_windowId
);
155 event
.SetEventObject(this);
156 GetEventHandler()->ProcessEvent(event
);
161 // ----------------------------------------------------------------------------
162 // wxTopLevelWindowPalm maximize/minimize
163 // ----------------------------------------------------------------------------
165 void wxTopLevelWindowPalm::Maximize(bool maximize
)
169 bool wxTopLevelWindowPalm::IsMaximized() const
174 void wxTopLevelWindowPalm::Iconize(bool iconize
)
178 bool wxTopLevelWindowPalm::IsIconized() const
183 void wxTopLevelWindowPalm::Restore()
187 // ----------------------------------------------------------------------------
188 // wxTopLevelWindowPalm fullscreen
189 // ----------------------------------------------------------------------------
191 bool wxTopLevelWindowPalm::ShowFullScreen(bool show
, long style
)
196 // ----------------------------------------------------------------------------
197 // wxTopLevelWindowPalm misc
198 // ----------------------------------------------------------------------------
200 void wxTopLevelWindowPalm::SetIcon(const wxIcon
& icon
)
204 void wxTopLevelWindowPalm::SetIcons(const wxIconBundle
& icons
)
208 bool wxTopLevelWindowPalm::EnableCloseButton(bool enable
)
215 bool wxTopLevelWindowPalm::SetShape(const wxRegion
& region
)
220 #endif // !__WXWINCE__
222 // ----------------------------------------------------------------------------
223 // wxTopLevelWindow event handling
224 // ----------------------------------------------------------------------------
226 void wxTopLevelWindowPalm::OnActivate(wxActivateEvent
& event
)
230 /* Palm OS Event handler for the window
232 * This function *must* be located outside of the wxTopLevelWindow class because
233 * the Palm OS API expects a standalone C function as a callback. You cannot
234 * pass a pointer to a member function of a C++ class as a callback because the
235 * prototypes don't match. (A member function has a hidden "this" pointer as
236 * its first parameter).
238 * This event handler uses a global pointer to the current wxFrame to process
239 * the events generated by the Palm OS form API. I know this is ugly, but right
240 * now I can't think of any other way to deal with this problem. If someone
241 * finds a better solution, please let me know. My email address is
244 static Boolean
FrameFormHandleEvent(EventType
* pEvent
)
246 wxFrame
* frame
= wxDynamicCast(ActiveParentFrame
,wxFrame
);
247 Boolean fHandled
= false;
252 switch (pEvent
->eType
) {
255 #if wxUSE_MENUS_NATIVE
257 fHandled
= frame
->HandleMenuOpen();
260 ItemID
= pEvent
->data
.menu
.itemID
;
261 fHandled
= frame
->HandleMenuSelect(ItemID
);