wxAuiDockInfo Class Reference

#include <framemanager.h>

List of all members.

Public Member Functions

 wxAuiDockInfo ()
 wxAuiDockInfo (const wxAuiDockInfo &c)
wxAuiDockInfooperator= (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


Detailed Description

Definition at line 632 of file framemanager.h.


Constructor & Destructor Documentation

wxAuiDockInfo::wxAuiDockInfo  )  [inline]
 

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     }

wxAuiDockInfo::wxAuiDockInfo const wxAuiDockInfo c  )  [inline]
 

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     }


Member Function Documentation

bool wxAuiDockInfo::IsHorizontal  )  const [inline]
 

Definition at line 679 of file framemanager.h.

00679                               { return (dock_direction == wxAUI_DOCK_TOP ||
00680                              dock_direction == wxAUI_DOCK_BOTTOM) ? true:false; }

bool wxAuiDockInfo::IsOk  )  const [inline]
 

Definition at line 678 of file framemanager.h.

00678 { return (dock_direction != 0) ? true : false; }

bool wxAuiDockInfo::IsVertical  )  const [inline]
 

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; }

wxAuiDockInfo& wxAuiDockInfo::operator= const wxAuiDockInfo c  )  [inline]
 

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     }


Member Data Documentation

int wxAuiDockInfo::dock_direction
 

Definition at line 687 of file framemanager.h.

int wxAuiDockInfo::dock_layer
 

Definition at line 688 of file framemanager.h.

int wxAuiDockInfo::dock_row
 

Definition at line 689 of file framemanager.h.

bool wxAuiDockInfo::fixed
 

Definition at line 694 of file framemanager.h.

int wxAuiDockInfo::min_size
 

Definition at line 691 of file framemanager.h.

wxAuiPaneInfoPtrArray wxAuiDockInfo::panes
 

Definition at line 685 of file framemanager.h.

wxRect wxAuiDockInfo::rect
 

Definition at line 686 of file framemanager.h.

bool wxAuiDockInfo::resizable
 

Definition at line 692 of file framemanager.h.

int wxAuiDockInfo::size
 

Definition at line 690 of file framemanager.h.

bool wxAuiDockInfo::toolbar
 

Definition at line 693 of file framemanager.h.


The documentation for this class was generated from the following file:
Generated on Sat Nov 10 04:03:13 2007 for Camelot by  doxygen 1.4.4