]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/minifram.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxMiniFrame
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
12 A miniframe is a frame with a small title bar.
13 It is suitable for floating toolbars that must not take up too much screen area.
15 An example of mini frame can be seen in the @ref page_samples_dialogs
16 using the "Mini frame" command of the "Generic dialogs" submenu.
20 Display the frame iconized (minimized) (Windows only).
22 Puts a caption on the frame.
24 Identical to wxICONIZE.
25 @style{wxMINIMIZE_BOX}
26 Displays a minimize box on the frame (Windows and Motif only).
28 Displays the frame maximized (Windows only).
29 @style{wxMAXIMIZE_BOX}
30 Displays a maximize box on the frame (Windows and Motif only).
32 Displays a close box on the frame.
34 Stay on top of other windows (Windows only).
36 Displays a system menu (Windows and Motif only).
37 @style{wxRESIZE_BORDER}
38 Displays a resizeable border around the window.
42 This class has miniframe functionality under Windows and GTK, i.e. the presence
43 of mini frame will not be noted in the task bar and focus behaviour is different.
44 On other platforms, it behaves like a normal frame.
49 @see wxMDIParentFrame, wxMDIChildFrame, wxFrame, wxDialog
51 class wxMiniFrame
: public wxFrame
60 Constructor, creating the window.
63 The window parent. This may be @NULL. If it is non-@NULL, the frame will
64 always be displayed on top of the parent window on Windows.
66 The window identifier. It may take a value of -1 to indicate a default value.
68 The caption to be displayed on the frame's title bar.
70 The window position. The value wxDefaultPosition indicates a default position,
71 chosen by either the windowing system or wxWidgets, depending on platform.
73 The window size. The value wxDefaultSize indicates a default size, chosen by
74 either the windowing system or wxWidgets, depending on platform.
76 The window style. See wxMiniFrame.
78 The name of the window. This parameter is used to associate a name with
79 the item, allowing the application user to set Motif resource values for
82 @remarks The frame behaves like a normal frame on non-Windows platforms.
86 wxMiniFrame(wxWindow
* parent
, wxWindowID id
,
87 const wxString
& title
,
88 const wxPoint
& pos
= wxDefaultPosition
,
89 const wxSize
& size
= wxDefaultSize
,
90 long style
= wxCAPTION
| wxRESIZE_BORDER
,
91 const wxString
& name
= wxFrameNameStr
);
94 Destructor. Destroys all child windows and menu bar if present.
96 virtual ~wxMiniFrame();
99 Used in two-step frame construction.
100 See wxMiniFrame() for further details.
102 bool Create(wxWindow
* parent
, wxWindowID id
, const wxString
& title
,
103 const wxPoint
& pos
= wxDefaultPosition
,
104 const wxSize
& size
= wxDefaultSize
,
105 long style
= wxCAPTION
| wxRESIZE_BORDER
,
106 const wxString
& name
= wxFrameNameStr
);