1 /////////////////////////////////////////////////////////////////////////////
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
6 // Author: David Webster
10 // Copyright: (c) David Webster
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
14 #ifndef _WX_MINIFRAM_H_
15 #define _WX_MINIFRAM_H_
19 class WXDLLIMPEXP_CORE wxMiniFrame
: public wxFrame
{
21 DECLARE_DYNAMIC_CLASS(wxMiniFrame
)
24 inline wxMiniFrame(void) {}
25 inline wxMiniFrame(wxWindow
*parent
,
27 const wxString
& title
,
28 const wxPoint
& pos
= wxDefaultPosition
,
29 const wxSize
& size
= wxDefaultSize
,
30 long style
= wxDEFAULT_FRAME_STYLE
,
31 const wxString
& name
= wxFrameNameStr
)
33 Create(parent
, id
, title
, pos
, size
, style
| wxFRAME_TOOL_WINDOW
| wxFRAME_FLOAT_ON_PARENT
, name
);