Home | Trees | Index | Help |
|
---|
Module eagle :: Class Table |
|
object
--+ |_EGObject
--+ |_EGWidget
--+ | Table
Data table.
Each column should have only one type, it will be checked. Can be accessed as a python list:>>> t = Table( 't', 'table', [ 1, 2, 3 ] ) >>> t[ 0 ] [ 1 ] >>> del t[ 1 ] >>> t[ : ] [ 1, 3 ]
Method Summary | |
---|---|
Table constructor. | |
__contains__(self,
row)
| |
__delitem__(self,
index)
| |
__delslice__(self,
start,
end)
| |
Return a tuple with ( horizontal, vertical ) resize mode | |
__getitem__(self,
index)
| |
__getslice__(self,
start,
end)
| |
__iadd__(self,
other)
| |
__len__(self)
| |
__nonzero__(self)
| |
__setitem__(self,
index,
other)
| |
__setslice__(self,
start,
end,
slice)
| |
__setup_connections__(self)
| |
__setup_connections_changed__(self)
| |
__setup_connections_editable__(self)
| |
__setup_connections_selection__(self)
| |
__setup_gui__(self)
| |
__setup_model__(self)
| |
__setup_table__(self)
| |
append(self,
row,
select,
autosize)
| |
columns_autosize(self)
| |
insert(self,
index,
row,
select,
autosize)
| |
selected(self)
| |
Inherited from _EGWidget | |
Return a list of internal widgets this Eagle widget contains. | |
Make widget invisible. | |
Set the widget as active. | |
Same as set_active ( False ) | |
Make widget visible. | |
Inherited from _EGObject | |
| |
| |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value |
Property Summary | |
---|---|
Inherited from _EGWidget | |
app | |
Inherited from _EGObject | |
id |
Class Variable Summary | |
---|---|
int |
spacing = 3 |
type |
Row = eagle.Row |
Method Details |
---|
__init__(self,
id,
label,
items=None,
types=None,
headers=None,
show_headers=True,
editable=False,
expand_columns_indexes=None,
selection_callback=None,
data_changed_callback=None)
Table constructor.
|
__get_resize_mode__(self)Return a tuple with ( horizontal, vertical ) resize mode
|
Class Variable Details |
---|
spacing
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Thu Apr 27 16:28:55 2006 | http://epydoc.sf.net |