Exemplo n.º 1
0
 def col_chk_toggle( self, cell, path ):
     model = ListStore.projShotStore
     
     model[path][const.COLUMN_CHOICE] = not model[path][const.COLUMN_CHOICE]
     
     gui_util.convertChoiceCount(self.chk_stat_lbl)
     
     return False
Exemplo n.º 2
0
	def clkCheckUnAll(self, widget, event, data=None):
		# 버튼 선택해제 클릭시
		for row in ListStore.projShotStore:
			row[const.COLUMN_CHOICE] = False

		gui_util.convertChoiceCount(self.lbl)
Exemplo n.º 3
0
	def clkPubCheckAll(self, widget, event, data=None):
		# 버튼 전체선택 클릭시 
		for row in ListStore.projShotStore:
			row[const.COLUMN_CHOICE] = True

		gui_util.convertChoiceCount(self.lbl)