Lines Matching refs:self
86 def __init__(self, parent=None):
87 Gtk.Dialog.__init__(self, self.__class__.__name__, parent, 0, None)
89 self.connect('destroy', lambda *w: Gtk.main_quit())
93 self.modify_bg(Gtk.StateType.NORMAL, Gdk.color_parse('white'))
96 self.set_title(_("Start here with Oracle Solaris 12"))
97 self.set_border_width(5)
98 self.set_resizable(False)
99 self.vbox.set_border_width(2)
100 self.action_area.set_border_width(5)
104 self.vbox.pack_start(vbox, False, False, 0)
119 close_button=self.add_button(Gtk.STOCK_CLOSE,Gtk.ResponseType.CANCEL)
120 self.set_default_response (Gtk.ResponseType.CANCEL)
125 self.create_section(help_link, vbox)
126 self.create_section(personalize_link, vbox)
127 self.create_section(participate_link, vbox)
129 self.show_all()
131 def create_section(self, section_link, vbox):
151 self.fill_section(section_link, detail_vbox)
153 def launch_app(self,label,uri):
162 def fill_section (self, section_link, vbox):
179 link_button.connect("activate-link", self.launch_app)