]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stubs/frame.cpp
no message
[wxWidgets.git] / src / stubs / frame.cpp
index 3d9b5b0004e91e379159f529fd7de353be1eb852..591b59e4f4b771a940e952b3cff14edbbe329e14 100644 (file)
 #include "wx/statusbr.h"
 #include "wx/toolbar.h"
 #include "wx/menuitem.h"
+#include "wx/menu.h"
+#include "wx/dcclient.h"
+#include "wx/dialog.h"
+#include "wx/settings.h"
+#include "wx/app.h"
 
 extern wxList wxModelessWindows;
 extern wxList wxPendingDelete;
@@ -34,7 +39,7 @@ END_EVENT_TABLE()
 IMPLEMENT_DYNAMIC_CLASS(wxFrame, wxWindow)
 #endif
 
-#if USE_NATIVE_STATUSBAR
+#if wxUSE_NATIVE_STATUSBAR
 bool wxFrame::m_useNativeStatusBar = TRUE;
 #else
 bool wxFrame::m_useNativeStatusBar = FALSE;
@@ -175,11 +180,6 @@ void wxFrame::SetIcon(const wxIcon& icon)
   // TODO
 }
 
-void wxFrame::SetAcceleratorTable(const wxAcceleratorTable& accel)
-{
-    m_acceleratorTable = accel;
-}
-
 wxStatusBar *wxFrame::OnCreateStatusBar(int number, long style, wxWindowID id,
     const wxString& name)
 {
@@ -312,7 +312,7 @@ void wxFrame::OnSysColourChanged(wxSysColourChangedEvent& event)
 void wxFrame::OnSize(wxSizeEvent& event)
 {
   // if we're using constraints - do use them
-  #if USE_CONSTRAINTS
+  #if wxUSE_CONSTRAINTS
     if ( GetAutoLayout() ) {
       Layout();
       return;
@@ -512,9 +512,6 @@ void wxFrame::PositionToolBar()
     // the toolbar/status bar were added.
     // So DEFINITELY replace the line below with something appropriate.
 
-    wxCHECK_MSG( TRUE, FALSE,
-               "PositionToolBar not implemented properly, see frame.cpp" );
-
     GetClientSize(& cw, &ch);
 
     if ( GetStatusBar() )