#include "wx/defs.h"
#include "wx/object.h"
#include "wx/window.h"
+#include "wx/icon.h"
//-----------------------------------------------------------------------------
// classes
virtual void Centre( int direction = wxHORIZONTAL );
virtual void GetClientSize( int *width, int *height ) const;
+ wxSize GetClientSize() const { int w, h; GetClientSize(& w, & h); return wxSize(w, h); }
+
virtual void SetClientSize( int const width, int const height );
virtual void SetSize( int x, int y, int width, int height,
void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
void OnSize( wxSizeEvent &event );
void OnCloseWindow( wxCloseEvent& event );
- void OnIdle(wxIdleEvent& event);
+ void OnIdle(wxIdleEvent& event );
// implementation
wxToolBar *m_frameToolBar;
wxString m_title;
wxIcon m_icon;
+ int m_miniEdge,m_miniTitle;
DECLARE_EVENT_TABLE()
};