]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/include/wx/fl/frmview.h
make pen/brush parameters const
[wxWidgets.git] / contrib / include / wx / fl / frmview.h
index db9868c916d044133e7153585412e8ba84025caa..1d371dc9428bf368ce77e6614be3b65595b72802 100644 (file)
 #ifndef __FRMVIEW_G__
 #define __FRMVIEW_G__
 
-#if defined(__GNUG__) && !defined(__APPLE__)
-    #pragma interface "frmview.h"
-#endif
-
 #include "wx/module.h"
 
 #if 0
@@ -63,14 +59,14 @@ public:
     void CreateLayout();
     wxFrameLayout* GetLayout();
     void SetLayout( wxFrameLayout* pLayout );
-    void SetToolUpdates( bool doToolUpdates = TRUE );
+    void SetToolUpdates( bool doToolUpdates = true );
 
 
     // hooks for specific frame-views
 
     virtual void OnInit() {}
 
-    virtual void OnSerialize( wxObjectStorage& store ) {}
+    virtual void OnSerialize( wxObjectStorage& WXUNUSED(store) ) {}
     virtual void OnActiveate() {}
     virtual void OnDeactivate() {}
 
@@ -87,7 +83,7 @@ class wxFrame;
 It is not clear what this class does. It is not used elsewhere in FL.
 */
 
-class WXDLLIMPEXP_FL wxFrameManager : wxObject
+class WXDLLIMPEXP_FL wxFrameManager : public wxObject
 {
 protected:
     wxList       mViews;
@@ -123,7 +119,7 @@ public:
 
     int GetActiveViewNo();
     wxFrameView* GetActiveView();
-    wxNode* GetActiveViewNode();
+    wxObjectList::compatibility_iterator GetActiveViewNode();
 
     wxFrameView* GetView( int viewNo );