• 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:to

8 for a particular wxFrame, using a pane's wxAuiPaneInfo information to
10 uses wxWidgets' sizer mechanism to plan the layout of each frame. It
11 uses a replaceable dock art class to do all drawing, so all drawing is
15 wxAuiManager works as follows: the programmer adds panes to the class,
16 or makes changes to existing pane properties (dock position, floating
18 Update() function is called. This batch processing can be used to avoid
59 A row can allow for two docks to be placed next to each other. One of
60 the most common places for this to happen is in the toolbar. Multiple
65 A layer is akin to an onion. Layer 0 is the very center of the
66 managed pane. Thus, if a pane is in layer 0, it will be closest to the
69 look very similar to multiple rows, but is different because all panes
70 in a lower level yield to panes in higher levels. The best way to
131 to be modified.
146 AddPane() tells the frame manager to start managing a child window. There are several versions of this function. The first version allows the full spectrum of pane parameter possibilities. The second version is used for simpler user interfaces which do not require as much configuration. The last version allows a drop position to be specified, which will determine where the pane will be added.
152 Tells the wxAuiManager to stop managing the pane specified by window.
153 The window, if in a floated frame, is reparented to the frame managed
194 The \arg{window} parameter need not be managed by the manager itself, nor does it even need to be a child
204 {\it GetPane} is used to lookup a wxAuiPaneInfo object
206 a window pane. The returned wxAuiPaneInfo object may then be modified to
208 modifications to wxAuiPaneInfo, wxAuiManager::Update() should be called
209 to commit the changes to the user interface. If the lookup failed
210 (meaning the pane could not be found in the manager), a call to the
223 This method is used to insert either a previously unmanaged pane window
224 into the frame manager, or to insert a currently managed pane somewhere
228 layer, the \arg{insert\_level} parameter is used to disambiguate this. The
236 LoadPaneInfo() is similar to to LoadPerspective, with the exception that it only loads information about a single pane. It is used in combination with SavePaneInfo().
249 ProcessDockResult() is a protected member of the wxAUI layout manager. It can be overridden by derived classes to provide custom docking calculations.
255 SavePaneInfo() is similar to SavePerspective, with the exception that it only saves information about a single pane. It is used in combination with LoadPaneInfo().
264 interface will return to the state it was when the perspective was saved.
270 Instructs wxAuiManager to use art provider specified by parameter
283 new dock to 1/3 of the window size. For horizontal docks, this would be 1/3 of the window height. For
286 docks to be limited to half of the size of the entire managed window.
292 This method is used to specify wxAuiManager's settings flags. \arg{flags}
293 specifies options which allow the frame management behavior to be modified.
299 Called to specify the frame or window which is to be managed by wxAuiManager. Frame management is not restricted to just frames. Child windows or custom controls are also allowed.
305 This function is used by controls to explicitly show a hint window at the specified rectangle. It is rarely called, and is mostly used by controls implementing custom pane drag/drop behaviour. The specified rectangle should be in screen coordinates.
311 Uninitializes the framework and should be called before a managed frame or window is destroyed. UnInit() is usually called in the managed wxFrame's destructor. It is necessary to call this function before the managed frame or window is destroyed, otherwise the manager cannot remove its custom event handlers from a window.
318 made to any of the managed panes. Update() must be invoked after
319 AddPane() or InsertPane() are called in order to "realize" or "commit"
320 the changes. In addition, any number of changes may be made to
321 wxAuiPaneInfo structures (retrieved with wxAuiManager::GetPane), but to
323 pane flicker to be avoided by updating the whole layout at one time.