/usr/share/pyshared/InterfaceQT4/compobloc.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 | # -*- coding: utf-8 -*-
from PyQt4 import *
from PyQt4.QtGui import *
from Editeur import Objecttreeitem
import compofact
import browser
import typeNode
class Node(browser.JDCNode,typeNode.PopUpMenuNodeMinimal):
def getPanel(self):
"""
"""
from monMCFactPanel import MonMCFactPanel
return MonMCFactPanel(self,parent=self.editor)
def createPopUpMenu(self):
typeNode.PopUpMenuNodeMinimal.createPopUpMenu(self)
class BLOCTreeItem(compofact.FACTTreeItem):
itemNode=Node
def get_objet(self,name) :
for v in self.object.mc_liste:
if v.nom == name : return v
return None
def iscopiable(self):
return 0
import Accas
treeitem = BLOCTreeItem
objet = Accas.MCBLOC
|