/usr/share/pyshared/pyacidobasic/curveControl.py is in python-acidobasic 2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | #-*- coding: utf-8 -*-
licence={}
licence['en']="""
curveControl.py is part of the package pyacidobasic:
a program to simulate acido-basic equilibria
Copyright (C) 2010 Georges Khaznadar <georgesk@ofset.org>
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 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from Ui_curvecontrol import Ui_Form
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.Qwt5 import QwtPlotCurve
class CurveControl(QWidget):
def __init__(self, parent=None, mw=None, html="", color=QColor("black"),
checked=False, modifiable=True, courbes=[]):
"""
Le constructeur
@param parent un widget parent
@param mw un QMainWindow
@param html un texte riche
@param color une couleur
@param checked une valeur booléenne
@param modifiable une valeur booléenne
param courbes une liste de courbes contrôlées
"""
QWidget.__init__(self,parent)
self.mw=mw
self.courbes=courbes
self.ui=Ui_Form()
self.ui.setupUi(self)
self.ui.textEdit.setHtml(html)
self.setColor(color)
if checked:
self.ui.checkBox.setCheckState(2)
else:
self.ui.checkBox.setCheckState(0)
self.ui.checkBox.setEnabled(modifiable)
self.connect(self.ui.checkBox, SIGNAL("stateChanged(int)"), self.coche)
self.connect(self.ui.toolButton, SIGNAL("clicked()"), self.couleur)
def setColor(self,color):
"""
colorie le bouton
@param color la couleur à appliquer
"""
self.color=QColor(color)
self.ui.toolButton.setStyleSheet(
"QPushButton { background-color: %s }"
"QPushButton:pressed { background-color: %s }" % (
self.color.name(), self.color.light(125).name()
)
)
def coche(self, state):
"""
fonction de rappel de la case à cocher
@param state l'état de la case
"""
try:
self.mw.setCurvesVisibility(self.courbes, state)
except:
pass
def couleur(self):
"""
fonction de rappel du bouton de couleur
"""
try:
self.mw.colorChanged(self)
except:
pass
def checkState(self):
"""
@return l'état du bouton à cocher
"""
return self.ui.checkBox.checkState()
|