Remove all lines containing cvs/svn "$Id$" keyword.
[wxWidgets.git] / include / wx / motif / minifram.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/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.
6 // Author: Julian Smart
7 // Modified by:
8 // Created: 17/09/98
9 // Copyright: (c) Julian Smart
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifndef _WX_MINIFRAM_H_
14 #define _WX_MINIFRAM_H_
15
16 #include "wx/frame.h"
17
18 class WXDLLIMPEXP_CORE wxMiniFrame: public wxFrame {
19
20 DECLARE_DYNAMIC_CLASS(wxMiniFrame)
21
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,
29 long style = wxDEFAULT_FRAME_STYLE|wxTINY_CAPTION,
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 }
35
36 virtual ~wxMiniFrame() {}
37 protected:
38 };
39
40 #endif
41 // _WX_MINIFRAM_H_