Version: 3.2.5
wxAuiManager Class Reference

#include <wx/aui/framemanager.h>

+ Inheritance diagram for wxAuiManager:

Detailed Description

wxAuiManager is the central class of the wxAUI class framework.

wxAuiManager manages the panes associated with it for a particular wxFrame, using a pane's wxAuiPaneInfo information to determine each pane's docking and floating behaviour.

wxAuiManager uses wxWidgets' sizer mechanism to plan the layout of each frame. It uses a replaceable dock art class to do all drawing, so all drawing is localized in one area, and may be customized depending on an application's specific needs.

wxAuiManager works as follows: the programmer adds panes to the class, or makes changes to existing pane properties (dock position, floating state, show state, etc.). To apply these changes, wxAuiManager's Update() function is called. This batch processing can be used to avoid flicker, by modifying more than one pane at a time, and then "committing" all of the changes at once by calling Update().

Panes can be added quite easily:

wxTextCtrl* text1 = new wxTextCtrl(this, -1);
wxTextCtrl* text2 = new wxTextCtrl(this, -1);
m_mgr.AddPane(text1, wxLEFT, "Pane Caption");
m_mgr.AddPane(text2, wxBOTTOM, "Pane Caption");
m_mgr.Update();
A text control allows text to be displayed and edited.
Definition: textctrl.h:1436
@ wxBOTTOM
Definition: defs.h:50
@ wxLEFT
Definition: defs.h:44

Later on, the positions can be modified easily. The following will float an existing pane in a tool window:

m_mgr.GetPane(text1).Float();

Layers, Rows and Directions, Positions

Inside wxAUI, the docking layout is figured out by checking several pane parameters. Four of these are important for determining where a pane will end up:

  • Direction: Each docked pane has a direction, Top, Bottom, Left, Right, or Center. This is fairly self-explanatory. The pane will be placed in the location specified by this variable.
  • Position: More than one pane can be placed inside of a dock. Imagine two panes being docked on the left side of a window. One pane can be placed over another. In proportionally managed docks, the pane position indicates its sequential position, starting with zero. So, in our scenario with two panes docked on the left side, the top pane in the dock would have position 0, and the second one would occupy position 1.
  • Row: A row can allow for two docks to be placed next to each other. One of the most common places for this to happen is in the toolbar. Multiple toolbar rows are allowed, the first row being row 0, and the second row 1. Rows can also be used on vertically docked panes.
  • Layer: A layer is akin to an onion. Layer 0 is the very center of the managed pane. Thus, if a pane is in layer 0, it will be closest to the center window (also sometimes known as the "content window"). Increasing layers "swallow up" all layers of a lower value. This can look very similar to multiple rows, but is different because all panes in a lower level yield to panes in higher levels. The best way to understand layers is by running the wxAUI sample.

Styles

This class supports the following styles:

  • wxAUI_MGR_ALLOW_FLOATING:
    Allow a pane to be undocked to take the form of a wxMiniFrame.
  • wxAUI_MGR_ALLOW_ACTIVE_PANE:
    Change the color of the title bar of the pane when it is activated.
  • wxAUI_MGR_TRANSPARENT_DRAG:
    Make the pane transparent during its movement.
  • wxAUI_MGR_TRANSPARENT_HINT:
    The possible location for docking is indicated by a translucent area.
  • wxAUI_MGR_VENETIAN_BLINDS_HINT:
    The possible location for docking is indicated by gradually appearing partially transparent hint.
  • wxAUI_MGR_RECTANGLE_HINT:
    The possible location for docking is indicated by a rectangular outline.
  • wxAUI_MGR_HINT_FADE:
    The translucent area where the pane could be docked appears gradually.
  • wxAUI_MGR_NO_VENETIAN_BLINDS_FADE:
    Used in complement of wxAUI_MGR_VENETIAN_BLINDS_HINT to show the docking hint immediately.
  • wxAUI_MGR_LIVE_RESIZE:
    When a docked pane is resized, its content is refreshed in live (instead of moving the border alone and refreshing the content at the end).
  • wxAUI_MGR_DEFAULT:
    Default behaviour, combines: wxAUI_MGR_ALLOW_FLOATING | wxAUI_MGR_TRANSPARENT_HINT | wxAUI_MGR_HINT_FADE | wxAUI_MGR_NO_VENETIAN_BLINDS_FADE.

Events emitted by this class

The following event handler macros redirect the events to member function handlers 'func' with prototypes like:

void handlerFuncName(wxAuiManagerEvent& event)

Event macros for events emitted by this class:

  • EVT_AUI_PANE_BUTTON(func):
    Triggered when any button is pressed for any docked panes.
  • EVT_AUI_PANE_CLOSE(func):
    Triggered when a docked or floating pane is closed.
  • EVT_AUI_PANE_MAXIMIZE(func):
    Triggered when a pane is maximized.
  • EVT_AUI_PANE_RESTORE(func):
    Triggered when a pane is restored.
  • EVT_AUI_PANE_ACTIVATED(func):
    Triggered when a pane is made 'active'. This event is new since wxWidgets 2.9.4.
  • EVT_AUI_RENDER(func):
    This event can be caught to override the default renderer in order to custom draw your wxAuiManager window (not recommended).

Library:  wxAui
Category:  Window Docking (wxAUI)
See also
wxAUI Overview, wxAuiNotebook, wxAuiDockArt, wxAuiPaneInfo

Public Member Functions

 wxAuiManager (wxWindow *managed_wnd=NULL, unsigned int flags=wxAUI_MGR_DEFAULT)
 Constructor. More...
 
virtual ~wxAuiManager ()
 Dtor. More...
 
bool AddPane (wxWindow *window, const wxAuiPaneInfo &pane_info)
 AddPane() tells the frame manager to start managing a child window. More...
 
bool AddPane (wxWindow *window, int direction=wxLEFT, const wxString &caption=wxEmptyString)
 
bool AddPane (wxWindow *window, const wxAuiPaneInfo &pane_info, const wxPoint &drop_pos)
 
wxRect CalculateHintRect (wxWindow *paneWindow, const wxPoint &pt, const wxPoint &offset)
 This function is used by controls to calculate the drop hint rectangle. More...
 
virtual bool CanDockPanel (const wxAuiPaneInfo &p)
 Check if a key modifier is pressed (actually WXK_CONTROL or WXK_ALT) while dragging the frame to not dock the window. More...
 
void ClosePane (wxAuiPaneInfo &paneInfo)
 Destroys or hides the given pane depending on its flags. More...
 
virtual wxAuiFloatingFrameCreateFloatingFrame (wxWindow *parent, const wxAuiPaneInfo &p)
 Creates a floating frame in this wxAuiManager with the given parent and wxAuiPaneInfo. More...
 
bool DetachPane (wxWindow *window)
 Tells the wxAuiManager to stop managing the pane specified by window. More...
 
void DrawHintRect (wxWindow *paneWindow, const wxPoint &pt, const wxPoint &offset)
 This function is used by controls to draw the hint window. More...
 
wxAuiPaneInfoArray & GetAllPanes ()
 Returns an array of all panes managed by the frame manager. More...
 
wxAuiDockArtGetArtProvider () const
 Returns the current art provider being used. More...
 
void GetDockSizeConstraint (double *widthpct, double *heightpct) const
 Returns the current dock constraint values. More...
 
unsigned int GetFlags () const
 Returns the current wxAuiManagerOption's flags. More...
 
wxWindowGetManagedWindow () const
 Returns the frame currently being managed by wxAuiManager. More...
 
wxAuiPaneInfoGetPane (wxWindow *window)
 GetPane() 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. More...
 
wxAuiPaneInfoGetPane (const wxString &name)
 
bool HasLiveResize () const
 Returns true if windows are resized live. More...
 
virtual void HideHint ()
 HideHint() hides any docking hint that may be visible. More...
 
bool InsertPane (wxWindow *window, const wxAuiPaneInfo &insert_location, int insert_level=wxAUI_INSERT_PANE)
 This method is used to insert either a previously unmanaged pane window into the frame manager, or to insert a currently managed pane somewhere else. More...
 
void LoadPaneInfo (wxString pane_part, wxAuiPaneInfo &pane)
 LoadPaneInfo() is similar to LoadPerspective, with the exception that it only loads information about a single pane. More...
 
bool LoadPerspective (const wxString &perspective, bool update=true)
 Loads a saved perspective. More...
 
void MaximizePane (wxAuiPaneInfo &paneInfo)
 Maximize the given pane. More...
 
void RestorePane (wxAuiPaneInfo &paneInfo)
 Restore the last state of the given pane. More...
 
void RestoreMaximizedPane ()
 Restore the previously maximized pane. More...
 
wxString SavePaneInfo (const wxAuiPaneInfo &pane)
 SavePaneInfo() is similar to SavePerspective, with the exception that it only saves information about a single pane. More...
 
wxString SavePerspective ()
 Saves the entire user interface layout into an encoded wxString, which can then be stored by the application (probably using wxConfig). More...
 
void SetArtProvider (wxAuiDockArt *art_provider)
 Instructs wxAuiManager to use art provider specified by parameter art_provider for all drawing calls. More...
 
void SetDockSizeConstraint (double widthpct, double heightpct)
 When 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 unwieldy large. More...
 
void SetFlags (unsigned int flags)
 This method is used to specify wxAuiManagerOption's flags. More...
 
void SetManagedWindow (wxWindow *managed_wnd)
 Called to specify the frame or window which is to be managed by wxAuiManager. More...
 
virtual void ShowHint (const wxRect &rect)
 This function is used by controls to explicitly show a hint window at the specified rectangle. More...
 
void StartPaneDrag (wxWindow *paneWindow, const wxPoint &offset)
 Mostly used internally to define the drag action parameters. More...
 
void UnInit ()
 Dissociate the managed window from the manager. More...
 
void Update ()
 This method is called after any number of changes are made to any of the managed panes. More...
 
- Public Member Functions inherited from wxEvtHandler
 wxEvtHandler ()
 Constructor. More...
 
virtual ~wxEvtHandler ()
 Destructor. More...
 
virtual void QueueEvent (wxEvent *event)
 Queue event for a later processing. More...
 
virtual void AddPendingEvent (const wxEvent &event)
 Post an event to be processed later. More...
 
template<typename T , typename T1 , ... >
void CallAfter (void(T::*method)(T1,...), T1 x1,...)
 Asynchronously call the given method. More...
 
template<typename T >
void CallAfter (const T &functor)
 Asynchronously call the given functor. More...
 
virtual bool ProcessEvent (wxEvent &event)
 Processes an event, searching event tables and calling zero or more suitable event handler function(s). More...
 
bool ProcessEventLocally (wxEvent &event)
 Try to process the event in this handler and all those chained to it. More...
 
bool SafelyProcessEvent (wxEvent &event)
 Processes an event by calling ProcessEvent() and handles any exceptions that occur in the process. More...
 
void ProcessPendingEvents ()
 Processes the pending events previously queued using QueueEvent() or AddPendingEvent(); you must call this function only if you are sure there are pending events for this handler, otherwise a wxCHECK will fail. More...
 
void DeletePendingEvents ()
 Deletes all events queued on this event handler using QueueEvent() or AddPendingEvent(). More...
 
void Connect (int id, int lastId, wxEventType eventType, wxObjectEventFunction function, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL)
 Connects the given function dynamically with the event handler, id and event type. More...
 
void Connect (int id, wxEventType eventType, wxObjectEventFunction function, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL)
 See the Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*) overload for more info. More...
 
void Connect (wxEventType eventType, wxObjectEventFunction function, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL)
 See the Connect(int, int, wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*) overload for more info. More...
 
bool Disconnect (wxEventType eventType, wxObjectEventFunction function, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL)
 Disconnects the given function dynamically from the event handler, using the specified parameters as search criteria and returning true if a matching function has been found and removed. More...
 
bool Disconnect (int id=wxID_ANY, wxEventType eventType=wxEVT_NULL, wxObjectEventFunction function=NULL, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL)
 See the Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*) overload for more info. More...
 
bool Disconnect (int id, int lastId, wxEventType eventType, wxObjectEventFunction function=NULL, wxObject *userData=NULL, wxEvtHandler *eventSink=NULL)
 See the Disconnect(wxEventType, wxObjectEventFunction, wxObject*, wxEvtHandler*) overload for more info. More...
 
template<typename EventTag , typename Functor >
void Bind (const EventTag &eventType, Functor functor, int id=wxID_ANY, int lastId=wxID_ANY, wxObject *userData=NULL)
 Binds the given function, functor or method dynamically with the event. More...
 
template<typename EventTag , typename Class , typename EventArg , typename EventHandler >
void Bind (const EventTag &eventType, void(Class::*method)(EventArg &), EventHandler *handler, int id=wxID_ANY, int lastId=wxID_ANY, wxObject *userData=NULL)
 See the Bind<>(const EventTag&, Functor, int, int, wxObject*) overload for more info. More...
 
template<typename EventTag , typename Functor >
bool Unbind (const EventTag &eventType, Functor functor, int id=wxID_ANY, int lastId=wxID_ANY, wxObject *userData=NULL)
 Unbinds the given function, functor or method dynamically from the event handler, using the specified parameters as search criteria and returning true if a matching function has been found and removed. More...
 
template<typename EventTag , typename Class , typename EventArg , typename EventHandler >
bool Unbind (const EventTag &eventType, void(Class::*method)(EventArg &), EventHandler *handler, int id=wxID_ANY, int lastId=wxID_ANY, wxObject *userData=NULL)
 See the Unbind<>(const EventTag&, Functor, int, int, wxObject*) overload for more info. More...
 
void * GetClientData () const
 Returns user-supplied client data. More...
 
wxClientDataGetClientObject () const
 Returns a pointer to the user-supplied client data object. More...
 
void SetClientData (void *data)
 Sets user-supplied client data. More...
 
void SetClientObject (wxClientData *data)
 Set the client data object. More...
 
bool GetEvtHandlerEnabled () const
 Returns true if the event handler is enabled, false otherwise. More...
 
wxEvtHandlerGetNextHandler () const
 Returns the pointer to the next handler in the chain. More...
 
wxEvtHandlerGetPreviousHandler () const
 Returns the pointer to the previous handler in the chain. More...
 
void SetEvtHandlerEnabled (bool enabled)
 Enables or disables the event handler. More...
 
virtual void SetNextHandler (wxEvtHandler *handler)
 Sets the pointer to the next handler. More...
 
virtual void SetPreviousHandler (wxEvtHandler *handler)
 Sets the pointer to the previous handler. More...
 
void Unlink ()
 Unlinks this event handler from the chain it's part of (if any); then links the "previous" event handler to the "next" one (so that the chain won't be interrupted). More...
 
bool IsUnlinked () const
 Returns true if the next and the previous handler pointers of this event handler instance are NULL. More...
 
- Public Member Functions inherited from wxObject
 wxObject ()
 Default ctor; initializes to NULL the internal reference data. More...
 
 wxObject (const wxObject &other)
 Copy ctor. More...
 
virtual ~wxObject ()
 Destructor. More...
 
virtual wxClassInfoGetClassInfo () const
 This virtual function is redefined for every class that requires run-time type information, when using the wxDECLARE_CLASS macro (or similar). More...
 
wxObjectRefDataGetRefData () const
 Returns the wxObject::m_refData pointer, i.e. the data referenced by this object. More...
 
bool IsKindOf (const wxClassInfo *info) const
 Determines whether this class is a subclass of (or the same class as) the given class. More...
 
bool IsSameAs (const wxObject &obj) const
 Returns true if this object has the same data pointer as obj. More...
 
void Ref (const wxObject &clone)
 Makes this object refer to the data in clone. More...
 
void SetRefData (wxObjectRefData *data)
 Sets the wxObject::m_refData pointer. More...
 
void UnRef ()
 Decrements the reference count in the associated data, and if it is zero, deletes the data. More...
 
void UnShare ()
 This is the same of AllocExclusive() but this method is public. More...
 
void operator delete (void *buf)
 The delete operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More...
 
void * operator new (size_t size, const wxString &filename=NULL, int lineNum=0)
 The new operator is defined for debugging versions of the library only, when the identifier __WXDEBUG__ is defined. More...
 

Static Public Member Functions

static bool AlwaysUsesLiveResize ()
 Returns true if live resize is always used on the current platform. More...
 
static wxAuiManagerGetManager (wxWindow *window)
 Calling this method will return the wxAuiManager for a given window. More...
 
- Static Public Member Functions inherited from wxEvtHandler
static void AddFilter (wxEventFilter *filter)
 Add an event filter whose FilterEvent() method will be called for each and every event processed by wxWidgets. More...
 
static void RemoveFilter (wxEventFilter *filter)
 Remove a filter previously installed with AddFilter(). More...
 

Protected Member Functions

virtual bool ProcessDockResult (wxAuiPaneInfo &target, const wxAuiPaneInfo &new_pos)
 ProcessDockResult() is a protected member of the wxAUI layout manager. More...
 
- Protected Member Functions inherited from wxEvtHandler
virtual bool TryBefore (wxEvent &event)
 Method called by ProcessEvent() before examining this object event tables. More...
 
virtual bool TryAfter (wxEvent &event)
 Method called by ProcessEvent() as last resort. More...
 
- Protected Member Functions inherited from wxObject
void AllocExclusive ()
 Ensure that this object's data is not shared with any other object. More...
 
virtual wxObjectRefDataCreateRefData () const
 Creates a new instance of the wxObjectRefData-derived class specific to this object and returns it. More...
 
virtual wxObjectRefDataCloneRefData (const wxObjectRefData *data) const
 Creates a new instance of the wxObjectRefData-derived class specific to this object and initializes it copying data. More...
 

Additional Inherited Members

- Protected Attributes inherited from wxObject
wxObjectRefDatam_refData
 Pointer to an object which is the object's reference-counted data. More...
 

Constructor & Destructor Documentation

◆ wxAuiManager()

wxAuiManager::wxAuiManager ( wxWindow managed_wnd = NULL,
unsigned int  flags = wxAUI_MGR_DEFAULT 
)

Constructor.

Parameters
managed_wndSpecifies the wxFrame which should be managed.
flagsSpecifies the frame management behaviour and visual effects with the wxAuiManagerOption's style flags.

◆ ~wxAuiManager()

virtual wxAuiManager::~wxAuiManager ( )
virtual

Dtor.

Member Function Documentation

◆ AddPane() [1/3]

bool wxAuiManager::AddPane ( wxWindow window,
const wxAuiPaneInfo pane_info 
)

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.

◆ AddPane() [2/3]

bool wxAuiManager::AddPane ( wxWindow window,
const wxAuiPaneInfo pane_info,
const wxPoint drop_pos 
)

◆ AddPane() [3/3]

bool wxAuiManager::AddPane ( wxWindow window,
int  direction = wxLEFT,
const wxString caption = wxEmptyString 
)

◆ AlwaysUsesLiveResize()

static bool wxAuiManager::AlwaysUsesLiveResize ( )
static

Returns true if live resize is always used on the current platform.

If this function returns true, wxAUI_MGR_LIVE_RESIZE flag is ignored and live resize is always used, whether it's specified or not.

Currently this is the case for wxOSX and wxGTK3 ports, as live resizing is the only implemented method there.

Since
3.1.4

◆ CalculateHintRect()

wxRect wxAuiManager::CalculateHintRect ( wxWindow paneWindow,
const wxPoint pt,
const wxPoint offset 
)

This function is used by controls to calculate the drop hint rectangle.

The method first calls DoDrop() to determine the exact position the pane would be at were if dropped.

Parameters
paneWindowThe window pointer of the pane being dragged.
ptThe mouse position, in client coordinates.
offsetDescribes the offset that the mouse is from the upper-left corner of the item being dragged.
Returns
The rectangle hint will be returned in screen coordinates if the pane would indeed become docked at the specified drop point. Otherwise, an empty rectangle is returned.

◆ CanDockPanel()

virtual bool wxAuiManager::CanDockPanel ( const wxAuiPaneInfo p)
virtual

Check if a key modifier is pressed (actually WXK_CONTROL or WXK_ALT) while dragging the frame to not dock the window.

◆ ClosePane()

void wxAuiManager::ClosePane ( wxAuiPaneInfo paneInfo)

Destroys or hides the given pane depending on its flags.

See also
wxAuiPaneInfo::DestroyOnClose

◆ CreateFloatingFrame()

virtual wxAuiFloatingFrame* wxAuiManager::CreateFloatingFrame ( wxWindow parent,
const wxAuiPaneInfo p 
)
virtual

Creates a floating frame in this wxAuiManager with the given parent and wxAuiPaneInfo.

◆ DetachPane()

bool wxAuiManager::DetachPane ( wxWindow window)

Tells the wxAuiManager to stop managing the pane specified by window.

The window, if in a floated frame, is reparented to the frame managed by wxAuiManager.

◆ DrawHintRect()

void wxAuiManager::DrawHintRect ( wxWindow paneWindow,
const wxPoint pt,
const wxPoint offset 
)

This function is used by controls to draw the hint window.

It is rarely called, and is mostly used by controls implementing custom pane drag/drop behaviour.

◆ GetAllPanes()

wxAuiPaneInfoArray& wxAuiManager::GetAllPanes ( )

Returns an array of all panes managed by the frame manager.

◆ GetArtProvider()

wxAuiDockArt* wxAuiManager::GetArtProvider ( ) const

Returns the current art provider being used.

See also
wxAuiDockArt.

◆ GetDockSizeConstraint()

void wxAuiManager::GetDockSizeConstraint ( double *  widthpct,
double *  heightpct 
) const

Returns the current dock constraint values.

See SetDockSizeConstraint() for more information.

◆ GetFlags()

unsigned int wxAuiManager::GetFlags ( ) const

Returns the current wxAuiManagerOption's flags.

◆ GetManagedWindow()

wxWindow* wxAuiManager::GetManagedWindow ( ) const

Returns the frame currently being managed by wxAuiManager.

◆ GetManager()

static wxAuiManager* wxAuiManager::GetManager ( wxWindow window)
static

Calling this method will return the wxAuiManager for a given window.

The window parameter should specify any child window or sub-child window of the frame or window managed by wxAuiManager.

The window parameter need not be managed by the manager itself, nor does it even need to be a child or sub-child of a managed window. It must however be inside the window hierarchy underneath the managed window.

◆ GetPane() [1/2]

wxAuiPaneInfo& wxAuiManager::GetPane ( const wxString name)

◆ GetPane() [2/2]

wxAuiPaneInfo& wxAuiManager::GetPane ( wxWindow window)

GetPane() 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.

The returned wxAuiPaneInfo object may then be modified to change a pane's look, state or position. After one or more modifications to wxAuiPaneInfo, wxAuiManager::Update() should be called to commit the changes to the user interface. If the lookup failed (meaning the pane could not be found in the manager), a call to the returned wxAuiPaneInfo's IsOk() method will return false.

◆ HasLiveResize()

bool wxAuiManager::HasLiveResize ( ) const

Returns true if windows are resized live.

This function combines the check for AlwaysUsesLiveResize() and, for the platforms where live resizing is optional, the check for wxAUI_MGR_LIVE_RESIZE flag.

Using this accessor allows to verify whether live resizing is being actually used.

Since
3.1.4

◆ HideHint()

virtual void wxAuiManager::HideHint ( )
virtual

HideHint() hides any docking hint that may be visible.

◆ InsertPane()

bool wxAuiManager::InsertPane ( wxWindow window,
const wxAuiPaneInfo insert_location,
int  insert_level = wxAUI_INSERT_PANE 
)

This method is used to insert either a previously unmanaged pane window into the frame manager, or to insert a currently managed pane somewhere else.

InsertPane() will push all panes, rows, or docks aside and insert the window into the position specified by insert_location.

Because insert_location can specify either a pane, dock row, or dock layer, the insert_level parameter is used to disambiguate this. The parameter insert_level can take a value of wxAUI_INSERT_PANE, wxAUI_INSERT_ROW or wxAUI_INSERT_DOCK.

◆ LoadPaneInfo()

void wxAuiManager::LoadPaneInfo ( wxString  pane_part,
wxAuiPaneInfo pane 
)

LoadPaneInfo() is similar to LoadPerspective, with the exception that it only loads information about a single pane.

This method writes the serialized data into the passed pane. Pointers to UI elements are not modified.

Note
This operation also changes the name in the pane information!
See also
LoadPerspective
SavePaneInfo().
SavePerspective

◆ LoadPerspective()

bool wxAuiManager::LoadPerspective ( const wxString perspective,
bool  update = true 
)

Loads a saved perspective.

A perspective is the layout state of an AUI managed window.

All currently existing panes that have an object in "perspective" with the same name ("equivalent") will receive the layout parameters of the object in "perspective". Existing panes that do not have an equivalent in "perspective" remain unchanged, objects in "perspective" having no equivalent in the manager are ignored.

Parameters
perspectiveSerialized layout information of a perspective (excl. pointers to UI elements).
updateIf update is true, wxAuiManager::Update() is automatically invoked, thus realizing the specified perspective on screen.
See also
LoadPaneInfo
LoadPerspective
SavePerspective

◆ MaximizePane()

void wxAuiManager::MaximizePane ( wxAuiPaneInfo paneInfo)

Maximize the given pane.

◆ ProcessDockResult()

virtual bool wxAuiManager::ProcessDockResult ( wxAuiPaneInfo target,
const wxAuiPaneInfo new_pos 
)
protectedvirtual

ProcessDockResult() is a protected member of the wxAUI layout manager.

It can be overridden by derived classes to provide custom docking calculations.

◆ RestoreMaximizedPane()

void wxAuiManager::RestoreMaximizedPane ( )

Restore the previously maximized pane.

◆ RestorePane()

void wxAuiManager::RestorePane ( wxAuiPaneInfo paneInfo)

Restore the last state of the given pane.

◆ SavePaneInfo()

wxString wxAuiManager::SavePaneInfo ( const wxAuiPaneInfo pane)

SavePaneInfo() is similar to SavePerspective, with the exception that it only saves information about a single pane.

Parameters
panePane whose layout parameters should be serialized.
Returns
The serialized layout parameters of the pane are returned within the string. Information about the pointers to UI elements stored in the pane are not serialized.
See also
LoadPaneInfo
LoadPerspective
SavePerspective

◆ SavePerspective()

wxString wxAuiManager::SavePerspective ( )

Saves the entire user interface layout into an encoded wxString, which can then be stored by the application (probably using wxConfig).

See also
LoadPerspective
LoadPaneInfo
SavePaneInfo

◆ SetArtProvider()

void wxAuiManager::SetArtProvider ( wxAuiDockArt art_provider)

Instructs wxAuiManager to use art provider specified by parameter art_provider for all drawing calls.

This allows pluggable look-and-feel features. The previous art provider object, if any, will be deleted by wxAuiManager.

See also
wxAuiDockArt.

◆ SetDockSizeConstraint()

void wxAuiManager::SetDockSizeConstraint ( double  widthpct,
double  heightpct 
)

When 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 unwieldy large.

wxAuiManager by default limits the size of any new dock to 1/3 of the window size. For horizontal docks, this would be 1/3 of the window height. For vertical docks, 1/3 of the width.

Calling this function will adjust this constraint value. The numbers must be between 0.0 and 1.0. For instance, calling SetDockSizeContraint with 0.5, 0.5 will cause new docks to be limited to half of the size of the entire managed window.

◆ SetFlags()

void wxAuiManager::SetFlags ( unsigned int  flags)

This method is used to specify wxAuiManagerOption's flags.

flags specifies options which allow the frame management behaviour to be modified.

◆ SetManagedWindow()

void wxAuiManager::SetManagedWindow ( wxWindow managed_wnd)

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.

◆ ShowHint()

virtual void wxAuiManager::ShowHint ( const wxRect rect)
virtual

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.

◆ StartPaneDrag()

void wxAuiManager::StartPaneDrag ( wxWindow paneWindow,
const wxPoint offset 
)

Mostly used internally to define the drag action parameters.

◆ UnInit()

void wxAuiManager::UnInit ( )

Dissociate the managed window from the manager.

This function may be called before the managed frame or window is destroyed, but, since wxWidgets 3.1.4, it's unnecessary to call it explicitly, as it will be called automatically when this window is destroyed, as well as when the manager itself is.

◆ Update()

void wxAuiManager::Update ( )

This method is called after any number of changes are made to any of the managed panes.

Update() must be invoked after AddPane() or InsertPane() are called in order to "realize" or "commit" the changes. In addition, any number of changes may be made to wxAuiPaneInfo structures (retrieved with wxAuiManager::GetPane), but to realize the changes, Update() must be called. This construction allows pane flicker to be avoided by updating the whole layout at one time.