mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7446 c8812cc2-4d05-0410-92ff-de0c093fc19c
27 lines
606 B
Python
27 lines
606 B
Python
from PyQt4.QtCore import *
|
|
from PyQt4.QtGui import *
|
|
|
|
from qgis.core import QgsContextHelp
|
|
|
|
from gui import Ui_Dialog
|
|
import resources
|
|
|
|
class InstallerPluginGui(QDialog, Ui_Dialog):
|
|
def __init__(self, parent, fl):
|
|
QDialog.__init__(self, parent, fl)
|
|
|
|
self.setupUi(self)
|
|
|
|
def on_buttonBrowse_released(self):
|
|
self.emit(SIGNAL("retrieveList(QString )"),"test" )
|
|
print "browse"
|
|
|
|
def on_pbnOK_released(self):
|
|
#self.hide()
|
|
self.emit(SIGNAL("installPlugin(QString )"), self.linePlugin.text() )
|
|
return
|
|
#self.done(1)
|
|
|
|
def on_pbnCancel_clicked(self):
|
|
self.close()
|