/usr/share/pyshared/InterfaceQT4/monPlusieursIntoPanel.py is in eficas 6.4.0-1-2.
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | # -*- coding: utf-8 -*-
# CONFIGURATION MANAGEMENT OF EDF VERSION
# ======================================================================
# COPYRIGHT (C) 1991 - 2002 EDF R&D WWW.CODE-ASTER.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 2 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, WRITE TO EDF R&D CODE_ASTER,
# 1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
#
#
# ======================================================================
# Modules Python
import string,types,os
# Modules Eficas
from PyQt4.QtGui import *
from PyQt4.QtCore import *
from desPlusieursInto import Ui_DPlusInto
from qtCommun import QTPanel
from qtSaisie import SaisieValeur
from politiquesValidation import PolitiquePlusieurs
class DPlusInto(Ui_DPlusInto,QDialog):
def __init__(self,parent ,modal ) :
QDialog.__init__(self,parent)
self.RepIcon=parent.appliEficas.RepIcon
if hasattr(parent,"leLayout"):
parent.leLayout.removeWidget(parent.leLayout.widgetActive)
parent.leLayout.widgetActive.close()
parent.leLayout.addWidget(self)
parent.leLayout.widgetActive=self
else:
parent.partieDroite=QWidget()
parent.leLayout=QGridLayout(parent.partieDroite)
parent.leLayout.addWidget(self)
parent.addWidget(parent.partieDroite)
parent.leLayout.widgetActive=self
self.setupUi(self)
icon = QIcon(self.RepIcon+"/arrow_left.png")
self.BAjout1Val.setIcon(icon)
icon2 = QIcon(self.RepIcon+"/arrow_right.png")
self.BSup1Val.setIcon(icon2)
class MonPlusieursIntoPanel(DPlusInto,QTPanel,SaisieValeur):
"""
Classe définissant le panel associé aux mots-clés qui demandent
a l'utilisateur de choisir une seule valeur parmi une liste de valeurs
discrètes
"""
def __init__(self,node, parent = None,name = None,fl = 0):
#print "MonPlusieursIntoPanel"
QTPanel.__init__(self,node,parent)
DPlusInto.__init__(self,parent,fl)
self.politique=PolitiquePlusieurs(node,parent)
self.InitCommentaire()
SaisieValeur.BuildLBValeurs(self)
self.listeValeursCourantes=self.node.item.GetListeValeurs()
SaisieValeur.RemplitPanel(self,self.listeValeursCourantes)
self.alpha=0
self.connecterSignaux()
def connecterSignaux(self) :
self.connect(self.listBoxVal, SIGNAL("itemDoubleClicked(QListWidgetItem*)" ), self.Ajout1Valeur )
self.connect(self.LBValeurs,SIGNAL("itemDoubleClicked(QListWidgetItem*)"),self.Sup1Valeur)
self.connect(self.bOk,SIGNAL("clicked()"),self.BOkPourListePressed)
self.connect(self.BAjout1Val,SIGNAL("clicked()"),self.Ajout1Valeur)
self.connect(self.BSup1Val,SIGNAL("clicked()"),self.Sup1Valeur)
self.connect(self.BAlpha,SIGNAL("clicked()"),self.BAlphaPressed)
def BAlphaPressed(self):
if self.alpha==1 :
self.alpha=0
self.BAlpha.setText(QApplication.translate("DPlusInto", "Tri Alpha",None,QApplication.UnicodeUTF8))
else :
self.alpha=1
self.BAlpha.setText(QApplication.translate("DPlusInto", "Tri Cata",None,QApplication.UnicodeUTF8))
SaisieValeur.RemplitPanel(self,self.listeValeursCourantes, self.alpha)
def BOkPourListePressed(self):
if self.listeValeursCourantes == [] :
self.editor.affiche_infos("Pas de validation d un groupe vide",Qt.red)
return
if hasattr(self.node.item.definition.validators,'verifie_liste'):
if self.node.item.definition.validators.verifie_liste(self.listeValeursCourantes) == 0 :
self.editor.affiche_infos("les valeurs ne sont pas correctes",Qt.red)
return
self.node.item.set_valeur(self.listeValeursCourantes)
self.editor.affiche_infos("Valeur Acceptée")
def Sup1Valeur(self):
indexCourant=self.LBValeurs.currentRow()
if indexCourant == None : return
if self.LBValeurs.isItemSelected(self.LBValeurs.item(indexCourant))== 0 : return
if self.LBValeurs.item(indexCourant).text()==QString("") : return
self.LBValeurs.takeItem(indexCourant)
listeVal=[]
i=0
for valeur in self.listeValeursCourantes :
if i != indexCourant : listeVal.append(valeur)
i = i+1
self.LBValeurs.setCurrentItem(self.LBValeurs.item(indexCourant -1))
self.listeValeursCourantes=listeVal
SaisieValeur.RemplitPanel(self,self.listeValeursCourantes)
def Ajout1Valeur(self):
liste=[]
indexCourant=self.listBoxVal.currentRow()
if indexCourant == None : return
if self.listBoxVal.isItemSelected(self.listBoxVal.item(indexCourant))== 0 : return
if self.listBoxVal.item(indexCourant).text()==QString("") : return
liste.append(str(self.listBoxVal.item(indexCourant).text()))
if self.LBValeurs.currentItem() != None :
index= self.LBValeurs.currentRow()+ 1
else :
index = 0
listeVal=[]
for valeur in self.listeValeursCourantes :
listeVal.append(valeur)
validite,comm,comm2,listeRetour=self.politique.AjoutValeurs(liste,index,listeVal)
self.Commentaire.setText(comm2)
if not validite :
self.editor.affiche_infos(comm,Qt.red)
else:
l1=self.listeValeursCourantes[:index]
l3=self.listeValeursCourantes[index:]
for valeur in listeRetour:
self.LBValeurs.insertItem(index,QString(str(valeur)))
item=self.LBValeurs.item(index)
item.setSelected(1)
self.LBValeurs.setCurrentItem(item)
index=index+1
self.listeValeursCourantes=l1+listeRetour+l3
SaisieValeur.RemplitPanel(self,self.listeValeursCourantes)
def InitCommentaire(self):
commentaire=""
mc = self.node.item.get_definition()
d_aides = { 'TXM' : 'chaînes de caractères',
'R' : 'réels',
'I' : 'entiers',
'C' : 'complexes'}
type = mc.type[0]
if not d_aides.has_key(type) :
if mc.min == mc.max:
commentaire="Entrez "+str(mc.min)+" valeurs "
else :
commentaire="Entrez entre "+str(mc.min)+" et "+str(mc.max)+" valeurs "
else :
if mc.min == mc.max:
commentaire="Entrez "+str(mc.min)+" "+d_aides[type]
else :
commentaire="Entrez entre "+str(mc.min)+" et "+str(mc.max)+" "+d_aides[type]
aideval=self.node.item.aide()
commentaire=commentaire + "\n" + QString.toUtf8(QString(aideval))
self.Commentaire.setText(QString.fromUtf8(QString(commentaire)))
|