]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/view.tex
say that EVT_TEXT_ENTER requires wxTE_PROCESS_ENTER to be set (closes bug 659948)
[wxWidgets.git] / docs / latex / wx / view.tex
CommitLineData
a660d684
KB
1\section{\class{wxView}}\label{wxview}
2
3The view class can be used to model the viewing and editing component of
4an application's file-based data. It is part of the document/view framework supported by wxWindows,
82540ef2 5and cooperates with the \helpref{wxDocument}{wxdocument}, \helpref{wxDocTemplate}{wxdoctemplate}
a660d684
KB
6and \helpref{wxDocManager}{wxdocmanager} classes.
7
8\wxheading{Derived from}
9
10\helpref{wxEvtHandler}{wxevthandler}\\
11\helpref{wxObject}{wxobject}
12
954b8ae6
JS
13\wxheading{Include files}
14
15<wx/docview.h>
16
a660d684
KB
17\wxheading{See also}
18
19\helpref{wxView overview}{wxviewoverview}, \helpref{wxDocument}{wxdocument}, \helpref{wxDocTemplate}{wxdoctemplate},\rtfsp
20\helpref{wxDocManager}{wxdocmanager}
21
22\latexignore{\rtfignore{\wxheading{Members}}}
23
24\membersection{wxView::m\_viewDocument}
25
26\member{wxDocument*}{m\_viewDocument}
27
28The document associated with this view. There may be more than one view per
29document, but there can never be more than one document for one view.
30
31\membersection{wxView::m\_viewFrame}
32
33\member{wxFrame*}{m\_viewFrame}
34
35Frame associated with the view, if any.
36
37\membersection{wxView::m\_viewTypeName}
38
39\member{wxString}{m\_viewTypeName}
40
41The view type name given to the wxDocTemplate constructor, copied to this
42variable when the view is created. Not currently used by the framework.
43
44\membersection{wxView::wxView}
45
dbdb39b2 46\func{}{wxView}{\void}
a660d684
KB
47
48Constructor. Define your own default constructor to initialize application-specific
49data.
50
51\membersection{wxView::\destruct{wxView}}
52
53\func{}{\destruct{wxView}}{\void}
54
55Destructor. Removes itself from the document's list of views.
56
57\membersection{wxView::Activate}
58
59\func{virtual void}{Activate}{\param{bool}{ activate}}
60
61Call this from your view frame's OnActivate member to tell the framework which view is
62currently active. If your windowing system doesn't call OnActivate, you may need to
63call this function from OnMenuCommand or any place where you know the view must
64be active, and the framework will need to get the current view.
65
66The prepackaged view frame wxDocChildFrame calls wxView::Activate from its OnActivate member
67and from its OnMenuCommand member.
68
69This function calls wxView::OnActivateView.
70
71\membersection{wxView::Close}
72
73\func{virtual bool}{Close}{\param{bool}{ deleteWindow = TRUE}}
74
75Closes the view by calling OnClose. If {\it deleteWindow} is TRUE, this function should
76delete the window associated with the view.
77
78\membersection{wxView::GetDocument}
79
80\constfunc{wxDocument*}{GetDocument}{\void}
81
82Gets a pointer to the document associated with the view.
83
84\membersection{wxView::GetDocumentManager}
85
86\constfunc{wxDocumentManager*}{GetDocumentManager}{\void}
87
88Returns a pointer to the document manager instance associated with this view.
89
90\membersection{wxView::GetFrame}
91
92\func{wxFrame *}{GetFrame}{\void}
93
94Gets the frame associated with the view (if any).
95
96\membersection{wxView::GetViewName}
97
98\constfunc{wxString}{GetViewName}{\void}
99
100Gets the name associated with the view (passed to the wxDocTemplate constructor).
101Not currently used by the framework.
102
103\membersection{wxView::OnActivateView}
104
105\func{virtual void}{OnActivateView}{\param{bool }{activate}, \param{wxView *}{activeView}, \param{wxView *}{deactiveView}}
106
107Called when a view is activated by means of wxView::Activate. The default implementation does
108nothing.
109
110\membersection{wxView::OnChangeFilename}
111
112\func{virtual void}{OnChangeFilename}{\void}
113
114Called when the filename has changed. The default implementation constructs a
115suitable title and sets the title of the view frame (if any).
116
117\membersection{wxView::OnClose}
118
119\func{virtual bool}{OnClose}{\param{bool}{ deleteWindow}}
120
121Implements closing behaviour. The default implementation calls wxDocument::Close
122to close the associated document. Does not delete the view. The application
123may wish to do some cleaning up operations in this function, {\it if} a
124call to wxDocument::Close succeeded. For example, if your application's
fe604ccd
JS
125all share the same window, you need to disassociate the window from the view
126and perhaps clear the window. If {\it deleteWindow} is TRUE, delete the
a660d684
KB
127frame associated with the view.
128
b23e843b
JS
129\membersection{wxView::OnClosingDocument}\label{wxviewonclosingdocument}
130
131\func{virtual void}{OnClosingDoocument}{\void}
132
133Override this to clean up the view when the document is being
134closed.
135
a660d684
KB
136\membersection{wxView::OnCreate}
137
138\func{virtual bool}{OnCreate}{\param{wxDocument* }{doc}, \param{long}{ flags}}
139
6b3d51cc
JS
140wxDocManager or wxDocument creates a wxView via a wxDocTemplate.
141Just after the wxDocTemplate creates the wxView, it calls
142wxView::OnCreate. In its OnCreate member function, the wxView can create a wxDocChildFrame
143or a derived class. This wxDocChildFrame provides user interface
144elements to view and/or edit the contents of the wxDocument.
145
146By default, simply returns TRUE. If the function returns FALSE, the
147view will be deleted.
a660d684
KB
148
149\membersection{wxView::OnCreatePrintout}
150
151\func{virtual wxPrintout*}{OnCreatePrintout}{\void}
152
153If the printing framework is enabled in the library, this function returns a
154\rtfsp\helpref{wxPrintout}{wxprintout} object for the purposes of printing. It should create a new object
2edb0bde 155every time it is called; the framework will delete objects it creates.
a660d684
KB
156
157By default, this function returns an instance of wxDocPrintout, which prints
158and previews one page by calling wxView::OnDraw.
159
160Override to return an instance of a class other than wxDocPrintout.
161
162\membersection{wxView::OnUpdate}
163
164\func{virtual void}{OnUpdate}{\param{wxView* }{sender}, \param{wxObject* }{hint}}
165
166Called when the view should be updated. {\it sender} is a pointer to the view
167that sent the update request, or NULL if no single view requested the update (for instance,
168when the document is opened). {\it hint} is as yet unused but may in future contain
169application-specific information for making updating more efficient.
170
171\membersection{wxView::SetDocument}
172
173\func{void}{SetDocument}{\param{wxDocument* }{doc}}
174
175Associates the given document with the view. Normally called by the
176framework.
177
178\membersection{wxView::SetFrame}
179
180\func{void}{SetFrame}{\param{wxFrame* }{frame}}
181
182Sets the frame associated with this view. The application should call this
183if possible, to tell the view about the frame.
184
185\membersection{wxView::SetViewName}
186
187\func{void}{SetViewName}{\param{const wxString\& }{name}}
188
189Sets the view type name. Should only be called by the framework.
190
191