def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizad Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) source_tooltip = self.tr( 'Please record who is the custodian of this layer i.e. ' 'OpenStreetMap') self.lblSource.setToolTip(source_tooltip) self.leSource.setToolTip(source_tooltip) date_tooltip = self.tr( 'When was this data collected or downloaded i.e. 1-May-2014') self.lblDate.setToolTip(date_tooltip) self.dtSource_date.setToolTip(date_tooltip) scale_tooltip = self.tr('What is the scale of this layer?') self.lblScale.setToolTip(scale_tooltip) self.leSource_scale.setToolTip(scale_tooltip) url_tooltip = self.tr('Does the custodians have their own website ' 'i.e. www.openstreetmap.org') self.lblURL.setToolTip(url_tooltip) self.leSource_url.setToolTip(url_tooltip)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizad Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) source_tooltip = self.tr( 'Please record who is the custodian of this layer i.e. ' 'OpenStreetMap') self.lblSource.setToolTip(source_tooltip) self.leSource.setToolTip(source_tooltip) date_tooltip = self.tr( 'When was this data collected or downloaded i.e. 1-May-2014') self.lblDate.setToolTip(date_tooltip) self.dtSource_date.setToolTip(date_tooltip) scale_tooltip = self.tr('What is the scale of this layer?') self.lblScale.setToolTip(scale_tooltip) self.leSource_scale.setToolTip(scale_tooltip) url_tooltip = self.tr( 'Does the custodians have their own website ' 'i.e. www.openstreetmap.org') self.lblURL.setToolTip(url_tooltip) self.leSource_url.setToolTip(url_tooltip)
def __init__(self, parent=None): """Constructor for the tab. :param parent: widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.mode = SINGLE_MODE
def __init__(self, parent=None): """Constructor for the tab. :param parent: widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.field_mapping_widget = FieldMappingWidget(self, self.parent.iface)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.classes = OrderedDict()
def __init__(self, parent=None): """Constructor for the tab. :param parent: widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.lstBands.itemSelectionChanged.connect( self.update_band_description)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.treeClasses.itemChanged.connect(self.update_dragged_item_flags)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.swExtent = None self.extent_dialog = None
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizad Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.treeClasses.itemChanged.connect(self.update_dragged_item_flags)
def __init__(self, parent): """Init method.""" WizardStep.__init__(self, parent) enable_messaging(self.results_webview) self.iface = parent.iface self.impact_function = None self.extent = Extent(self.iface) self.zoom_to_impact_flag = None self.hide_exposure_flag = None
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizad Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.parameter_dialog = None self.twParams = None
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizad Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) # Set model for browser browser_model = QgsBrowserModel() self.proxy_model = LayerBrowserProxyModel(self) self.proxy_model.setSourceModel(browser_model)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) title_tooltip = self.tr('Title of the layer.') self.lblTitle.setToolTip(title_tooltip) self.leTitle.setToolTip(title_tooltip)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizad Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) title_tooltip = self.tr('Title of the layer.') self.lblTitle.setToolTip(title_tooltip) self.leTitle.setToolTip(title_tooltip)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.parameters = [] self.parameter_container = ParameterContainer() self.kwExtraKeywordsGridLayout.addWidget(self.parameter_container)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizad Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) # string constants self.global_default_string = global_default_attribute['name'] self.global_default_data = global_default_attribute['id'] self.do_not_use_string = do_not_use_attribute['name'] self.do_not_use_data = do_not_use_attribute['id']
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.extra_parameters = [(DefaultValueParameter, DefaultValueParameterWidget)] self.parameters = [] self.parameter_container = ParameterContainer( extra_parameters=self.extra_parameters) self.default_values_grid.addWidget(self.parameter_container)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.extra_parameters = [ (DefaultValueParameter, DefaultValueParameterWidget) ] self.parameters = [] self.parameter_container = ParameterContainer( extra_parameters=self.extra_parameters) self.default_values_grid.addWidget(self.parameter_container)
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.extra_parameters = [(DefaultSelectParameter, DefaultSelectParameterWidget)] self.parameters = [] self.parameter_container = ParameterContainer( extra_parameters=self.extra_parameters) self.kwExtraKeywordsGridLayout.addWidget(self.parameter_container) self.message_label = QLabel()
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.extra_parameters = [ (DefaultSelectParameter, DefaultSelectParameterWidget) ] self.parameters = [] self.parameter_container = ParameterContainer( extra_parameters=self.extra_parameters) self.kwExtraKeywordsGridLayout.addWidget(self.parameter_container) self.message_label = QLabel()
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizad Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) # Collect some serial widgets self.extra_keywords_widgets = [ {'cbo': self.cboExtraKeyword1, 'lbl': self.lblExtraKeyword1}, {'cbo': self.cboExtraKeyword2, 'lbl': self.lblExtraKeyword2}, {'cbo': self.cboExtraKeyword3, 'lbl': self.lblExtraKeyword3}, {'cbo': self.cboExtraKeyword4, 'lbl': self.lblExtraKeyword4}, {'cbo': self.cboExtraKeyword5, 'lbl': self.lblExtraKeyword5}, {'cbo': self.cboExtraKeyword6, 'lbl': self.lblExtraKeyword6}, {'cbo': self.cboExtraKeyword7, 'lbl': self.lblExtraKeyword7}, {'cbo': self.cboExtraKeyword8, 'lbl': self.lblExtraKeyword8} ] for ekw in self.extra_keywords_widgets: ekw['key'] = None ekw['slave_key'] = None
def __init__(self, parent=None): """Constructor for the tab. :param parent: widget to use as parent (Wizard Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) self.exposures = [] self.exposure_labels = [] self.exposure_combo_boxes = [] self.exposure_edit_buttons = [] self.mode = CHOOSE_MODE self.layer_purpose = None self.layer_mode = None # Store the current representative state of the UI. # self.classifications = {} self.value_maps = {} self.thresholds = {} # Temporary attributes self.threshold_classes = OrderedDict() self.active_exposure = None self.list_unique_values = None self.tree_mapping_widget = None # GUI, good for testing self.save_button = None self.restore_default_button = None # Has default threshold # Trick for EQ raster for population #3853 self.use_default_thresholds = False # Index of the special case exposure classification self.special_case_index = None
def __init__(self, parent=None): """Constructor for the tab. :param parent: parent - widget to use as parent (Wizad Dialog). :type parent: QWidget """ WizardStep.__init__(self, parent) # Collect some serial widgets self.extra_keywords_widgets = [{ 'cbo': self.cboExtraKeyword1, 'lbl': self.lblExtraKeyword1 }, { 'cbo': self.cboExtraKeyword2, 'lbl': self.lblExtraKeyword2 }, { 'cbo': self.cboExtraKeyword3, 'lbl': self.lblExtraKeyword3 }, { 'cbo': self.cboExtraKeyword4, 'lbl': self.lblExtraKeyword4 }, { 'cbo': self.cboExtraKeyword5, 'lbl': self.lblExtraKeyword5 }, { 'cbo': self.cboExtraKeyword6, 'lbl': self.lblExtraKeyword6 }, { 'cbo': self.cboExtraKeyword7, 'lbl': self.lblExtraKeyword7 }, { 'cbo': self.cboExtraKeyword8, 'lbl': self.lblExtraKeyword8 }] for ekw in self.extra_keywords_widgets: ekw['key'] = None ekw['slave_key'] = None