we no longer need wxFrameNative

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-10-19 20:35:05 +00:00
parent af15babd51
commit 0d53fc3442
14 changed files with 264 additions and 300 deletions

View File

@@ -27,15 +27,15 @@ class wxToolBar;
class wxStatusBar;
//-----------------------------------------------------------------------------
// wxFrameGTK
// wxFrame
//-----------------------------------------------------------------------------
class wxFrameGTK : public wxFrameBase
class wxFrame : public wxFrameBase
{
public:
// construction
wxFrameGTK() { Init(); }
wxFrameGTK(wxWindow *parent,
wxFrame() { Init(); }
wxFrame(wxWindow *parent,
wxWindowID id,
const wxString& title,
const wxPoint& pos = wxDefaultPosition,
@@ -56,7 +56,7 @@ public:
long style = wxDEFAULT_FRAME_STYLE,
const wxString& name = wxFrameNameStr);
virtual ~wxFrameGTK();
virtual ~wxFrame();
#if wxUSE_STATUSBAR
virtual void PositionStatusBar();
@@ -98,6 +98,8 @@ protected:
virtual void DetachMenuBar();
virtual void AttachMenuBar(wxMenuBar *menubar);
#endif // wxUSE_MENUS_NATIVE
DECLARE_DYNAMIC_CLASS(wxFrame)
};
#endif // __GTKFRAMEH__