Python qgis.PyQt.QtCore.Qt.Checked() Examples
The following are 20
code examples of qgis.PyQt.QtCore.Qt.Checked().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
qgis.PyQt.QtCore.Qt
, or try the search function
.
Example #1
Source File: manageComplex.py From DsgTools with GNU General Public License v2.0 | 6 votes |
def setEditorData(self, editor, index): """ load data from model to editor """ m = index.model() try: if index.column() == self.column: txt = m.data(index, Qt.DisplayRole) checkList = txt[1:-1].split(',') for i in range(editor.count()): item = editor.item(i) item.setCheckState(Qt.Checked if item.text() in checkList else Qt.Unchecked) else: # use default QItemDelegate.setEditorData(self, editor, index) except: pass
Example #2
Source File: buttonPropWidget.py From DsgTools with GNU General Public License v2.0 | 6 votes |
def getParameterDict(self): """ Returns a dict in the format: { 'buttonColor':--color of the button--, 'buttonToolTip':--button toolTip--, 'buttonGroupTag':--group tag of the button--, 'buttonShortcut':--shortcut-- } """ parameterDict = dict() if self.colorCheckBox.checkState() == Qt.Checked: parameterDict['buttonColor'] = ','.join(map(str,self.mColorButton.color().getRgb())) #must map to string if self.tooltipCheckBox.checkState() == Qt.Checked: parameterDict['buttonToolTip'] = self.toolTipLineEdit.text() if self.customCategoryCheckBox.checkState() == Qt.Checked: parameterDict['buttonGroupTag'] = self.customCategoryLineEdit.text() if self.shortcutCheckBox.checkState() == Qt.Checked: parameterDict['buttonShortcut'] = self.shortcutWidget.getShortcut() if self.openFormCheckBox.checkState() == Qt.Checked: parameterDict['openForm'] = True return parameterDict
Example #3
Source File: newAttributeWidget.py From DsgTools with GNU General Public License v2.0 | 6 votes |
def populateFromUiParameterJsonDict(self, uiParameterJsonDict): """ { 'schemaComboBox': --current text of schemaComboBox -- 'tableComboBox': --current text of tableComboBox-- 'allTablesCheckBox': --state of allTablesCheckBox-- 'attrWidget' : -- uiParameterJson from addAttributeWidget-- } """ if uiParameterJsonDict: if uiParameterJsonDict['allTablesCheckBox']: self.allTablesCheckBox.setCheckState(Qt.Checked) else: schemaIdx = self.schemaComboBox.findText(uiParameterJsonDict['schemaComboBox'], flags = Qt.MatchExactly) self.schemaComboBox.setCurrentIndex(schemaIdx) tableIdx = self.tableComboBox.findText(uiParameterJsonDict['tableComboBox'], flags = Qt.MatchExactly) self.tableComboBox.setCurrentIndex(tableIdx) self.addAttributeWidget.populateFromUiParameterJsonDict(uiParameterJsonDict['attrWidget'])
Example #4
Source File: newDomainValueWidget.py From DsgTools with GNU General Public License v2.0 | 6 votes |
def populateFromUiParameterJsonDict(self, uiParameterJsonDict): """ builds ui from uiParameterJsonDict { 'domainComboBox': --current text of domainComboBox -- 'allDomainCheckBox': --state of allDomainCheckBox-- 'codeLineEdit': --current text of codeLineEdit-- 'codeNameLineEdit': --current text of codeNameLineEdit-- } """ if uiParameterJsonDict: if uiParameterJsonDict['allDomainCheckBox']: self.allDomainCheckBox.setCheckState(Qt.Checked) else: domainIdx = self.domainComboBox.findText(uiParameterJsonDict['domainComboBox'], flags = Qt.MatchExactly) self.domainComboBox.setCurrentIndex(domainIdx) self.codeLineEdit.setText(uiParameterJsonDict['codeLineEdit']) self.codeNameLineEdit.setText(uiParameterJsonDict['codeNameLineEdit'])
Example #5
Source File: selectTaskWizard.py From DsgTools with GNU General Public License v2.0 | 6 votes |
def validateCurrentPage(self): if self.currentId() == 0: if self.importRadioButton.checkState() == Qt.Unchecked() and self.createNewRadioButton.checkState() == Qt.Unchecked() and self.installRadioButton.checkState() == Qt.Unchecked(): errorMsg = self.tr('An option must be chosen!\n') QMessageBox.warning(self, self.tr('Error!'), errorMsg) return False if self.installRadioButton.checkState() == Qt.Checked(): if self.settingComboBox.currentIndex() == 0: errorMsg = self.tr('A setting must be chosen!\n') QMessageBox.warning(self, self.tr('Error!'), errorMsg) return False else: return True return True else: return True
Example #6
Source File: data_sources_model.py From quickmapservices with GNU General Public License v2.0 | 5 votes |
def checkAll(self): for row in range(0, self.rootItem.childCount()): groupItem = self.rootItem.child(row) groupIndex = self.createIndex(row, self.COLUMN_VISIBILITY, groupItem) self.setData(groupIndex, Qt.Checked, Qt.CheckStateRole)
Example #7
Source File: manageComplex.py From DsgTools with GNU General Public License v2.0 | 5 votes |
def setModelData(self, editor, model, index): """ save data from editor back to model """ if index.column() == self.column: checkedItems = [] for i in range(editor.count()): item = editor.item(i) if item.checkState() == Qt.Checked: checkedItems.append(item.text()) model.setData(index, '{%s}' % ','.join(checkedItems)) else: # use default QItemDelegate.setModelData(self, editor, model, index)
Example #8
Source File: changeNullityWidget.py From DsgTools with GNU General Public License v2.0 | 5 votes |
def populateFromUiParameterJsonDict(self, uiParameterJsonDict): """ builds a dict with the following format: { 'schemaComboBox': --current text of schemaComboBox -- 'tableComboBox': --current text of tableComboBox-- 'allAttributesCheckBox': --state of allAttributesCheckBox-- 'allTablesCheckBox': --state of allTablesCheckBox-- 'attributeComboBox': --current text of attributeComboBox-- 'actionComboBoxIdx': --current index of actionComboBox-- } """ if uiParameterJsonDict: if uiParameterJsonDict['allTablesCheckBox']: self.allTablesCheckBox.setCheckState(Qt.Checked) else: schemaIdx = self.schemaComboBox.findText(uiParameterJsonDict['schemaComboBox'], flags = Qt.MatchExactly) self.schemaComboBox.setCurrentIndex(schemaIdx) tableIdx = self.tableComboBox.findText(uiParameterJsonDict['tableComboBox'], flags = Qt.MatchExactly) self.tableComboBox.setCurrentIndex(tableIdx) if uiParameterJsonDict['allAttributesCheckBox']: self.allAttributesCheckBox.setCheckState(Qt.Checked) else: attributeIdx = self.attributeComboBox.findText(uiParameterJsonDict['attributeComboBox'], flags = Qt.MatchExactly) self.attributeComboBox.setCurrentIndex(attributeIdx) self.actionComboBox.setCurrentIndex(uiParameterJsonDict['actionComboBoxIdx'])
Example #9
Source File: changeFilterWidget.py From DsgTools with GNU General Public License v2.0 | 5 votes |
def populateFromUiParameterJsonDict(self, uiParameterJsonDict): """ { 'schemaComboBox': --current text of schemaComboBox -- 'tableComboBox': ---current text of tableComboBox -- 'attributeComboBox': ---current text of attributeComboBox -- 'allAttributesCheckBox': --current state of allAttributesCheckBox-- 'allTablesCheckBox': --current state of allTablesCheckBox-- 'filterCustomSelectorWidgetToList': [--list of selected values on filterCustomSelectorWidget--] 'singleValueComboBox': --current text of singleValueComboBox-- 'actionComboBoxIdx': --current index of actionComboBoxIdx-- } """ if uiParameterJsonDict: if uiParameterJsonDict['allTablesCheckBox']: self.allTablesCheckBox.setCheckState(Qt.Checked) singleValueIdx = self.singleValueComboBox.findText(uiParameterJsonDict['singleValueComboBox'], flags = Qt.MatchExactly) self.singleValueComboBox.setCurrentIndex(singleValueIdx) self.actionComboBox.setCurrentIndex(uiParameterJsonDict['actionComboBoxIdx']) else: schemaIdx = self.schemaComboBox.findText(uiParameterJsonDict['schemaComboBox'], flags = Qt.MatchExactly) self.schemaComboBox.setCurrentIndex(schemaIdx) tableIdx = self.tableComboBox.findText(uiParameterJsonDict['tableComboBox'], flags = Qt.MatchExactly) self.tableComboBox.setCurrentIndex(tableIdx) if uiParameterJsonDict['allAttributesCheckBox']: self.allAttributesCheckBox.setCheckState(Qt.Checked) singleValueIdx = self.singleValueComboBox.findText(uiParameterJsonDict['singleValueComboBox'], flags = Qt.MatchExactly) self.singleValueComboBox.setCurrentIndex(singleValueIdx) self.actionComboBox.setCurrentIndex(uiParameterJsonDict['actionComboBoxIdx']) else: attributeIdx = self.attributeComboBox.findText(uiParameterJsonDict['attributeComboBox'], flags = Qt.MatchExactly) self.attributeComboBox.setCurrentIndex(attributeIdx) self.filterCustomSelectorWidget.selectItems(True, selectedItems=uiParameterJsonDict['filterCustomSelectorWidgetToList'])
Example #10
Source File: selectTaskWizard.py From DsgTools with GNU General Public License v2.0 | 5 votes |
def manageCombos(self): if self.installRadioButton.checkState() == Qt.Checked: self.hideSettings(False) self.populateSettingCombo(self.settingList) else: self.hideSettings(True) self.populateSettnigCombo.clear()
Example #11
Source File: setupEarthCoverage.py From DsgTools with GNU General Public License v2.0 | 5 votes |
def validateEarthCoverageTreeWidget(self): rootNode = self.treeWidget.invisibleRootItem() childCount = rootNode.childCount() for i in range(childCount): areaItem = rootNode.child(i) lineChildCount = areaItem.childCount() hasSelected = False for j in range(lineChildCount): lineChild = areaItem.child(j) if lineChild.checkState(1) == Qt.Checked: hasSelected = True break if not hasSelected: return False return True
Example #12
Source File: setupEarthCoverage.py From DsgTools with GNU General Public License v2.0 | 5 votes |
def getEarthCoverageDictFromTree(self): """ Gets earth coverage configuration from the tree widget """ invRootItem = self.treeWidget.invisibleRootItem() earthCoverageDict = dict() for i in range(invRootItem.childCount()): childClass = invRootItem.child(i) earthCoverageDict[childClass.text(0)] = [] for j in range(childClass.childCount()): if childClass.child(j).checkState(1) == Qt.Checked: earthCoverageDict[childClass.text(0)].append(childClass.child(j).text(1)) return earthCoverageDict
Example #13
Source File: setupEarthCoverage.py From DsgTools with GNU General Public License v2.0 | 5 votes |
def populateDelimiters(self): """ Populates line classes (area delimiters) """ delimiterList = [] for i in range(self.linesCustomSelector.toList.__len__()): delimiterList.append(self.linesCustomSelector.toList.item(i).text()) for i in range(self.treeWidget.invisibleRootItem().childCount()): for delimiter in delimiterList: treeItem = QtWidgets.QTreeWidgetItem(self.treeWidget.invisibleRootItem().child(i)) treeItem.setText(1,delimiter) treeItem.setFlags(Qt.ItemIsUserCheckable | Qt.ItemIsEnabled) treeItem.setCheckState(1,Qt.Checked) self.treeWidget.invisibleRootItem().child(i).setExpanded(True)
Example #14
Source File: project_configuration_dialog.py From qfieldsync with GNU Lesser General Public License v3.0 | 5 votes |
def toggle_menu_triggered(self, action): """ Toggles usae of layers :param action: the menu action that triggered this """ sync_action = SyncAction.NO_ACTION if action in (self.remove_hidden_action, self.remove_all_action): sync_action = SyncAction.REMOVE elif action in (self.add_all_offline_action, self.add_visible_offline_action): sync_action = SyncAction.OFFLINE # all layers if action in (self.remove_all_action, self.add_all_copy_action, self.add_all_offline_action): for i in range(self.layersTable.rowCount()): item = self.layersTable.item(i, 0) layer_source = item.data(Qt.UserRole) old_action = layer_source.action available_actions, _ = zip(*layer_source.available_actions) if sync_action in available_actions: layer_source.action = sync_action if layer_source.action != old_action: self.project.setDirty(True) layer_source.apply() # based on visibility elif action in (self.remove_hidden_action, self.add_visible_copy_action, self.add_visible_offline_action): visible = Qt.Unchecked if action == self.remove_hidden_action else Qt.Checked root = QgsProject.instance().layerTreeRoot() for layer in QgsProject.instance().mapLayers().values(): node = root.findLayer(layer.id()) if node and node.isVisible() == visible: layer_source = LayerSource(layer) old_action = layer_source.action available_actions, _ = zip(*layer_source.available_actions) if sync_action in available_actions: layer_source.action = sync_action if layer_source.action != old_action: self.project.setDirty(True) layer_source.apply() self.reloadProject()
Example #15
Source File: htmlExpansionDialog.py From qgis-kmltools-plugin with GNU General Public License v2.0 | 5 votes |
def accept(self): self.selected = [] cnt = self.model.rowCount() for i in range(0, cnt): item = self.model.item(i) if item.checkState() == Qt.Checked: self.selected.append(item.text()) self.close()
Example #16
Source File: htmlExpansionDialog.py From qgis-kmltools-plugin with GNU General Public License v2.0 | 5 votes |
def selectAll(self): cnt = self.model.rowCount() for i in range(0, cnt): item = self.model.item(i) item.setCheckState(Qt.Checked)
Example #17
Source File: settings.py From qgis-latlontools-plugin with GNU General Public License v2.0 | 4 votes |
def readSettings(self): '''Load the user selected settings. The settings are retained even when the user quits QGIS. This just loads the saved information into varialbles, but does not update the widgets. The widgets are updated with showEvent.''' qset = QSettings() ### CAPTURE SETTINGS ### self.captureProjection = int(qset.value('/LatLonTools/CaptureProjection', self.ProjectionTypeWgs84)) self.delimiter = qset.value('/LatLonTools/Delimiter', ', ') self.dmsPrecision = int(qset.value('/LatLonTools/DMSPrecision', 0)) self.coordOrder = int(qset.value('/LatLonTools/CoordOrder', self.OrderYX)) self.wgs84NumberFormat = int(qset.value('/LatLonTools/WGS84NumberFormat', 0)) self.otherNumberFormat = int(qset.value('/LatLonTools/OtherNumberFormat', 0)) self.plusCodesLength = int(qset.value('/LatLonTools/PlusCodesLength', 10)) self.decimalDigits = int(qset.value('/LatLonTools/DecimalDigits', 8)) self.capturePrefix = qset.value('/LatLonTools/CapturePrefix', '') self.captureSuffix = qset.value('/LatLonTools/CaptureSuffix', '') ### ZOOM TO SETTINGS ### self.zoomToCoordOrder = int(qset.value('/LatLonTools/ZoomToCoordOrder', self.OrderYX)) self.zoomToProjection = int(qset.value('/LatLonTools/ZoomToCoordType', 0)) self.persistentMarker = int(qset.value('/LatLonTools/PersistentMarker', Qt.Checked)) self.zoomToCustomCrsAuthId = qset.value('/LatLonTools/ZoomToCustomCrsId', 'EPSG:4326') self.zoomToProjectionSelectionWidget.setCrs(QgsCoordinateReferenceSystem(self.zoomToCustomCrsAuthId)) ### MULTI-ZOOM CUSTOM QML STYLE ### self.multiZoomToProjection = int(qset.value('/LatLonTools/MultiZoomToProjection', 0)) self.multiCoordOrder = int(qset.value('/LatLonTools/MultiCoordOrder', self.OrderYX)) self.multiZoomNumCol = int(qset.value('/LatLonTools/MultiZoomExtraData', 0)) self.multiZoomStyleID = int(qset.value('/LatLonTools/MultiZoomStyleID', 0)) self.qmlStyle = qset.value('/LatLonTools/QmlStyle', '') if (self.multiZoomStyleID == 2) and (self.qmlStyle == '' or self.qmlStyle is None or not os.path.isfile(self.qmlStyle)): # If the file is invalid then set to an emply string qset.setValue('/LatLonTools/QmlStyle', '') qset.setValue('/LatLonTools/MultiZoomStyleID', 0) self.qmlStyle = '' self.multiZoomStyleID = 0 ### BBOX & EXTERNAL MAP SETTINGS ### settings.readSettings() self.setEnabled()
Example #18
Source File: field_setup.py From DsgTools with GNU General Public License v2.0 | 4 votes |
def recreateAttributeTable(self, buttonItem): """ Making the attribute table with the actual values present in the tree widget """ # class row in the classListWidget classRow = self.tableComboBox.currentIndex() schemaName, tableName = self.abstractDb.getTableSchema(self.tableComboBox.currentText()) # qml dict for this class (tableName) if self.abstractDb.db.driverName() == 'QSQLITE': fullTableName = schemaName + '_' + tableName elif self.abstractDb.db.driverName() == 'QPSQL': fullTableName = schemaName + '.' + tableName qmlDict = self.buildQmlDict(fullTableName) for i in range(buttonItem.childCount()): attrItem = buttonItem.child(i) attribute = attrItem.text(0) value = attrItem.text(1) # accessing the attribute name and widget (QComboBox or QListWidget depending on data type) for i in range(self.attributeTableWidget.rowCount()): if attribute != self.attributeTableWidget.item(i, 0).text(): continue # this guy is a QComboBox or a QListWidget widgetItem = self.attributeTableWidget.cellWidget(i, 1) # this guy is a QComboBox here if attribute in list(qmlDict.keys()): if isinstance(qmlDict[attribute], dict): for i in range(widgetItem.count()): text = widgetItem.itemText(i) if text in list(qmlDict[attribute].keys()): if qmlDict[attribute][text] == value: widgetItem.setCurrentIndex(i) # this guy is a QListWidget here if isinstance(qmlDict[attribute], tuple): #getting just the values multivalues = value.replace('{', '').replace('}', '').split(',') (table, filterKeys) = qmlDict[attribute] valueRelation = self.makeValueRelationDict(table, filterKeys) #marking just the correct values for i in range(widgetItem.count()): text = widgetItem.item(i).text() if str(valueRelation[text]) in multivalues: widgetItem.item(i).setCheckState(Qt.Checked) else: value = widgetItem.setText(value) for j in [2,3]: #populate the other properties of the attribute widgetItem = self.attributeTableWidget.cellWidget(i, j) if widgetItem: textList = [key for key in list(self.optionalDict.keys()) if self.optionalDict[key] == attrItem.text(j)] if len(textList) > 0: text = textList[0] for idx in range(widgetItem.count()): if widgetItem.itemText(idx) == text: widgetItem.setCurrentIndex(idx)
Example #19
Source File: data_sources_model.py From quickmapservices with GNU General Public License v2.0 | 4 votes |
def __setupModelData(self): dsList = DataSourcesList().data_sources.values() groupInfoList = GroupsList().groups groupsItems = [] groups = [] for ds in dsList: if ds.group in groups: group_item = groupsItems[groups.index(ds.group)] else: group_item = QTreeWidgetItem() group_item.setData(self.COLUMN_GROUP_DS, Qt.DisplayRole, ds.group) group_item.setData(self.COLUMN_VISIBILITY, Qt.DisplayRole, "") group_item.setData(self.COLUMN_SOURCE, Qt.DisplayRole, ds.category) group_item.setCheckState(self.COLUMN_VISIBILITY, Qt.Unchecked) groupInfo = groupInfoList.get(ds.group) if groupInfo is not None: group_item.setIcon(self.COLUMN_GROUP_DS, QIcon(groupInfo.icon)) else: group_item.setData(self.COLUMN_GROUP_DS, Qt.DisplayRole, ds.group + " (%s!)" % self.tr("group not found")) group_item.setData(self.COLUMN_GROUP_DS, Qt.UserRole, groupInfo) groups.append(ds.group) groupsItems.append(group_item) self.rootItem.addChild(group_item) ds_item = QTreeWidgetItem() ds_item.setData(self.COLUMN_GROUP_DS, Qt.DisplayRole, ds.alias) ds_item.setIcon(self.COLUMN_GROUP_DS, QIcon(ds.icon_path)) ds_item.setData(self.COLUMN_GROUP_DS, Qt.UserRole, ds) ds_item.setData(self.COLUMN_VISIBILITY, Qt.DisplayRole, "") ds_item.setData(self.COLUMN_SOURCE, Qt.DisplayRole, ds.category) ds_check_state = Qt.Checked if ds.id in PluginSettings.get_hide_ds_id_list(): ds_check_state = Qt.Unchecked ds_item.setCheckState(self.COLUMN_VISIBILITY, ds_check_state) if group_item.childCount() != 0 and group_item.checkState(1) != ds_check_state: group_item.setCheckState(self.COLUMN_VISIBILITY, Qt.PartiallyChecked) else: group_item.setCheckState(self.COLUMN_VISIBILITY, ds_check_state) group_item.addChild( ds_item )
Example #20
Source File: settings.py From qgis-latlontools-plugin with GNU General Public License v2.0 | 4 votes |
def readSettings(self): '''Load the user selected settings. The settings are retained even when the user quits QGIS. This just loads the saved information into variables, but does not update the widgets. The widgets are updated with showEvent.''' qset = QSettings() ### CAPTURE SETTINGS ### self.captureShowLocation = int(qset.value('/LatLonTools/CaptureShowClickedLocation', Qt.Unchecked)) self.captureCustomCrsAuthId = qset.value('/LatLonTools/CaptureCustomCrsId', 'EPSG:4326') self.captureGeohashPrecision = int(qset.value('/LatLonTools/CaptureGeohashPrecision', 12)) self.captureDmmPrecision = int(qset.value('/LatLonTools/CaptureDmmPrecision', 4)) self.captureUtmPrecision = int(qset.value('/LatLonTools/CaptureUtmPrecision', 0)) self.captureAddDmsSpace = int(qset.value('/LatLonTools/CaptureAddDmsSpace', Qt.Checked)) self.capturePadZeroes = int(qset.value('/LatLonTools/CapturePadZeroes', Qt.Unchecked)) self.captureMaidenheadPrecision = int(qset.value('/LatLonTools/CaptureMaidenheadPrecision', 3)) ### EXTERNAL MAP ### self.showPlacemark = int(qset.value('/LatLonTools/ShowPlacemark', Qt.Checked)) self.mapProvider = int(qset.value('/LatLonTools/MapProvider', 0)) self.mapProviderRight = int(qset.value('/LatLonTools/MapProviderRight', 0)) self.mapZoom = int(qset.value('/LatLonTools/MapZoom', 13)) self.externalMapShowLocation = int(qset.value('/LatLonTools/ExternMapShowClickedLocation', Qt.Unchecked)) self.userMapProviders = qset.value('/LatLonTools/UserMapProviders', []) ### Multi-zoom Settings ### self.multiZoomCustomCrsAuthId = qset.value('/LatLonTools/MultiZoomCustomCrsId', 'EPSG:4326') ### BBOX CAPTURE SETTINGS ### self.bBoxCrs = int(qset.value('/LatLonTools/BBoxCrs', 0)) # Specifies WGS 84 self.bBoxFormat = int(qset.value('/LatLonTools/BBoxFormat', 0)) self.bBoxDelimiter = qset.value('/LatLonTools/BBoxDelimiter', ',') self.bBoxDigits = int(qset.value('/LatLonTools/BBoxDigits', 8)) self.bBoxPrefix = qset.value('/LatLonTools/BBoxPrefix', '') self.bBoxSuffix = qset.value('/LatLonTools/BBoxSuffix', '') ### COORDINATE CONVERSION SETTINGS ### self.converterCustomCrsAuthId = qset.value('/LatLonTools/ConverterCustomCrsId', 'EPSG:4326') self.converterCoordOrder = int(qset.value('/LatLonTools/ConverterCoordOrder', self.OrderYX)) self.converterDDPrec = int(qset.value('/LatLonTools/ConverterDDPrecision', 2)) self.converter4326DDPrec = int(qset.value('/LatLonTools/Converter4326DDPrecision', 8)) self.converterDmsPrec = int(qset.value('/LatLonTools/ConverterDmsPrecision', 0)) self.converterDmmPrec = int(qset.value('/LatLonTools/ConverterDmmPrecision', 4)) self.converterUtmPrec = int(qset.value('/LatLonTools/ConverterUtmPrecision', 0)) self.converterPlusCodeLength = int(qset.value('/LatLonTools/ConverterPlusCodeLength', 10)) self.converterGeohashPrecision = int(qset.value('/LatLonTools/ConverterGeohashPrecision', 12)) self.converterMaidenheadPrecision = int(qset.value('/LatLonTools/ConverterMaidenheadPrecision', 3)) self.converterDelimiter = qset.value('/LatLonTools/ConverterDelimiter', ', ') self.converterDdmmssDelimiter = qset.value('/LatLonTools/ConverterDdmmssDelimiter', ', ') self.converterAddDmsSpace = int(qset.value('/LatLonTools/ConverterAddDmsSpace', Qt.Checked)) self.converterPadZeroes = int(qset.value('/LatLonTools/ConverterPadZeroes', Qt.Unchecked))