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