Rebar Addon for FreeCAD
Public Member Functions | Public Attributes | List of all members
PopUpImage.PopUpImage Class Reference
Inheritance diagram for PopUpImage.PopUpImage:
Inheritance graph
Collaboration diagram for PopUpImage.PopUpImage:
Collaboration graph

Public Member Functions

def __init__ (self, img)
 

Public Attributes

 image
 
 verticalLayout
 

Detailed Description

Definition at line 35 of file PopUpImage.py.

Constructor & Destructor Documentation

def PopUpImage.PopUpImage.__init__ (   self,
  img 
)

Definition at line 36 of file PopUpImage.py.

36  def __init__(self, img):
37  QtGui.QDialog.__init__(self)
38  self.image = QtSvg.QSvgWidget(img)
39  self.setWindowTitle(QtGui.QApplication.translate("RebarTool", "Detailed description", None))
40  self.verticalLayout = QtGui.QVBoxLayout(self)
41  self.verticalLayout.addWidget(self.image)
42 
def __init__(self, img)
Definition: PopUpImage.py:36

Member Data Documentation

PopUpImage.PopUpImage.image

Definition at line 38 of file PopUpImage.py.

PopUpImage.PopUpImage.verticalLayout

Definition at line 40 of file PopUpImage.py.


The documentation for this class was generated from the following file: