- inline wxMiniFrame(void) {}
- inline wxMiniFrame(wxWindow *parent,
- wxWindowID id,
- const wxString& title,
- const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize,
- long style = wxDEFAULT_FRAME|wxTINY_CAPTION_HORIZ,
- const wxString& name = wxFrameNameStr)
- {
- Create(parent, id, title, pos, size, style, name);
- }
- bool Create(wxWindow *parent,
- wxWindowID id,
- const wxString& title,
- const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize,
- long style = wxDEFAULT_FRAME|wxTINY_CAPTION_HORIZ,
- const wxString& name = wxFrameNameStr);
-
- // implementation
-
- bool m_isDragging;
- int m_oldX,m_oldY;
- int m_diffX,m_diffY;
-
- void DrawFrame( int x, int y );
- void OnPaint( wxPaintEvent &event );
- void OnMouse( wxMouseEvent &event );
+ wxMiniFrame() {}
+ wxMiniFrame(wxWindow *parent,
+ wxWindowID id,
+ const wxString& title,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxDEFAULT_FRAME_STYLE | wxTINY_CAPTION_HORIZ,
+ const wxString& name = wxFrameNameStr)
+ {
+ Create(parent, id, title, pos, size, style, name);
+ }
+
+ bool Create(wxWindow *parent,
+ wxWindowID id,
+ const wxString& title,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxDEFAULT_FRAME_STYLE | wxTINY_CAPTION_HORIZ,
+ const wxString& name = wxFrameNameStr);