1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/frame.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"
33 #include "wx/dialog.h"
34 #include "wx/settings.h"
35 #include "wx/dcclient.h"
39 #include "wx/toolbar.h"
40 #include "wx/statusbr.h"
41 #include "wx/menuitem.h"
44 #include "wx/generic/statusbr.h"
46 #ifdef __WXUNIVERSAL__
47 #include "wx/univ/theme.h"
48 #include "wx/univ/colschem.h"
49 #endif // __WXUNIVERSAL__
54 // ----------------------------------------------------------------------------
56 // ----------------------------------------------------------------------------
58 #if wxUSE_MENUS_NATIVE
59 extern wxMenu
*wxCurrentPopupMenu
;
60 #endif // wxUSE_MENUS_NATIVE
62 // ----------------------------------------------------------------------------
64 // ----------------------------------------------------------------------------
66 BEGIN_EVENT_TABLE(wxFrame
, wxFrameBase
)
67 EVT_PAINT(wxFrame::OnPaint
)
70 #if wxUSE_EXTENDED_RTTI
71 WX_DEFINE_FLAGS( wxFrameStyle
)
73 wxBEGIN_FLAGS( wxFrameStyle
)
74 // new style border flags, we put them first to
75 // use them for streaming out
76 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
77 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
78 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
79 wxFLAGS_MEMBER(wxBORDER_RAISED
)
80 wxFLAGS_MEMBER(wxBORDER_STATIC
)
81 wxFLAGS_MEMBER(wxBORDER_NONE
)
83 // old style border flags
84 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
85 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
86 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
87 wxFLAGS_MEMBER(wxRAISED_BORDER
)
88 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
89 wxFLAGS_MEMBER(wxBORDER
)
91 // standard window styles
92 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
93 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
94 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
95 wxFLAGS_MEMBER(wxWANTS_CHARS
)
96 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
97 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
98 wxFLAGS_MEMBER(wxVSCROLL
)
99 wxFLAGS_MEMBER(wxHSCROLL
)
102 wxFLAGS_MEMBER(wxSTAY_ON_TOP
)
103 wxFLAGS_MEMBER(wxCAPTION
)
104 #if WXWIN_COMPATIBILITY_2_6
105 wxFLAGS_MEMBER(wxTHICK_FRAME
)
106 #endif // WXWIN_COMPATIBILITY_2_6
107 wxFLAGS_MEMBER(wxSYSTEM_MENU
)
108 wxFLAGS_MEMBER(wxRESIZE_BORDER
)
109 #if WXWIN_COMPATIBILITY_2_6
110 wxFLAGS_MEMBER(wxRESIZE_BOX
)
111 #endif // WXWIN_COMPATIBILITY_2_6
112 wxFLAGS_MEMBER(wxCLOSE_BOX
)
113 wxFLAGS_MEMBER(wxMAXIMIZE_BOX
)
114 wxFLAGS_MEMBER(wxMINIMIZE_BOX
)
116 wxFLAGS_MEMBER(wxFRAME_TOOL_WINDOW
)
117 wxFLAGS_MEMBER(wxFRAME_FLOAT_ON_PARENT
)
119 wxFLAGS_MEMBER(wxFRAME_SHAPED
)
121 wxEND_FLAGS( wxFrameStyle
)
123 IMPLEMENT_DYNAMIC_CLASS_XTI(wxFrame
, wxTopLevelWindow
,"wx/frame.h")
125 wxBEGIN_PROPERTIES_TABLE(wxFrame
)
126 wxEVENT_PROPERTY( Menu
, wxEVT_COMMAND_MENU_SELECTED
, wxCommandEvent
)
128 wxPROPERTY( Title
,wxString
, SetTitle
, GetTitle
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
129 wxPROPERTY_FLAGS( WindowStyle
, wxFrameStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
130 wxPROPERTY( MenuBar
, wxMenuBar
* , SetMenuBar
, GetMenuBar
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
131 wxEND_PROPERTIES_TABLE()
133 wxBEGIN_HANDLERS_TABLE(wxFrame
)
134 wxEND_HANDLERS_TABLE()
136 wxCONSTRUCTOR_6( wxFrame
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Title
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
139 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxTopLevelWindow
)
142 // ============================================================================
144 // ============================================================================
146 // ----------------------------------------------------------------------------
147 // creation/destruction
148 // ----------------------------------------------------------------------------
154 bool wxFrame::Create(wxWindow
*parent
,
156 const wxString
& title
,
160 const wxString
& name
)
162 if ( !wxTopLevelWindow::Create(parent
, id
, title
, pos
, size
, style
, name
) )
172 // ----------------------------------------------------------------------------
173 // wxFrame client size calculations
174 // ----------------------------------------------------------------------------
176 void wxFrame::DoSetClientSize(int width
, int height
)
180 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
181 void wxFrame::DoGetClientSize(int *x
, int *y
) const
183 wxSize size
= GetSize();
184 wxPoint pos
= GetClientAreaOrigin();
185 *x
= size
.x
- pos
.x
- 1;
186 *y
= size
.y
- pos
.y
- 1;
189 // ----------------------------------------------------------------------------
190 // wxFrame: various geometry-related functions
191 // ----------------------------------------------------------------------------
193 void wxFrame::Raise()
197 #if wxUSE_MENUS_NATIVE
199 void wxFrame::InternalSetMenuBar()
203 bool wxFrame::HandleMenuOpen()
208 m_frameMenuBar
->LoadMenu();
212 bool wxFrame::HandleMenuSelect(WXEVENTPTR event
)
214 const EventType
*palmEvent
= (EventType
*)event
;
215 const int ItemID
= palmEvent
->data
.menu
.itemID
;
220 const int item
= m_frameMenuBar
->ProcessCommand(ItemID
);
224 wxCommandEvent
commandEvent(wxEVT_COMMAND_MENU_SELECTED
, item
);
225 commandEvent
.SetEventObject(this);
227 GetEventHandler()->ProcessEvent(commandEvent
);
231 #endif // wxUSE_MENUS_NATIVE
233 void wxFrame::OnPaint(wxPaintEvent
& event
)
236 if( m_frameStatusBar
)
237 m_frameStatusBar
->DrawStatusBar();
238 #endif // wxUSE_STATUSBAR
241 // Pass true to show full screen, false to restore.
242 bool wxFrame::ShowFullScreen(bool show
, long style
)
247 // ----------------------------------------------------------------------------
248 // tool/status bar stuff
249 // ----------------------------------------------------------------------------
253 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
258 void wxFrame::PositionToolBar()
262 #endif // wxUSE_TOOLBAR
264 // ----------------------------------------------------------------------------
265 // frame state (iconized/maximized/...)
266 // ----------------------------------------------------------------------------
268 // propagate our state change to all child frames: this allows us to emulate X
269 // Windows behaviour where child frames float independently of the parent one
270 // on the desktop, but are iconized/restored with it
271 void wxFrame::IconizeChildFrames(bool bIconize
)
275 // ----------------------------------------------------------------------------
276 // wxFrame size management: we exclude the areas taken by menu/status/toolbars
277 // from the client area, so the client area is what's really available for the
279 // ----------------------------------------------------------------------------
281 // get the origin of the client area in the client coordinates
282 wxPoint
wxFrame::GetClientAreaOrigin() const
284 // there is no API to get client area but we know
285 // it starts after titlebar and 1 pixel of form border
286 Coord maxY
= wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
),
291 if(!FrmPointInTitle((FormType
*)GetForm(),X
,Y
))
292 return wxPoint(X
,Y
+1);