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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "frame.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
36 #include "wx/dialog.h"
37 #include "wx/settings.h"
38 #include "wx/dcclient.h"
44 #include "wx/statusbr.h"
45 #include "wx/generic/statusbr.h"
46 #endif // wxUSE_STATUSBAR
49 #include "wx/toolbar.h"
50 #endif // wxUSE_TOOLBAR
52 #include "wx/menuitem.h"
55 #ifdef __WXUNIVERSAL__
56 #include "wx/univ/theme.h"
57 #include "wx/univ/colschem.h"
58 #endif // __WXUNIVERSAL__
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
67 #if wxUSE_MENUS_NATIVE
68 extern wxMenu
*wxCurrentPopupMenu
;
69 #endif // wxUSE_MENUS_NATIVE
71 // ----------------------------------------------------------------------------
73 // ----------------------------------------------------------------------------
75 BEGIN_EVENT_TABLE(wxFrame
, wxFrameBase
)
76 EVT_PAINT(wxFrame::OnPaint
)
79 #if wxUSE_EXTENDED_RTTI
80 WX_DEFINE_FLAGS( wxFrameStyle
)
82 wxBEGIN_FLAGS( wxFrameStyle
)
83 // new style border flags, we put them first to
84 // use them for streaming out
85 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
86 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
87 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
88 wxFLAGS_MEMBER(wxBORDER_RAISED
)
89 wxFLAGS_MEMBER(wxBORDER_STATIC
)
90 wxFLAGS_MEMBER(wxBORDER_NONE
)
92 // old style border flags
93 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
94 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
95 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
96 wxFLAGS_MEMBER(wxRAISED_BORDER
)
97 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
98 wxFLAGS_MEMBER(wxBORDER
)
100 // standard window styles
101 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
102 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
103 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
104 wxFLAGS_MEMBER(wxWANTS_CHARS
)
105 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
106 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
107 wxFLAGS_MEMBER(wxVSCROLL
)
108 wxFLAGS_MEMBER(wxHSCROLL
)
111 wxFLAGS_MEMBER(wxSTAY_ON_TOP
)
112 wxFLAGS_MEMBER(wxCAPTION
)
113 wxFLAGS_MEMBER(wxTHICK_FRAME
)
114 wxFLAGS_MEMBER(wxSYSTEM_MENU
)
115 wxFLAGS_MEMBER(wxRESIZE_BORDER
)
116 wxFLAGS_MEMBER(wxRESIZE_BOX
)
117 wxFLAGS_MEMBER(wxCLOSE_BOX
)
118 wxFLAGS_MEMBER(wxMAXIMIZE_BOX
)
119 wxFLAGS_MEMBER(wxMINIMIZE_BOX
)
121 wxFLAGS_MEMBER(wxFRAME_TOOL_WINDOW
)
122 wxFLAGS_MEMBER(wxFRAME_FLOAT_ON_PARENT
)
124 wxFLAGS_MEMBER(wxFRAME_SHAPED
)
126 wxEND_FLAGS( wxFrameStyle
)
128 IMPLEMENT_DYNAMIC_CLASS_XTI(wxFrame
, wxTopLevelWindow
,"wx/frame.h")
130 wxBEGIN_PROPERTIES_TABLE(wxFrame
)
131 wxEVENT_PROPERTY( Menu
, wxEVT_COMMAND_MENU_SELECTED
, wxCommandEvent
)
133 wxPROPERTY( Title
,wxString
, SetTitle
, GetTitle
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
134 wxPROPERTY_FLAGS( WindowStyle
, wxFrameStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
135 wxPROPERTY( MenuBar
, wxMenuBar
* , SetMenuBar
, GetMenuBar
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
136 wxEND_PROPERTIES_TABLE()
138 wxBEGIN_HANDLERS_TABLE(wxFrame
)
139 wxEND_HANDLERS_TABLE()
141 wxCONSTRUCTOR_6( wxFrame
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Title
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
144 IMPLEMENT_DYNAMIC_CLASS(wxFrame
, wxTopLevelWindow
)
147 // ============================================================================
149 // ============================================================================
151 // ----------------------------------------------------------------------------
152 // creation/destruction
153 // ----------------------------------------------------------------------------
159 bool wxFrame::Create(wxWindow
*parent
,
161 const wxString
& title
,
165 const wxString
& name
)
167 if ( !wxTopLevelWindow::Create(parent
, id
, title
, pos
, size
, style
, name
) )
177 // ----------------------------------------------------------------------------
178 // wxFrame client size calculations
179 // ----------------------------------------------------------------------------
181 void wxFrame::DoSetClientSize(int width
, int height
)
185 // Get size *available for subwindows* i.e. excluding menu bar, toolbar etc.
186 void wxFrame::DoGetClientSize(int *x
, int *y
) const
188 wxSize size
= GetSize();
189 wxPoint pos
= GetClientAreaOrigin();
190 *x
= size
.x
- pos
.x
- 1;
191 *y
= size
.y
- pos
.y
- 1;
194 // ----------------------------------------------------------------------------
195 // wxFrame: various geometry-related functions
196 // ----------------------------------------------------------------------------
198 void wxFrame::Raise()
202 #if wxUSE_MENUS_NATIVE
204 void wxFrame::InternalSetMenuBar()
208 bool wxFrame::HandleMenuOpen()
213 m_frameMenuBar
->LoadMenu();
217 bool wxFrame::HandleMenuSelect(WXEVENTPTR event
)
219 const EventType
*palmEvent
= (EventType
*)event
;
220 const int ItemID
= palmEvent
->data
.menu
.itemID
;
225 const int item
= m_frameMenuBar
->ProcessCommand(ItemID
);
229 wxCommandEvent
commandEvent(wxEVT_COMMAND_MENU_SELECTED
, item
);
230 commandEvent
.SetEventObject(this);
232 GetEventHandler()->ProcessEvent(commandEvent
);
236 #endif // wxUSE_MENUS_NATIVE
238 void wxFrame::OnPaint(wxPaintEvent
& event
)
241 if( m_frameStatusBar
)
242 m_frameStatusBar
->DrawStatusBar();
243 #endif // wxUSE_STATUSBAR
246 // Pass true to show full screen, false to restore.
247 bool wxFrame::ShowFullScreen(bool show
, long style
)
252 // ----------------------------------------------------------------------------
253 // tool/status bar stuff
254 // ----------------------------------------------------------------------------
258 wxToolBar
* wxFrame::CreateToolBar(long style
, wxWindowID id
, const wxString
& name
)
263 void wxFrame::PositionToolBar()
267 #endif // wxUSE_TOOLBAR
269 // ----------------------------------------------------------------------------
270 // frame state (iconized/maximized/...)
271 // ----------------------------------------------------------------------------
273 // propagate our state change to all child frames: this allows us to emulate X
274 // Windows behaviour where child frames float independently of the parent one
275 // on the desktop, but are iconized/restored with it
276 void wxFrame::IconizeChildFrames(bool bIconize
)
280 // ----------------------------------------------------------------------------
281 // wxFrame size management: we exclude the areas taken by menu/status/toolbars
282 // from the client area, so the client area is what's really available for the
284 // ----------------------------------------------------------------------------
286 // get the origin of the client area in the client coordinates
287 wxPoint
wxFrame::GetClientAreaOrigin() const
289 // there is no API to get client area but we know
290 // it starts after titlebar and 1 pixel of form border
291 Coord maxY
= wxSystemSettings::GetMetric(wxSYS_SCREEN_Y
),
296 if(!FrmPointInTitle((FormType
*)GetForm(),X
,Y
))
297 return wxPoint(X
,Y
+1);