Package schrodinger :: Package application :: Package msv :: Package gui :: Module viewmodel :: Class FixedColumn
[hide private]
[frames] | no frames]

Class FixedColumn

               object --+    
                        |    
ui.qt.table_helper.Column --+
                            |
                           FixedColumn

A table column that is fixed on the left or right of the scrollable columns. This obect is intended to be used in the table_helper.TableColumns enum.

Instance Methods [hide private]
 
__init__(self, title, role=None, fmt=None, all_rows=False)
x.__init__(...) initializes x; see help(type(x)) for signature

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  _count = 13
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, title, role=None, fmt=None, all_rows=False)
(Constructor)

 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • title (basestring) - The title to display in the column header.
  • role (int or NoneType) - The role that the column should display data from. May be None if no data is to be displayed in the column (e.g. the column that contains only group expansion arrows).
  • fmt (basestring) - A string describing the formatting to apply to data before displaying it. If None, no formatting will be applied.
  • all_rows (bool) - True if the column contains data for all rows. False if the column only contains data for sequence rows.
Overrides: object.__init__