Esempio n. 1
0
 def __init__(self, columns, rows):
     Container.__init__(self)
     self._cells = Matrix(columns, rows)
     self._children = []  # List of _TablePacking objects
     self._children_sorted = True
     self.rows = rows
     self.columns = columns
     self.row_spacing = self.column_spacing = 0
Esempio n. 2
0
 def __init__(self, columns, rows):
     Widget.__init__(self)
     self.set_widget(gtk.Table(rows, columns, homogeneous=False))
     self.children = Matrix(columns, rows)