1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/framecmn.cpp
3 // Purpose: common (for all platforms) wxFrame functions
4 // Author: Julian Smart, Vadim Zeitlin
7 // Copyright: (c) 1998 Robert Roebling and Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
30 #include "wx/menuitem.h"
31 #include "wx/dcclient.h"
32 #include "wx/toolbar.h"
33 #include "wx/statusbr.h"
36 // ----------------------------------------------------------------------------
38 // ----------------------------------------------------------------------------
40 #if wxUSE_MENUS && wxUSE_STATUSBAR
42 BEGIN_EVENT_TABLE(wxFrameBase
, wxTopLevelWindow
)
43 EVT_MENU_OPEN(wxFrameBase::OnMenuOpen
)
44 EVT_MENU_CLOSE(wxFrameBase::OnMenuClose
)
46 EVT_MENU_HIGHLIGHT_ALL(wxFrameBase::OnMenuHighlight
)
49 #endif // wxUSE_MENUS && wxUSE_STATUSBAR
51 // ============================================================================
53 // ============================================================================
55 // ----------------------------------------------------------------------------
56 // construction/destruction
57 // ----------------------------------------------------------------------------
59 wxFrameBase::wxFrameBase()
62 m_frameMenuBar
= NULL
;
66 m_frameToolBar
= NULL
;
67 #endif // wxUSE_TOOLBAR
70 m_frameStatusBar
= NULL
;
71 #endif // wxUSE_STATUSBAR
76 wxFrameBase::~wxFrameBase()
78 // this destructor is required for Darwin
81 wxFrame
*wxFrameBase::New(wxWindow
*parent
,
83 const wxString
& title
,
89 return new wxFrame(parent
, id
, title
, pos
, size
, style
, name
);
92 void wxFrameBase::DeleteAllBars()
97 delete m_frameMenuBar
;
98 m_frameMenuBar
= (wxMenuBar
*) NULL
;
100 #endif // wxUSE_MENUS
103 if ( m_frameStatusBar
)
105 delete m_frameStatusBar
;
106 m_frameStatusBar
= (wxStatusBar
*) NULL
;
108 #endif // wxUSE_STATUSBAR
111 if ( m_frameToolBar
)
113 delete m_frameToolBar
;
114 m_frameToolBar
= (wxToolBar
*) NULL
;
116 #endif // wxUSE_TOOLBAR
119 bool wxFrameBase::IsOneOfBars(const wxWindow
*win
) const
122 if ( win
== GetMenuBar() )
124 #endif // wxUSE_MENUS
127 if ( win
== GetStatusBar() )
129 #endif // wxUSE_STATUSBAR
132 if ( win
== GetToolBar() )
134 #endif // wxUSE_TOOLBAR
141 // ----------------------------------------------------------------------------
142 // wxFrame size management: we exclude the areas taken by menu/status/toolbars
143 // from the client area, so the client area is what's really available for the
145 // ----------------------------------------------------------------------------
147 // get the origin of the client area in the client coordinates
148 wxPoint
wxFrameBase::GetClientAreaOrigin() const
150 wxPoint pt
= wxTopLevelWindow::GetClientAreaOrigin();
152 #if wxUSE_TOOLBAR && !defined(__WXUNIVERSAL__)
153 wxToolBar
*toolbar
= GetToolBar();
154 if ( toolbar
&& toolbar
->IsShown() )
157 toolbar
->GetSize(&w
, &h
);
159 if ( toolbar
->GetWindowStyleFlag() & wxTB_VERTICAL
)
168 #endif // wxUSE_TOOLBAR
174 void wxFrameBase::SendSizeEvent()
176 wxSizeEvent
event( GetSize(), GetId() );
177 event
.SetEventObject( this );
178 GetEventHandler()->AddPendingEvent( event
);
182 // ----------------------------------------------------------------------------
184 // ----------------------------------------------------------------------------
186 bool wxFrameBase::ProcessCommand(int id
)
189 wxMenuBar
*bar
= GetMenuBar();
193 wxCommandEvent
commandEvent(wxEVT_COMMAND_MENU_SELECTED
, id
);
194 commandEvent
.SetEventObject(this);
196 wxMenuItem
*item
= bar
->FindItem(id
);
199 if (!item
->IsEnabled())
202 if ((item
->GetKind() == wxITEM_RADIO
) && item
->IsChecked() )
205 if (item
->IsCheckable())
210 commandEvent
.SetInt(item
->IsChecked());
214 return HandleWindowEvent(commandEvent
);
215 #else // !wxUSE_MENUS
219 #endif // wxUSE_MENUS/!wxUSE_MENUS
222 // Do the UI update processing for this window. This is
223 // provided for the application to call if it wants to
224 // force a UI update, particularly for the menus and toolbar.
225 void wxFrameBase::UpdateWindowUI(long flags
)
227 wxWindowBase::UpdateWindowUI(flags
);
231 GetToolBar()->UpdateWindowUI(flags
);
237 if ((flags
& wxUPDATE_UI_FROMIDLE
) && !wxUSE_IDLEMENUUPDATES
)
239 // If coming from an idle event, we only
240 // want to update the menus if we're
241 // in the wxUSE_IDLEMENUUPDATES configuration:
242 // so if we're not, do nothing
247 #endif // wxUSE_MENUS
250 // ----------------------------------------------------------------------------
251 // event handlers for status bar updates from menus
252 // ----------------------------------------------------------------------------
254 #if wxUSE_MENUS && wxUSE_STATUSBAR
256 void wxFrameBase::OnMenuHighlight(wxMenuEvent
& event
)
259 (void)ShowMenuHelp(event
.GetMenuId());
260 #endif // wxUSE_STATUSBAR
263 #if !wxUSE_IDLEMENUUPDATES
264 void wxFrameBase::OnMenuOpen(wxMenuEvent
& event
)
266 void wxFrameBase::OnMenuOpen(wxMenuEvent
& WXUNUSED(event
))
269 #if !wxUSE_IDLEMENUUPDATES
270 DoMenuUpdates(event
.GetMenu());
271 #endif // !wxUSE_IDLEMENUUPDATES
274 void wxFrameBase::OnMenuClose(wxMenuEvent
& WXUNUSED(event
))
276 DoGiveHelp(wxEmptyString
, false);
279 #endif // wxUSE_MENUS && wxUSE_STATUSBAR
281 // Implement internal behaviour (menu updating on some platforms)
282 void wxFrameBase::OnInternalIdle()
284 wxTopLevelWindow::OnInternalIdle();
286 #if wxUSE_MENUS && wxUSE_IDLEMENUUPDATES
287 if (wxUpdateUIEvent::CanUpdate(this))
292 // ----------------------------------------------------------------------------
294 // ----------------------------------------------------------------------------
298 wxStatusBar
* wxFrameBase::CreateStatusBar(int number
,
301 const wxString
& name
)
303 // the main status bar can only be created once (or else it should be
304 // deleted before calling CreateStatusBar() again)
305 wxCHECK_MSG( !m_frameStatusBar
, (wxStatusBar
*)NULL
,
306 wxT("recreating status bar in wxFrame") );
308 SetStatusBar(OnCreateStatusBar(number
, style
, id
, name
));
310 return m_frameStatusBar
;
313 wxStatusBar
*wxFrameBase::OnCreateStatusBar(int number
,
316 const wxString
& name
)
318 wxStatusBar
*statusBar
= new wxStatusBar(this, id
, style
, name
);
320 statusBar
->SetFieldsCount(number
);
325 void wxFrameBase::SetStatusText(const wxString
& text
, int number
)
327 wxCHECK_RET( m_frameStatusBar
!= NULL
, wxT("no statusbar to set text for") );
329 m_frameStatusBar
->SetStatusText(text
, number
);
332 void wxFrameBase::SetStatusWidths(int n
, const int widths_field
[] )
334 wxCHECK_RET( m_frameStatusBar
!= NULL
, wxT("no statusbar to set widths for") );
336 m_frameStatusBar
->SetStatusWidths(n
, widths_field
);
341 void wxFrameBase::PushStatusText(const wxString
& text
, int number
)
343 wxCHECK_RET( m_frameStatusBar
!= NULL
, wxT("no statusbar to set text for") );
345 m_frameStatusBar
->PushStatusText(text
, number
);
348 void wxFrameBase::PopStatusText(int number
)
350 wxCHECK_RET( m_frameStatusBar
!= NULL
, wxT("no statusbar to set text for") );
352 m_frameStatusBar
->PopStatusText(number
);
355 bool wxFrameBase::ShowMenuHelp(int menuId
)
358 // if no help string found, we will clear the status bar text
360 if ( menuId
!= wxID_SEPARATOR
&& menuId
!= -3 /* wxID_TITLE */ )
362 const wxMenuItem
* const item
= FindItemInMenuBar(menuId
);
364 helpString
= item
->GetHelp();
366 // notice that it's ok if we don't find the item because it might
367 // belong to the popup menu, so don't assert here
370 DoGiveHelp(helpString
, true);
372 return !helpString
.empty();
373 #else // !wxUSE_MENUS
375 #endif // wxUSE_MENUS/!wxUSE_MENUS
378 void wxFrameBase::SetStatusBar(wxStatusBar
*statBar
)
380 bool hadBar
= m_frameStatusBar
!= NULL
;
381 m_frameStatusBar
= statBar
;
383 if ( (m_frameStatusBar
!= NULL
) != hadBar
)
391 #endif // wxUSE_STATUSBAR
393 #if wxUSE_MENUS || wxUSE_TOOLBAR
394 void wxFrameBase::DoGiveHelp(const wxString
& help
, bool show
)
397 if ( m_statusBarPane
< 0 )
399 // status bar messages disabled
403 wxStatusBar
*statbar
= GetStatusBar();
410 // remember the old status bar text if this is the first time we're
411 // called since the menu has been opened as we're going to overwrite it
412 // in our DoGiveHelp() and we want to restore it when the menu is
415 // note that it would be logical to do this in OnMenuOpen() but under
416 // MSW we get an EVT_MENU_HIGHLIGHT before EVT_MENU_OPEN, strangely
417 // enough, and so this doesn't work and instead we use the ugly trick
418 // with using special m_oldStatusText value as "menu opened" (but it is
419 // arguably better than adding yet another member variable to wxFrame
421 if ( m_oldStatusText
.empty() )
423 m_oldStatusText
= statbar
->GetStatusText(m_statusBarPane
);
424 if ( m_oldStatusText
.empty() )
426 // use special value to prevent us from doing this the next time
427 m_oldStatusText
+= _T('\0');
433 else // hide help, restore the original text
435 text
= m_oldStatusText
;
436 m_oldStatusText
.clear();
439 statbar
->SetStatusText(text
, m_statusBarPane
);
443 #endif // wxUSE_STATUSBAR
445 #endif // wxUSE_MENUS || wxUSE_TOOLBAR
448 // ----------------------------------------------------------------------------
450 // ----------------------------------------------------------------------------
454 wxToolBar
* wxFrameBase::CreateToolBar(long style
,
456 const wxString
& name
)
458 // the main toolbar can't be recreated (unless it was explicitly deleted
460 wxCHECK_MSG( !m_frameToolBar
, (wxToolBar
*)NULL
,
461 wxT("recreating toolbar in wxFrame") );
467 // NB: we don't specify the default value in the method declaration
469 // a) this allows us to have different defaults for different
470 // platforms (even if we don't have them right now)
471 // b) we don't need to include wx/toolbar.h in the header then
472 style
= wxBORDER_NONE
| wxTB_HORIZONTAL
| wxTB_FLAT
;
475 SetToolBar(OnCreateToolBar(style
, id
, name
));
477 return m_frameToolBar
;
480 wxToolBar
* wxFrameBase::OnCreateToolBar(long style
,
482 const wxString
& name
)
484 #if defined(__WXWINCE__) && defined(__POCKETPC__)
485 return new wxToolMenuBar(this, id
,
486 wxDefaultPosition
, wxDefaultSize
,
489 return new wxToolBar(this, id
,
490 wxDefaultPosition
, wxDefaultSize
,
495 void wxFrameBase::SetToolBar(wxToolBar
*toolbar
)
497 bool hadBar
= m_frameToolBar
!= NULL
;
498 m_frameToolBar
= toolbar
;
500 if ( (m_frameToolBar
!= NULL
) != hadBar
)
508 #endif // wxUSE_TOOLBAR
510 // ----------------------------------------------------------------------------
512 // ----------------------------------------------------------------------------
517 void wxFrameBase::DoMenuUpdates(wxMenu
* menu
)
521 wxEvtHandler
* source
= GetEventHandler();
522 menu
->UpdateUI(source
);
526 wxMenuBar
* bar
= GetMenuBar();
532 void wxFrameBase::DetachMenuBar()
534 if ( m_frameMenuBar
)
536 m_frameMenuBar
->Detach();
537 m_frameMenuBar
= NULL
;
541 void wxFrameBase::AttachMenuBar(wxMenuBar
*menubar
)
545 menubar
->Attach((wxFrame
*)this);
546 m_frameMenuBar
= menubar
;
550 void wxFrameBase::SetMenuBar(wxMenuBar
*menubar
)
552 if ( menubar
== GetMenuBar() )
560 this->AttachMenuBar(menubar
);
563 const wxMenuItem
*wxFrameBase::FindItemInMenuBar(int menuId
) const
565 const wxMenuBar
* const menuBar
= GetMenuBar();
567 return menuBar
? menuBar
->FindItem(menuId
) : NULL
;
570 #endif // wxUSE_MENUS