/usr/share/pyshared/InterfaceQT4/compocomm.py is in eficas 6.4.0-1-1.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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | # -*- 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.
#
#
# ======================================================================
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import string
from Editeur import Objecttreeitem
import browser
import typeNode
class Node(browser.JDCNode,typeNode.PopUpMenuNodePartiel):
def getPanel( self ):
"""
"""
from monCommentairePanel import MonCommentairePanel
return MonCommentairePanel(self,parent=self.editor)
def createPopUpMenu(self):
typeNode.PopUpMenuNodePartiel.createPopUpMenu(self)
self.Decommente = QAction('Decommenter',self.tree)
self.tree.connect(self.Decommente,SIGNAL("activated()"),self.Decommenter)
self.Decommente.setStatusTip("Decommente la commande ")
if hasattr(self.item,'uncomment'):
self.menu.addAction(self.Decommente)
def Decommenter(self) :
item= self.tree.currentItem()
item.unCommentIt()
def update_node_label(self) :
"""
"""
debComm=self.item.GetText()
self.setText(1,debComm)
class COMMTreeItem(Objecttreeitem.ObjectTreeItem):
itemNode=Node
def init(self):
self.setfunction = self.set_valeur
def GetIconName(self):
"""
Retourne le nom de l'icône associée au noeud qui porte self,
dépendant de la validité de l'objet
NB : un commentaire est toujours valide ...
"""
return "ast-white-percent"
def GetLabelText(self):
""" Retourne 3 valeurs :
- le texte à afficher dans le noeud représentant l'item
- la fonte dans laquelle afficher ce texte
- la couleur du texte
"""
return 'commentaire' #CS_pbruno,Fonte_Commentaire,None
def get_valeur(self):
"""
Retourne la valeur de l'objet Commentaire cad son texte
"""
return self.object.get_valeur() or ''
def GetText(self):
texte = self.object.valeur
texte = string.split(texte,'\n')[0]
if len(texte) < 25 :
return texte
else :
return texte[0:24]
def set_valeur(self,valeur):
"""
Afecte valeur à l'objet COMMENTAIRE
"""
self.object.set_valeur(valeur)
def GetSubList(self):
"""
Retourne la liste des fils de self
"""
return []
def get_objet_commentarise(self):
"""
La méthode get_objet_commentarise() de la classe compocomm.COMMTreeItem
surcharge la méthode get_objet_commentarise de la classe Objecttreeitem.ObjectTreeItem
elle a pour but d'empecher l'utilisateur final de commentariser un commentaire.
"""
raise Exception( 'Impossible de commentariser un commentaire' )
import Extensions
treeitem =COMMTreeItem
objet = Extensions.commentaire.COMMENTAIRE
|