• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching refs:document

19 The document/view framework is found in most application frameworks, because it
25 for taking input from physical windows and performing the manipulation on the document data.
26 If a document's data changes, all views should be updated to reflect the change.
36 These are the overall steps involved in creating an application based on the document/view framework:
39 \item Define your own document and view classes, overriding a minimal set of
45 document child frames surrounded by an overall frame), SDI (a separate, unconstrained frame
46 for each document), or single-window (one document open at a time, as in Windows Write).
67 class, to provide multi-page document facilities.
75 \perlnote{The document/view framework is available in wxPerl. To use it,
91 data. It is part of the document/view framework supported by wxWidgets,
102 Note that the document/view model will suit many but not all styles of application.
105 files. But probably the majority of applications are document-based.
111 LoadObject will be called by the framework when the document needs to be saved
115 to allow the framework to create document objects on demand. When you create
120 If you do not wish to use the wxWidgets method of creating document
131 an application's file-based data. It is part of the document/view framework supported by wxWidgets,
158 document class and a view class. The application creates a document
159 template object for each document/view pair. The list of document
161 documents and views. Each document template knows what file filters
162 and default extension are appropriate for a document/view combination,
163 and how to create a document or view.
167 and a list of the segments -- then you would create one document class DoodleDocument,
169 need two document templates, one for the graphical view and another for the
170 list view. You would pass the same document class and default file extension to both
171 document templates, but each would be passed a different view class. When
175 a file is selected, that template will be used for creating a document
178 For the case where an application has one document type and one view type,
179 a single document template is constructed, and dialogs will be appropriately
182 wxDocTemplate is part of the document/view framework supported by wxWidgets,
191 If you do not wish to use the wxWidgets method of creating document
195 {\it NOTE}: the document template has nothing to do with the C++ template construct.
203 The wxDocManager class is part of the document/view framework supported by wxWidgets,
207 A wxDocManager instance coordinates documents, views and document templates. It keeps a list of document
237 The wxWidgets document/view framework handles Undo and Redo by use of
307 document/view framework, several command identifiers are predefined for you