コード例 #1
0
 def report_hub_activated(self, button):
     treeview = self.builder.get_object('treeview1')
     from reports import report_hub
     report_hub.ReportHubGUI(treeview)
コード例 #2
0
	def report_hub_clicked (self, button):
		tab_num = self.get_object('notebook1').get_current_page()
		scrolled_window = self.get_object('notebook1').get_nth_page(tab_num)
		treeview = scrolled_window.get_child()
		from reports import report_hub
		report_hub.ReportHubGUI(treeview)
コード例 #3
0
ファイル: net_worth.py プロジェクト: benreu/PyGtk-Posting
 def report_hub_clicked(self, button):
     treeview = self.get_object('net_worth_treeview')
     from reports import report_hub
     report_hub.ReportHubGUI(treeview)
コード例 #4
0
 def report_hub_clicked(self, button):
     treeview = self.get_object('contact_mailing_treeview')
     from reports import report_hub
     report_hub.ReportHubGUI(treeview)
コード例 #5
0
 def report_hub_activated(self, menuitem):
     treeview = self.get_object('treeview2')
     from reports import report_hub
     report_hub.ReportHubGUI(treeview)
コード例 #6
0
 def expense_report_hub_clicked(self, button):
     treeview = self.get_object('expense_treeview')
     from reports import report_hub
     report_hub.ReportHubGUI(treeview)
コード例 #7
0
 def report_hub_activated(self, menuitem):
     from reports import report_hub
     report_hub.ReportHubGUI(self.treeview)