Exemplo n.º 1
0
 def set_referenced_table(self, referenced_table: str):
     """
     Selects the specified table in the referenced table combobox.
     :param referenced_table: Name of the referenced table.
     :type: str
     """
     if self.category() == 'View':
         GuiUtils.set_combo_index_by_data(self.cboReferencedTable,
                                          referenced_table)
Exemplo n.º 2
0
 def setValue(self, value):
     GuiUtils.set_combo_index_by_data(self.control, value)
Exemplo n.º 3
0
 def setSelectedSource(self, dataSourceName):
     """
     Set the data source name if it exists in the list.
     """
     GuiUtils.set_combo_index_by_data(self.cboDataSource, dataSourceName)
Exemplo 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())
     GuiUtils.set_combo_index_by_data(self.cbo_legend_pos,
                                      config.legend_position())