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

81 lines
2.5 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
from PyQt4 import uic
from PyQt4.QtCore import QUrl
2015-05-18 21:04:20 +03:00
from PyQt4.QtGui import QIcon, 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.itemClicked.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.webView.load(self.lastUrl)
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)
2012-10-30 15:07:24 +02:00
self.lastUrl = QUrl(elements[-1].filename)
2012-09-15 18:25:25 +03:00
def changeResult(self):
item = self.tree.currentItem()
if isinstance(item, TreeResultItem):
2012-10-30 15:07:24 +02:00
url = QUrl(item.filename)
2012-09-15 18:25:25 +03:00
self.webView.load(url)
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)