def setSelectedSource(self,dataSourceName): """ Set the data source name if it exists in the list. """ setComboCurrentIndexWithItemData( self.cboDataSource, dataSourceName )
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)
def setValue(self, value): setComboCurrentIndexWithItemData(self.control, value)
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())
def setValue(self,value): setComboCurrentIndexWithItemData(self.control,value)