This file is indexed.

/usr/share/pyshared/InterfaceQT4/monSelectImage.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
# -*- 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
# Modules Eficas

from desImage import Ui_DSelImage
from PyQt4.QtGui import *
from PyQt4.QtCore import *

class DSelImage(Ui_DSelImage,QDialog):
   def __init__(self,parent ,modal ) :
       QDialog.__init__(self,parent)
       self.setupUi(self)

class MonImage (QWidget):
  def __init__(self,file,parent):
       QWidget.__init__(self,parent)
       self.file=file
       self.QtParent=parent
       self.monRectangle=None
       self.dessine=0
       self.readImage()
       

  def readImage(self):
        if self.file == "" : return
        self.image=QPixmap(self.file)

  def paintEvent(self,paintEvent):
        self.p= QPainter(self);
        self.resize(self.image.width(),self.image.height())
        if self.monRectangle != None:
           self.p.eraseRect(self.monRectangle)
        self.p.drawPixmap(0,0,self.image.width(),self.image.height(),self.image)
        if self.dessine==1:
           self.monRectangle=QRect(QPoint(self.xdeb,self.ydeb),QPoint(self.xfin,self.yfin))
           self.p.drawRect(self.monRectangle)

  def changedEvent(self,e):
      QWidget.changedEvent(self,e)

  def mousePressEvent(self,e):
      self.xdeb=e.x()
      self.ydeb=e.y()
      self.dessine=0
      self.update()
      QWidget.mousePressEvent(self,e)
      
  def mouseMoveEvent(self,e):
      self.xfin=e.x()
      self.yfin=e.y()
      self.dessine=1
      self.update()
      QWidget.mouseMoveEvent(self,e)

class MonSelectImage(DSelImage):
  """
  """
  def __init__(self,file,parent,name = None,fl = 0):
        DSelImage.__init__(self,parent,0)
        self.file=file 
        self.parentQT=parent
        self.image=MonImage(self.file,self)
        

  def accept(self) :
        if (not hasattr(self.image,'xdeb')) :self.close()
        name='RECT'
        self.parentQT.editor.init_modif()
        child=self.parentQT.node.append_brother(name)
        child.item.set_valeur((self.image.xdeb,self.image.ydeb,self.image.xfin,self.image.yfin))
        child.affichePanneau()
        self.close()