def __init__(self,window):
Gtk.Grid.__init__(self)
self.window = window
self.set_column_spacing(25)
#arbitrary initialisations for underdeveloped stuff
self.stepsbox = steps_box(self)
self.contentgrid = content_grid2(self)
#end of arbitary stuff
self.attach(self.stepsbox,0,0,1,1)
self.attach_next_to(self.contentgrid,self.stepsbox,Gtk.PositionType.RIGHT,1,1)
self.name = "HELLO"
评论列表
文章目录