]>
Commit | Line | Data |
---|---|---|
0dbd6262 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: minifram.h | |
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. | |
a31a5f85 | 6 | // Author: Stefan Csomor |
0dbd6262 | 7 | // Modified by: |
a31a5f85 | 8 | // Created: 1998-01-01 |
0dbd6262 | 9 | // RCS-ID: $Id$ |
a31a5f85 | 10 | // Copyright: (c) Stefan Csomor |
e40298d5 | 11 | // Licence: wxWindows licence |
0dbd6262 SC |
12 | ///////////////////////////////////////////////////////////////////////////// |
13 | ||
14 | #ifndef _WX_MINIFRAM_H_ | |
15 | #define _WX_MINIFRAM_H_ | |
16 | ||
12028905 | 17 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
0dbd6262 SC |
18 | #pragma interface "minifram.h" |
19 | #endif | |
20 | ||
21 | #include "wx/frame.h" | |
22 | ||
23 | class WXDLLEXPORT wxMiniFrame: public wxFrame { | |
24 | ||
25 | DECLARE_DYNAMIC_CLASS(wxMiniFrame) | |
26 | ||
27 | public: | |
28 | inline wxMiniFrame() {} | |
29 | inline wxMiniFrame(wxWindow *parent, | |
30 | wxWindowID id, | |
31 | const wxString& title, | |
32 | const wxPoint& pos = wxDefaultPosition, | |
33 | const wxSize& size = wxDefaultSize, | |
34 | long style = wxDEFAULT_FRAME_STYLE|wxTINY_CAPTION_HORIZ, | |
35 | const wxString& name = wxFrameNameStr) | |
36 | { | |
37 | // Use wxFrame constructor in absence of more specific code. | |
761e1e07 | 38 | Create(parent, id, title, pos, size, style | wxFRAME_TOOL_WINDOW | wxFRAME_FLOAT_ON_PARENT , name); |
0dbd6262 SC |
39 | } |
40 | ||
41 | ~wxMiniFrame() {} | |
42 | protected: | |
43 | }; | |
44 | ||
45 | #endif | |
46 | // _WX_MINIFRAM_H_ |