QGIS/python/plugins/processing/gui/ResultsDialog.py

87 lines
2.7 KiB
Python
Raw Normal View History

2012-10-05 23:28:47 +02:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
ResultsDialog.py
---------------------
Date : August 2012
Copyright : (C) 2012 by Victor Olaya
Email : volayaf at gmail dot com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
__author__ = 'Victor Olaya'
__date__ = 'August 2012'
__copyright__ = '(C) 2012, Victor Olaya'
2012-10-05 23:28:47 +02:00
# This will get replaced with a git SHA1 when you do a git archive
2012-10-05 23:28:47 +02:00
__revision__ = '$Format:%H$'
2015-05-18 21:04:20 +03:00
import os
import codecs
2015-05-18 21:04:20 +03:00
2016-04-29 11:39:26 +02:00
from qgis.PyQt import uic
2016-04-22 10:38:48 +02:00
from qgis.PyQt.QtCore import QUrl
from qgis.PyQt.QtGui import QIcon
from qgis.PyQt.QtWidgets import QStyle, QTreeWidgetItem
2012-10-30 15:07:24 +02:00
2013-08-12 20:44:27 +02:00
from processing.core.ProcessingResults import ProcessingResults
2012-09-15 18:25:25 +03:00
2015-05-18 21:04:20 +03:00
pluginPath = os.path.split(os.path.dirname(__file__))[0]
WIDGET, BASE = uic.loadUiType(
os.path.join(pluginPath, 'ui', 'DlgResults.ui'))
2012-10-30 15:07:24 +02:00
2015-05-18 21:04:20 +03:00
class ResultsDialog(BASE, WIDGET):
2012-09-15 18:25:25 +03:00
def __init__(self):
2015-05-18 21:04:20 +03:00
super(ResultsDialog, self).__init__(None)
2012-10-30 15:07:24 +02:00
self.setupUi(self)
2012-12-10 00:12:07 +01:00
2012-10-30 15:07:24 +02:00
self.keyIcon = QIcon()
self.keyIcon.addPixmap(self.style().standardPixmap(QStyle.SP_FileIcon))
self.tree.currentItemChanged.connect(self.changeResult)
2012-09-15 18:25:25 +03:00
self.fillTree()
2012-10-30 15:07:24 +02:00
2012-09-15 18:25:25 +03:00
if self.lastUrl:
self.txtResults.setHtml(self.loadResults(self.lastUrl))
2012-09-15 18:25:25 +03:00
def fillTree(self):
2013-08-12 20:44:27 +02:00
elements = ProcessingResults.getResults()
2012-09-15 18:25:25 +03:00
if len(elements) == 0:
self.lastUrl = None
return
for element in elements:
item = TreeResultItem(element)
item.setIcon(0, self.keyIcon)
self.tree.addTopLevelItem(item)
self.lastUrl = elements[-1].filename
2012-09-15 18:25:25 +03:00
def changeResult(self):
item = self.tree.currentItem()
if isinstance(item, TreeResultItem):
self.txtResults.setHtml(self.loadResults(item.filename))
def loadResults(self, fileName):
with codecs.open(fileName, encoding='utf-8') as f:
content = f.read()
return content
2012-09-15 18:25:25 +03:00
2012-10-30 15:07:24 +02:00
class TreeResultItem(QTreeWidgetItem):
2012-09-15 18:25:25 +03:00
def __init__(self, result):
QTreeWidgetItem.__init__(self)
self.filename = result.filename
self.setText(0, result.name)