- wxAuiManagerConstructor. 
- AddPaneAddPane() tells the frame manager to start managing a child window. 
- DetachPaneTells the wxAuiManager to stop managing the pane specified by window. 
- GetArtProviderReturns the current art provider being used. 
- GetDockSizeConstraintReturns the current dock constraint values. 
- GetFlagsReturns the current wxAuiManagerOption's flags. 
- GetManagedWindowReturns the frame currently being managed by wxAuiManager. 
- GetPaneGetPane() is used to lookup a wxAuiPaneInfo object either by window pointer or by pane name, which acts as a unique id for a window pane. 
- HideHintHideHint() hides any docking hint that may be visible. 
- InsertPaneThis method is used to insert either a previously unmanaged pane window into the frame manager, or to insert a currently managed pane somewhere else. 
- LoadPaneInfoLoadPaneInfo() is similar to LoadPerspective, with the exception that it only loads information about a single pane. 
- LoadPerspectiveLoads a saved perspective. 
- ProcessDockResultProcessDockResult() is a protected member of the wxAUI layout manager. 
- SavePaneInfoSavePaneInfo() is similar to SavePerspective, with the exception that it only saves information about a single pane. 
- SavePerspectiveSaves the entire user interface layout into an encoded wxString, which can then be stored by the application (probably using wxConfig). 
- SetArtProviderInstructs wxAuiManager to use art provider specified by parameter art_provider for all drawing calls. 
- SetDockSizeConstraintWhen a user creates a new dock by dragging a window into a docked position, often times the large size of the window will create a dock that is unwieldly large. 
- SetFlagsThis method is used to specify wxAuiManagerOption's flags. 
- SetManagedWindowCalled to specify the frame or window which is to be managed by wxAuiManager. 
- ShowHintThis function is used by controls to explicitly show a hint window at the specified rectangle. 
- UnInitUninitializes the framework and should be called before a managed frame or window is destroyed. 
- UpdateThis method is called after any number of changes are made to any of the managed panes.