]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/propforf.tex
1. exchanged binary ROPs wxSET/wxCLEAR meaning for wxMSW to match wxGTK
[wxWidgets.git] / docs / latex / wx / propforf.tex
CommitLineData
200fed6c
VS
1\section{\class{wxPropertyFormFrame}}\label{wxpropertyformframe}
2
3The {\bf wxPropertyFormFrame} class is a prepackaged frame which can
4be used for viewing a property form. Pass a property form view object, and the frame
5will pass OnClose messages to the view class for processing.
6
7Call Initialize to create the panel and associate the view; override OnCreatePanel
8if you wish to use a panel class other than the default wxPropertyFormPanel.
9
10\membersection{wxPropertyFormFrame::wxPropertyFormFrame}
11
12\func{void}{wxPropertyFormFrame}{\param{wxPropertyFormView *}{view}, \param{wxFrame *}{parent}, \param{char *}{title},
13 \param{int}{ x=-1}, \param{int}{ y=-1}, \param{int}{ width=-1}, \param{int}{height=-1},
14 \param{long}{ style=wxSDI $\|$ wxDEFAULT\_FRAME}, \param{char *}{name=``frame"}}
15
16Constructor.
17
18\membersection{wxPropertyFormFrame::\destruct{wxPropertyFormFrame}}
19
20\func{void}{\destruct{wxPropertyFormFrame}}{\void}
21
22Destructor.
23
24\membersection{wxPropertyFormFrame::GetPropertyPanel}
25
26\func{wxPanel *}{GetPropertyPanel}{\void}
27
28Returns the panel associated with the frame.
29
30\membersection{wxPropertyFormFrame::Initialize}
31
32\func{Bool}{Initialize}{\void}
33
34Must be called to create the panel and associate the view with the panel and frame.
35
36\membersection{wxPropertyFormFrame::OnCreatePanel}
37
38\func{wxPanel *}{OnCreatePanel}{\param{wxFrame *}{parent}, \param{wxPropertyFormView *}{view}}
39
40Creates a panel. Override this to create a panel type other than wxPropertyFormPanel.
41
42