]>
Commit | Line | Data |
---|---|---|
83df96d6 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1b88201f | 2 | // Name: wx/x11/minifram.h |
83df96d6 JS |
3 | // Purpose: wxMiniFrame class. A small frame for e.g. floating toolbars. |
4 | // If there is no equivalent on your platform, just make it a | |
5 | // normal frame. | |
6 | // Author: Julian Smart | |
7 | // Modified by: | |
8 | // Created: 17/09/98 | |
83df96d6 | 9 | // Copyright: (c) Julian Smart |
1b88201f | 10 | // Licence: wxWindows licence |
83df96d6 JS |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
13 | #ifndef _WX_MINIFRAM_H_ | |
14 | #define _WX_MINIFRAM_H_ | |
15 | ||
83df96d6 JS |
16 | #include "wx/frame.h" |
17 | ||
53a2db12 | 18 | class WXDLLIMPEXP_CORE wxMiniFrame: public wxFrame { |
1b88201f | 19 | |
83df96d6 | 20 | DECLARE_DYNAMIC_CLASS(wxMiniFrame) |
1b88201f | 21 | |
83df96d6 JS |
22 | public: |
23 | inline wxMiniFrame() {} | |
24 | inline wxMiniFrame(wxWindow *parent, | |
25 | wxWindowID id, | |
26 | const wxString& title, | |
27 | const wxPoint& pos = wxDefaultPosition, | |
28 | const wxSize& size = wxDefaultSize, | |
7282b067 | 29 | long style = wxDEFAULT_FRAME_STYLE|wxTINY_CAPTION, |
83df96d6 JS |
30 | const wxString& name = wxFrameNameStr) |
31 | { | |
32 | // Use wxFrame constructor in absence of more specific code. | |
33 | Create(parent, id, title, pos, size, style, name); | |
34 | } | |
1b88201f | 35 | |
d3c7fc99 | 36 | virtual ~wxMiniFrame() {} |
83df96d6 JS |
37 | protected: |
38 | }; | |
39 | ||
40 | #endif | |
1b88201f | 41 | // _WX_MINIFRAM_H_ |