Module hexeditor :: Class StringInfoSizer
[hide private]
[frames] | no frames]

Class StringInfoSizer

source code

     object --+                
              |                
wx._core.Object --+            
                  |            
     wx._core.Sizer --+        
                      |        
     wx._core.GridSizer --+    
                          |    
     wx._core.FlexGridSizer --+
                              |
                             StringInfoSizer

Instance Methods [hide private]
 
__init__(self, parent)
__init__(self, int rows=1, int cols=0, int vgap=0, int hgap=0) -> FlexGridSizer
source code
 
set(self, data) source code
 
get(self, data) source code

Inherited from wx._core.FlexGridSizer: AddGrowableCol, AddGrowableRow, GetColWidths, GetFlexibleDirection, GetNonFlexibleGrowMode, GetRowHeights, RemoveGrowableCol, RemoveGrowableRow, SetFlexibleDirection, SetNonFlexibleGrowMode

Inherited from wx._core.GridSizer: CalcRowsCols, GetCols, GetHGap, GetRows, GetVGap, SetCols, SetHGap, SetRows, SetVGap

Inherited from wx._core.Sizer: Add, AddF, AddItem, AddMany, AddSizer, AddSpacer, AddStretchSpacer, AddWindow, CalcMin, Clear, ComputeFittingClientSize, ComputeFittingWindowSize, DeleteWindows, Detach, Fit, FitInside, GetChildren, GetContainingWindow, GetItem, GetMinSize, GetMinSizeTuple, GetPosition, GetPositionTuple, GetSize, GetSizeTuple, Hide, Insert, InsertF, InsertItem, InsertSizer, InsertSpacer, InsertStretchSpacer, InsertWindow, IsShown, Layout, Prepend, PrependF, PrependItem, PrependSizer, PrependSpacer, PrependStretchSpacer, PrependWindow, RecalcSizes, Remove, RemovePos, RemoveSizer, RemoveWindow, Replace, SetContainingWindow, SetDimension, SetItemMinSize, SetMinSize, SetSizeHints, SetVirtualSizeHints, Show, ShowItems, __del__, __swig_destroy__

Inherited from wx._core.Sizer (private): _ReplaceItem, _ReplaceSizer, _ReplaceWin, _SetItemMinSize, _setOORInfo

Inherited from wx._core.Object: Destroy, GetClassName, IsSameAs, __repr__

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __str__

Class Variables [hide private]
  _fixed_choices = ['Fixed', 'Pascal']
Properties [hide private]

Inherited from wx._core.FlexGridSizer: ColWidths, FlexibleDirection, NonFlexibleGrowMode, RowHeights, thisown

Inherited from wx._core.GridSizer: Cols, HGap, Rows, VGap

Inherited from wx._core.Sizer: Children, ContainingWindow, MinSize, Position, Size

Inherited from wx._core.Object: ClassName

Inherited from object: __class__

Method Details [hide private]

__init__(self, parent)
(Constructor)

source code 

__init__(self, int rows=1, int cols=0, int vgap=0, int hgap=0) -> FlexGridSizer

Constructor for a wx.FlexGridSizer. *rows* and *cols* determine the number of columns and rows in the sizer - if either of the parameters is zero, it will be calculated to from the total number of children in the sizer, thus making the sizer grow dynamically. *vgap* and *hgap* define extra space between all children.

Overrides: object.__init__
(inherited documentation)