#include <framemanager.h>
Public Member Functions | |
wxAuiDockInfo () | |
wxAuiDockInfo (const wxAuiDockInfo &c) | |
wxAuiDockInfo & | operator= (const wxAuiDockInfo &c) |
bool | IsOk () const |
bool | IsHorizontal () const |
bool | IsVertical () const |
Public Attributes | |
wxAuiPaneInfoPtrArray | panes |
wxRect | rect |
int | dock_direction |
int | dock_layer |
int | dock_row |
int | size |
int | min_size |
bool | resizable |
bool | toolbar |
bool | fixed |
Definition at line 632 of file framemanager.h.
|
Definition at line 635 of file framemanager.h. 00636 { 00637 dock_direction = 0; 00638 dock_layer = 0; 00639 dock_row = 0; 00640 size = 0; 00641 min_size = 0; 00642 resizable = true; 00643 fixed = false; 00644 toolbar = false; 00645 }
|
|
Definition at line 648 of file framemanager.h. 00649 { 00650 dock_direction = c.dock_direction; 00651 dock_layer = c.dock_layer; 00652 dock_row = c.dock_row; 00653 size = c.size; 00654 min_size = c.min_size; 00655 resizable = c.resizable; 00656 fixed = c.fixed; 00657 toolbar = c.toolbar; 00658 panes = c.panes; 00659 rect = c.rect; 00660 }
|
|
Definition at line 679 of file framemanager.h. 00679 { return (dock_direction == wxAUI_DOCK_TOP || 00680 dock_direction == wxAUI_DOCK_BOTTOM) ? true:false; }
|
|
Definition at line 678 of file framemanager.h. 00678 { return (dock_direction != 0) ? true : false; }
|
|
Definition at line 681 of file framemanager.h. 00681 { return (dock_direction == wxAUI_DOCK_LEFT || 00682 dock_direction == wxAUI_DOCK_RIGHT || 00683 dock_direction == wxAUI_DOCK_CENTER) ? true:false; }
|
|
Definition at line 662 of file framemanager.h. 00663 { 00664 dock_direction = c.dock_direction; 00665 dock_layer = c.dock_layer; 00666 dock_row = c.dock_row; 00667 size = c.size; 00668 min_size = c.min_size; 00669 resizable = c.resizable; 00670 fixed = c.fixed; 00671 toolbar = c.toolbar; 00672 panes = c.panes; 00673 rect = c.rect; 00674 return *this; 00675 }
|
|
Definition at line 687 of file framemanager.h. |
|
Definition at line 688 of file framemanager.h. |
|
Definition at line 689 of file framemanager.h. |
|
Definition at line 694 of file framemanager.h. |
|
Definition at line 691 of file framemanager.h. |
|
Definition at line 685 of file framemanager.h. |
|
Definition at line 686 of file framemanager.h. |
|
Definition at line 692 of file framemanager.h. |
|
Definition at line 690 of file framemanager.h. |
|
Definition at line 693 of file framemanager.h. |