| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: minifram.h |
| 3 | // Purpose: wxMiniFrame class |
| 4 | // Author: Robert Roebling |
| 5 | // RCS-ID: $Id$ |
| 6 | // Copyright: (c) Robert Roebling |
| 7 | // Licence: wxWindows licence |
| 8 | ///////////////////////////////////////////////////////////////////////////// |
| 9 | |
| 10 | #ifndef _WX_GTK_MINIFRAME_H_ |
| 11 | #define _WX_GTK_MINIFRAME_H_ |
| 12 | |
| 13 | #include "wx/bitmap.h" |
| 14 | #include "wx/frame.h" |
| 15 | |
| 16 | //----------------------------------------------------------------------------- |
| 17 | // wxMiniFrame |
| 18 | //----------------------------------------------------------------------------- |
| 19 | |
| 20 | class WXDLLIMPEXP_CORE wxMiniFrame: public wxFrame |
| 21 | { |
| 22 | DECLARE_DYNAMIC_CLASS(wxMiniFrame) |
| 23 | |
| 24 | public: |
| 25 | wxMiniFrame() {} |
| 26 | wxMiniFrame(wxWindow *parent, |
| 27 | wxWindowID id, |
| 28 | const wxString& title, |
| 29 | const wxPoint& pos = wxDefaultPosition, |
| 30 | const wxSize& size = wxDefaultSize, |
| 31 | long style = wxCAPTION | wxRESIZE_BORDER, |
| 32 | const wxString& name = wxFrameNameStr) |
| 33 | { |
| 34 | Create(parent, id, title, pos, size, style, name); |
| 35 | } |
| 36 | |
| 37 | bool Create(wxWindow *parent, |
| 38 | wxWindowID id, |
| 39 | const wxString& title, |
| 40 | const wxPoint& pos = wxDefaultPosition, |
| 41 | const wxSize& size = wxDefaultSize, |
| 42 | long style = wxCAPTION | wxRESIZE_BORDER, |
| 43 | const wxString& name = wxFrameNameStr); |
| 44 | |
| 45 | virtual void SetTitle( const wxString &title ); |
| 46 | |
| 47 | protected: |
| 48 | virtual void DoSetSizeHints( int minW, int minH, |
| 49 | int maxW, int maxH, |
| 50 | int incW, int incH ); |
| 51 | virtual void DoGetClientSize(int* width, int* height) const; |
| 52 | |
| 53 | // implementation |
| 54 | public: |
| 55 | bool m_isDragging; |
| 56 | int m_oldX,m_oldY; |
| 57 | int m_diffX,m_diffY; |
| 58 | wxBitmap m_closeButton; |
| 59 | int m_miniEdge; |
| 60 | int m_miniTitle; |
| 61 | }; |
| 62 | |
| 63 | #endif // _WX_GTK_MINIFRAME_H_ |