Ejemplo n.º 1
0
 def setSelectedSource(self,dataSourceName):
     """
     Set the data source name if it exists in the list.
     """
     setComboCurrentIndexWithItemData(
         self.cboDataSource,
         dataSourceName
     )
Ejemplo n.º 2
0
 def set_referenced_table(self, referenced_table):
     """
     Selects the specified table in the referenced table combobox.
     :param referenced_table: Name of the referenced table.
     :type: str
     """
     if self.category() == 'View':
         setComboCurrentIndexWithItemData(self.cboReferencedTable,
                                          referenced_table)
Ejemplo n.º 3
0
 def setValue(self, value):
     setComboCurrentIndexWithItemData(self.control, value)
Ejemplo n.º 4
0
 def _set_graph_properties(self, config):
     #Set the general graph properties from the config object
     self.txt_plot_title.setText(config.title())
     self.gb_legend.setChecked(config.insert_legend())
     setComboCurrentIndexWithItemData(self.cbo_legend_pos,
                                      config.legend_position())
Ejemplo n.º 5
0
 def setValue(self,value):
     setComboCurrentIndexWithItemData(self.control,value)