2011-06-15 16:35:17 +02:00
|
|
|
#!/usr/bin/python
|
2011-06-18 18:16:46 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2011-06-15 16:35:17 +02:00
|
|
|
|
|
|
|
import os #--Uscite possibili:
|
|
|
|
import sys #---: 0 -> licenza accettata
|
|
|
|
import gettext #---: 1 -> licenza rifiutata
|
2011-06-18 18:16:46 +02:00
|
|
|
from PyQt4 import QtGui, QtCore #---: 2 -> percorso licenza sbagliato o non presente o se l'argomento digitato è -h o --help
|
2011-06-15 16:35:17 +02:00
|
|
|
|
2011-12-26 17:58:25 +01:00
|
|
|
# Decisione presa in run-time
|
|
|
|
desktop_session = QtCore.QString(os.getenv('DESKTOP_SESSION')) # Codice preso da mambatray
|
|
|
|
if (desktop_session == 'default') or (desktop_session.left(3) == 'kde'): # Scelgo le icone di kde
|
2015-10-23 23:09:38 +02:00
|
|
|
imgAccetto = "dialog-ok-apply"
|
|
|
|
imgRifiuto = "dialog-close"
|
|
|
|
imgForm = "text-rtf"
|
2011-12-26 17:58:25 +01:00
|
|
|
else: # In alternativa quelle di gnome
|
2015-10-23 23:09:38 +02:00
|
|
|
imgAccetto = "emblem-default"
|
|
|
|
imgRifiuto = "gtk-stop"
|
|
|
|
imgForm = "document"
|
2011-12-26 17:58:25 +01:00
|
|
|
|
2011-06-15 16:35:17 +02:00
|
|
|
|
2011-06-18 18:16:46 +02:00
|
|
|
def usage():
|
|
|
|
print _("Usage: license-dialog /license/path")
|
|
|
|
print _("License-dialog is a simple PyQt4 based license accept/refuse dialog")
|
|
|
|
|
|
|
|
|
2011-06-15 16:35:17 +02:00
|
|
|
gettext.install('license-dialog', '/usr/share/locale', unicode=1)
|
2011-06-18 18:16:46 +02:00
|
|
|
try:
|
|
|
|
path = sys.argv[1]
|
|
|
|
#si verifica se non si fornisce alcun argomento
|
|
|
|
except:
|
|
|
|
usage()
|
|
|
|
print _("Error: path not defined")
|
|
|
|
sys.exit(2)
|
|
|
|
|
|
|
|
|
2011-06-15 16:35:17 +02:00
|
|
|
|
|
|
|
#controlla se la licenza esiste e la assegna a txt
|
2011-06-18 18:16:46 +02:00
|
|
|
if path == "-h" or path == "--help":
|
|
|
|
usage()
|
|
|
|
sys.exit(2)
|
|
|
|
#esce con 2 se è una cartella
|
|
|
|
elif not os.path.exists(path):
|
|
|
|
usage()
|
2011-06-15 16:35:17 +02:00
|
|
|
print _("Error: Wrong path")
|
|
|
|
sys.exit(2)
|
2011-06-18 18:16:46 +02:00
|
|
|
elif os.path.isdir(path):
|
|
|
|
usage()
|
|
|
|
print _("Error: path cannot be a directory")
|
|
|
|
sys.exit(2)
|
|
|
|
|
2011-06-15 16:35:17 +02:00
|
|
|
licenza = open(path, "r")
|
2011-06-18 18:16:46 +02:00
|
|
|
txtTp = licenza.read()
|
|
|
|
#così vanno i caratteri accentati sulla QTextEdit
|
|
|
|
txt= txtTp.decode("utf-8")
|
2011-06-15 16:35:17 +02:00
|
|
|
licenza.close()
|
|
|
|
|
|
|
|
|
|
|
|
#centra il form sullo schermo
|
|
|
|
def center(self):
|
|
|
|
screen = QtGui.QDesktopWidget().screenGeometry()
|
|
|
|
size = self.geometry()
|
|
|
|
self.move((screen.width()-size.width())/2, (screen.height()-size.height())/2)
|
|
|
|
|
|
|
|
|
|
|
|
class Form(QtGui.QWidget):
|
|
|
|
def __init__(self, parent=None):
|
|
|
|
QtGui.QWidget.__init__(self, parent)
|
|
|
|
|
|
|
|
self.setWindowTitle(_("Licenze"))
|
2015-10-23 23:09:38 +02:00
|
|
|
self.setWindowIcon(QtGui.QIcon.fromTheme(imgForm))
|
2011-06-15 16:35:17 +02:00
|
|
|
self.resize(500, 400)
|
|
|
|
center(self)
|
|
|
|
QtGui.QToolTip.setFont(QtGui.QFont('sans', 10))
|
|
|
|
|
2015-10-23 23:09:38 +02:00
|
|
|
btnAccetto = QtGui.QPushButton(QtGui.QIcon.fromTheme(imgAccetto), _("I agree"))
|
2011-06-15 16:35:17 +02:00
|
|
|
btnAccetto.setToolTip(_("Click here if you want to accept the license"))
|
|
|
|
self.connect(btnAccetto, QtCore.SIGNAL('clicked()'), evtAccetto)
|
|
|
|
|
2015-10-23 23:09:38 +02:00
|
|
|
btnRifiuto = QtGui.QPushButton(QtGui.QIcon.fromTheme(imgRifiuto), _("I do not agree"))
|
2011-06-15 16:35:17 +02:00
|
|
|
btnRifiuto.setToolTip(_("Click here if you do <b>not</b> want to accept the license"))
|
|
|
|
self.connect(btnRifiuto, QtCore.SIGNAL('clicked()'), evtRifiuto)
|
|
|
|
|
|
|
|
licenza = QtGui.QTextEdit()
|
|
|
|
licenza.setReadOnly(True)
|
2011-06-18 18:16:46 +02:00
|
|
|
licenza.setPlainText(txt)
|
2011-06-15 16:35:17 +02:00
|
|
|
|
|
|
|
grid = QtGui.QGridLayout()
|
|
|
|
grid.setSpacing(10)
|
|
|
|
|
|
|
|
grid.addWidget(licenza, 1, 0, 1, 2)
|
|
|
|
grid.addWidget(btnRifiuto, 2, 0)
|
|
|
|
grid.addWidget(btnAccetto, 2, 1)
|
|
|
|
|
|
|
|
|
|
|
|
self.setLayout(grid)
|
|
|
|
|
|
|
|
#annulla la chiusura con la x del window manager
|
|
|
|
def closeEvent(form, event):
|
|
|
|
event.ignore()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def evtAccetto():
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
|
|
|
|
|
|
def evtRifiuto():
|
|
|
|
#mostra un messaggio:
|
2015-10-23 23:09:38 +02:00
|
|
|
#msg = QtGui.QMessageBox.question(form, _("Message"), _("Are you sure to refuse?"), QtGui.QMessageBox.Yes | QtGui.QMessageBox.No, QtGui.QMessageBox.No)
|
|
|
|
#if msg == QtGui.QMessageBox.Yes:
|
|
|
|
sys.exit(1)
|
2011-06-15 16:35:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
#crea la finestra di dialogo
|
|
|
|
app = QtGui.QApplication(sys.argv)
|
|
|
|
form = Form()
|
|
|
|
form.show()
|
|
|
|
sys.exit(app.exec_())
|