Moved Get/SetToolBar down into frame.h/cpp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@325 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1998-07-23 14:25:44 +00:00
parent 30474825bb
commit 73e7daa02e
4 changed files with 25 additions and 11 deletions

View File

@@ -63,10 +63,6 @@ class WXDLLEXPORT wxMDIParentFrame: public wxFrame
void OnSize(wxSizeEvent& event);
void OnActivate(wxActivateEvent& event);
// Toolbar (currently, for use by Windows MDI parent frames ONLY)
virtual inline void SetToolBar(wxWindow *toolbar) { m_frameToolBar = toolbar; }
virtual inline wxWindow *GetToolBar(void) const { return m_frameToolBar; }
void SetMenuBar(wxMenuBar *menu_bar);
// Gets the size available for subwindows after menu size, toolbar size
@@ -113,7 +109,6 @@ class WXDLLEXPORT wxMDIParentFrame: public wxFrame
WXHMENU m_windowMenu;
bool m_parentFrameActive; // TRUE if MDI Frame is intercepting
// commands, not child
wxWindow * m_frameToolBar ;
DECLARE_EVENT_TABLE()
};