Ejemplo n.º 1
0
class DzialkiDialogTest(unittest.TestCase):
    """Test dialog works."""

    def setUp(self):
        """Runs before each test."""
        self.dialog = DzialkiDialog(None)

    def tearDown(self):
        """Runs after each test."""
        self.dialog = None

    def test_dialog_ok(self):
        """Test we can click OK."""

        button = self.dialog.button_box.button(QDialogButtonBox.Ok)
        button.click()
        result = self.dialog.result()
        self.assertEqual(result, QDialog.Accepted)

    def test_dialog_cancel(self):
        """Test we can click cancel."""
        button = self.dialog.button_box.button(QDialogButtonBox.Cancel)
        button.click()
        result = self.dialog.result()
        self.assertEqual(result, QDialog.Rejected)
Ejemplo n.º 2
0
    def __init__(self, iface):
        """Constructor.

        :param iface: An interface instance that will be passed to this class
            which provides the hook by which you can manipulate the QGIS
            application at run time.
        :type iface: QgsInterface
        """
        # Save reference to the QGIS interface
        self.iface = iface
        # initialize plugin directory
        self.plugin_dir = os.path.dirname(__file__)
        # initialize locale
        locale = QSettings().value('locale/userLocale')[0:2]
        locale_path = os.path.join(
            self.plugin_dir,
            'i18n',
            'Dzialki_{}.qm'.format(locale))

        if os.path.exists(locale_path):
            self.translator = QTranslator()
            self.translator.load(locale_path)

            if qVersion() > '4.3.3':
                QCoreApplication.installTranslator(self.translator)

        # Create the dialog (after translation) and keep reference
        self.dlg = DzialkiDialog()

        # Declare instance attributes
        self.actions = []
        self.menu = self.tr(u'&Dzialki')
        # TODO: We are going to let the user set this up in a future iteration
        self.toolbar = self.iface.addToolBar(u'Dzialki')
        self.toolbar.setObjectName(u'Dzialki')
Ejemplo n.º 3
0
class Dzialki:
    """QGIS Plugin Implementation."""

    def __init__(self, iface):
        """Constructor.

        :param iface: An interface instance that will be passed to this class
            which provides the hook by which you can manipulate the QGIS
            application at run time.
        :type iface: QgsInterface
        """
        # Save reference to the QGIS interface
        self.iface = iface
        # initialize plugin directory
        self.plugin_dir = os.path.dirname(__file__)
        # initialize locale
        locale = QSettings().value('locale/userLocale')[0:2]
        locale_path = os.path.join(
            self.plugin_dir,
            'i18n',
            'Dzialki_{}.qm'.format(locale))

        if os.path.exists(locale_path):
            self.translator = QTranslator()
            self.translator.load(locale_path)

            if qVersion() > '4.3.3':
                QCoreApplication.installTranslator(self.translator)

        # Create the dialog (after translation) and keep reference
        self.dlg = DzialkiDialog()

        # Declare instance attributes
        self.actions = []
        self.menu = self.tr(u'&Dzialki')
        # TODO: We are going to let the user set this up in a future iteration
        self.toolbar = self.iface.addToolBar(u'Dzialki')
        self.toolbar.setObjectName(u'Dzialki')

    # noinspection PyMethodMayBeStatic
    def tr(self, message):
        """Get the translation for a string using Qt translation API.

        We implement this ourselves since we do not inherit QObject.

        :param message: String for translation.
        :type message: str, QString

        :returns: Translated version of message.
        :rtype: QString
        """
        # noinspection PyTypeChecker,PyArgumentList,PyCallByClass
        return QCoreApplication.translate('Dzialki', message)


    def add_action(
        self,
        icon_path,
        text,
        callback,
        enabled_flag=True,
        add_to_menu=True,
        add_to_toolbar=True,
        status_tip=None,
        whats_this=None,
        parent=None):
        """Add a toolbar icon to the toolbar.

        :param icon_path: Path to the icon for this action. Can be a resource
            path (e.g. ':/plugins/foo/bar.png') or a normal file system path.
        :type icon_path: str

        :param text: Text that should be shown in menu items for this action.
        :type text: str

        :param callback: Function to be called when the action is triggered.
        :type callback: function

        :param enabled_flag: A flag indicating if the action should be enabled
            by default. Defaults to True.
        :type enabled_flag: bool

        :param add_to_menu: Flag indicating whether the action should also
            be added to the menu. Defaults to True.
        :type add_to_menu: bool

        :param add_to_toolbar: Flag indicating whether the action should also
            be added to the toolbar. Defaults to True.
        :type add_to_toolbar: bool

        :param status_tip: Optional text to show in a popup when mouse pointer
            hovers over the action.
        :type status_tip: str

        :param parent: Parent widget for the new action. Defaults None.
        :type parent: QWidget

        :param whats_this: Optional text to show in the status bar when the
            mouse pointer hovers over the action.

        :returns: The action that was created. Note that the action is also
            added to self.actions list.
        :rtype: QAction
        """

        icon = QIcon(icon_path)
        action = QAction(icon, text, parent)
        action.triggered.connect(callback)
        action.setEnabled(enabled_flag)

        if status_tip is not None:
            action.setStatusTip(status_tip)

        if whats_this is not None:
            action.setWhatsThis(whats_this)

        if add_to_toolbar:
            self.toolbar.addAction(action)

        if add_to_menu:
            self.iface.addPluginToMenu(
                self.menu,
                action)

        self.actions.append(action)

        return action

    def initGui(self):
        """Create the menu entries and toolbar icons inside the QGIS GUI."""

        icon_path = ':/plugins/Dzialki/icon.png'
        self.add_action(
            icon_path,
            text=self.tr(u'Dzialki'),
            callback=self.run,
            parent=self.iface.mainWindow())


    def unload(self):
        """Removes the plugin menu item and icon from QGIS GUI."""
        for action in self.actions:
            self.iface.removePluginMenu(
                self.tr(u'&Dzialki'),
                action)
            self.iface.removeToolBarIcon(action)
        # remove the toolbar
        del self.toolbar
        
    def szukaj(self):
        # selekcja atrybutów na podstawie zaznaczonych wartoœci
        self.iface.mapCanvas().setSelectionColor( QColor("yellow") )
        warstwa = self.iface.mapCanvas().currentLayer()
        
        #wartoœci z coboBoxów do zmiennej
        varObreb = unicode(self.dlg.obrebComboBox.currentText())
        varNumer = unicode(self.dlg.dzialkaComboBox.currentText())
        varArkusz = unicode(self.dlg.arkuszComboBox.currentText())
        
        #request = QgsFeatureRequest().setFilterExpression( "\"OBREB\"='" + varObreb + "' OR \"NUMER\"='"+ varNumer + "'  OR \"ARKUSZ\"='"+ varArkusz + "'" )
        expr = QgsExpression( "\"OBREB\"='" + varObreb + "' AND \"NUMER\"='"+ varNumer + "'  AND \"ARKUSZ\"='"+ varArkusz + "'" )
        it = warstwa.getFeatures( QgsFeatureRequest( expr ) )
        ids = [i.id() for i in it]
        warstwa.setSelectedFeatures( ids )
        #self.idAtlas = int(ids[0])
        
        
        #for feature in warstwa.selectedFeatures():
        #    uchwala = feature.attributes()
            
        #self.nrUchwaly = uchwala[5]
        #self.nrUchwalyReplace = self.nrUchwaly.replace("/", "_")
        
        #self.iface.messageBar().pushMessage('Sukces', self.nrUchwalyReplace, level=QgsMessageBar.SUCCESS, duration=5)
        
        #zoom do wybranej dzia³ki
        box = warstwa.boundingBoxOfSelected()
        self.iface.mapCanvas().setExtent(box)
        self.iface.mapCanvas().refresh()
        

        
    #def szukajDate(self):
        # selekcja atrybutów na podstawie zaznaczonych wartoœci
    #    self.iface.mapCanvas().setSelectionColor( QColor("yellow") )
    #    self.warstwa = self.iface.mapCanvas().currentLayer()
        
        #wartoœci z coboBoxów do zmiennej
    #    varObreb_2 = self.dlg.obrebComboBox_2.currentText()
    #    varOdDate = self.dlg.odDateEdit.date().toString("yyyy.mm.dd")
    #    varDoDate = self.dlg.doDateEdit.date().toString("yyy.mm.dd")
        
        #request = QgsFeatureRequest().setFilterExpression( "\"OBREB\"='" + varObreb + "' OR \"NUMER\"='"+ varNumer + "'  OR \"ARKUSZ\"='"+ varArkusz + "'" )
    #    expr = QgsExpression( "\"OBREB\"='" + varObreb_2 + "' AND \"OD\">='"+ varOdDate + "'  AND \"DO\"<='"+ varDoDate + "'" )
    #    it = self.warstwa.getFeatures( QgsFeatureRequest( expr ) )
    #   ids = [i.id() for i in it]
    #    self.warstwa.setSelectedFeatures( ids )

        
        #zoom do wybranej dzia³ki
    #    box = self.warstwa.boundingBoxOfSelected()
    #   self.iface.mapCanvas().setExtent(box)
    #    self.iface.mapCanvas().refresh()


    def run(self):
        """Run method that performs all the real work"""
        # show the dialog
        self.dlg.show()
        
        activeLyr=None
        for lyr in QgsMapLayerRegistry.instance().mapLayers().values():
            if lyr.name() == "dzialki_knurow":
                activeLyr = lyr
                self.iface.setActiveLayer(activeLyr)
        
        #self.dlg.btnGenerujPDF.clicked.connect(self.printWyrysPDF)
        #self.dlg.btnZaswiadczeniePDF.clicked.connect(self.printZaswiadczeniePDF)
        #self.dlg.btnWypisPDF.clicked.connect(self.printWypisPDF)
        #self.dlg.btnSzukajTab2.clicked.connect(self.szukajDate)
        self.dlg.btnSzukaj.clicked.connect(self.szukaj)
        
        self.dlg.obrebComboBox.clear()
        self.dlg.dzialkaComboBox.clear()
        self.dlg.arkuszComboBox.clear()
        
        #tabelka
        #self.dlg.ui.tableView.setModel(self.dzemodel)
        #self.dlg.ui.tableView.setColumnHidden(0,True)
        #self.dlg.ui.tableView.show()
        
        #lyr = "dzialki_gm_knurow_Rejestr MPZP"
        #self.iface.setActiveLayer(lyr)
        warstwa = self.iface.activeLayer()
        
        #filtr Obrêby
        obreb = warstwa.dataProvider().fieldNameIndex( 'OBREB' ) 
        atrObreb = warstwa.dataProvider().uniqueValues( obreb )
        cbObreb = self.dlg.obrebComboBox.addItems( atrObreb )

        
                #filtr Dzia³ki
        dzialka = warstwa.dataProvider().fieldNameIndex( 'NUMER' ) 
        atrDzialka = warstwa.dataProvider().uniqueValues( dzialka )
        cbDzialka = self.dlg.dzialkaComboBox.addItems( atrDzialka )

        
                #filtr Arkusze
        arkusz = warstwa.dataProvider().fieldNameIndex( 'ARKUSZ' ) 
        atrArkusz = warstwa.dataProvider().uniqueValues( arkusz )
        cbArkusz = self.dlg.arkuszComboBox.addItems( atrArkusz )
        
        # Run the dialog event loop
        result = self.dlg.exec_()
        # See if OK was pressed
        if result:
            # Do something useful here - delete the line containing pass and
            # substitute with your code.
            pass
Ejemplo n.º 4
0
 def setUp(self):
     """Runs before each test."""
     self.dialog = DzialkiDialog(None)