Remove all lines containing cvs/svn "$Id$" keyword.
[wxWidgets.git] / include / wx / osx / minifram.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/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: Stefan Csomor
7 // Modified by:
8 // Created: 1998-01-01
9 // Copyright: (c) Stefan Csomor
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 = wxCAPTION | wxRESIZE_BORDER | 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 | wxFRAME_TOOL_WINDOW | wxFRAME_FLOAT_ON_PARENT , name);
34 }
35
36 virtual ~wxMiniFrame() {}
37 protected:
38 };
39
40 #endif
41 // _WX_MINIFRAM_H_