]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/minifram.tex
Mark GetMinSize() as virtual and explain why.
[wxWidgets.git] / docs / latex / wx / minifram.tex
CommitLineData
a660d684
KB
1\section{\class{wxMiniFrame}}\label{wxminiframe}
2
3A miniframe is a frame with a small title bar. It is suitable for floating toolbars that must not
4take up too much screen area.
5
6\wxheading{Derived from}
7
8\helpref{wxFrame}{wxframe}\\
9\helpref{wxWindow}{wxwindow}\\
10\helpref{wxEvtHandler}{wxevthandler}\\
11\helpref{wxObject}{wxobject}
12
954b8ae6
JS
13\wxheading{Include files}
14
15<wx/minifram.h>
16
a660d684
KB
17\wxheading{Window styles}
18
19\twocolwidtha{5cm}
20\begin{twocollist}\itemsep=0pt
21\twocolitem{\windowstyle{wxICONIZE}}{Display the frame iconized (minimized) (Windows only).}
22\twocolitem{\windowstyle{wxCAPTION}}{Puts a caption on the frame.}
850c6ed4 23\twocolitem{\windowstyle{wxDEFAULT\_FRAME\_STYLE}}{Defined as {\bf wxMINIMIZE\_BOX \pipe wxMAXIMIZE\_BOX \pipe wxTHICK\_FRAME \pipe wxSYSTEM\_MENU \pipe wxCAPTION \pipe wxCLOSE\_BOX}.}
a660d684
KB
24\twocolitem{\windowstyle{wxMINIMIZE}}{Identical to {\bf wxICONIZE}.}
25\twocolitem{\windowstyle{wxMINIMIZE\_BOX}}{Displays a minimize box on the frame (Windows and Motif only).}
26\twocolitem{\windowstyle{wxMAXIMIZE}}{Displays the frame maximized (Windows only).}
27\twocolitem{\windowstyle{wxMAXIMIZE\_BOX}}{Displays a maximize box on the frame (Windows and Motif only).}
850c6ed4 28\twocolitem{\windowstyle{wxCLOSE\_BOX}}{Displays a close box on the frame.}
a660d684
KB
29\twocolitem{\windowstyle{wxSTAY\_ON\_TOP}}{Stay on top of other windows (Windows only).}
30\twocolitem{\windowstyle{wxSYSTEM\_MENU}}{Displays a system menu (Windows and Motif only).}
335f20cb
VZ
31\twocolitem{\windowstyle{wxTINY\_CAPTION\_HORIZ}}{This style is obsolete and
32not used any longer.}
33\twocolitem{\windowstyle{wxTINY\_CAPTION\_VERT}}{This style is obsolete and not
34used any longer.}
1d4758e1 35\twocolitem{\windowstyle{wxRESIZE\_BORDER}}{Displays a resizeable border around the window.}
a660d684
KB
36\end{twocollist}
37
a660d684
KB
38\wxheading{Remarks}
39
f37615d7
RR
40This class has miniframe functionality under Windows and GTK, i.e. the presence
41of mini frame will not be noted in the task bar and focus behaviour is different.
42On other platforms, it behaves like a normal frame.
a660d684
KB
43
44\wxheading{See also}
45
46\helpref{wxMDIParentFrame}{wxmdiparentframe}, \helpref{wxMDIChildFrame}{wxmdichildframe},\rtfsp
47\helpref{wxFrame}{wxframe}, \helpref{wxDialog}{wxdialog}
48
49\latexignore{\rtfignore{\wxheading{Members}}}
50
3e79fa75 51\membersection{wxMiniFrame::wxMiniFrame}\label{wxminiframector}
a660d684
KB
52
53\func{}{wxMiniFrame}{\void}
54
55Default constructor.
56
eaaa6a06 57\func{}{wxMiniFrame}{\param{wxWindow* }{parent}, \param{wxWindowID }{id},\rtfsp
a660d684
KB
58\param{const wxString\& }{title}, \param{const wxPoint\&}{ pos = wxDefaultPosition},\rtfsp
59\param{const wxSize\&}{ size = wxDefaultSize}, \param{long}{ style = wxDEFAULT\_FRAME\_STYLE},\rtfsp
60\param{const wxString\& }{name = ``frame"}}
61
62Constructor, creating the window.
63
64\wxheading{Parameters}
65
66\docparam{parent}{The window parent. This may be NULL. If it is non-NULL, the frame will
67always be displayed on top of the parent window on Windows.}
68
69\docparam{id}{The window identifier. It may take a value of -1 to indicate a default value.}
70
71\docparam{title}{The caption to be displayed on the frame's title bar.}
72
73\docparam{pos}{The window position. A value of (-1, -1) indicates a default position, chosen by
fc2171bd 74either the windowing system or wxWidgets, depending on platform.}
a660d684
KB
75
76\docparam{size}{The window size. A value of (-1, -1) indicates a default size, chosen by
fc2171bd 77either the windowing system or wxWidgets, depending on platform.}
a660d684
KB
78
79\docparam{style}{The window style. See \helpref{wxMiniFrame}{wxminiframe}.}
80
81\docparam{name}{The name of the window. This parameter is used to associate a name with the item,
82allowing the application user to set Motif resource values for
83individual windows.}
84
85\wxheading{Remarks}
86
87The frame behaves like a normal frame on non-Windows platforms.
88
89\wxheading{See also}
90
91\helpref{wxMiniFrame::Create}{wxminiframecreate}
92
3e79fa75 93\membersection{wxMiniFrame::\destruct{wxMiniFrame}}\label{wxminiframedtor}
a660d684
KB
94
95\func{void}{\destruct{wxMiniFrame}}{\void}
96
97Destructor. Destroys all child windows and menu bar if present.
98
99\membersection{wxMiniFrame::Create}\label{wxminiframecreate}
100
eaaa6a06 101\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id},\rtfsp
a660d684
KB
102\param{const wxString\& }{title}, \param{const wxPoint\&}{ pos = wxDefaultPosition},\rtfsp
103\param{const wxSize\&}{ size = wxDefaultSize}, \param{long}{ style = wxDEFAULT\_FRAME\_STYLE},\rtfsp
104\param{const wxString\& }{name = ``frame"}}
105
3e79fa75 106Used in two-step frame construction. See \helpref{wxMiniFrame::wxMiniFrame}{wxminiframector}\rtfsp
a660d684
KB
107for further details.
108
109
110