Version: 8.3.0
gui.Appli.ErrorEvent Class Reference
Inheritance diagram for gui.Appli.ErrorEvent:
Collaboration diagram for gui.Appli.ErrorEvent:

Public Member Functions

def __init__
 
def process
 

Public Attributes

 caption
 
 msg
 

Detailed Description

Definition at line 40 of file Appli.py.

Constructor & Destructor Documentation

def gui.Appli.ErrorEvent.__init__ (   self,
  caption,
  msg 
)

Definition at line 41 of file Appli.py.

41 
42  def __init__(self,caption,msg):
43  QCustomEvent.__init__(self,8888)
44  self.caption=caption
self.msg=msg

Member Function Documentation

def gui.Appli.ErrorEvent.process (   self,
  parent 
)

Definition at line 45 of file Appli.py.

References gui.Appli.ErrorEvent.caption, and gui.Appli.ErrorEvent.msg.

45 
46  def process(self,parent):
47  QMessageBox.warning(parent,self.caption,self.msg)

Member Data Documentation

gui.Appli.ErrorEvent.caption

Definition at line 43 of file Appli.py.

Referenced by gui.Appli.ErrorEvent.process().

gui.Appli.ErrorEvent.msg

Definition at line 44 of file Appli.py.

Referenced by gui.Appli.ErrorEvent.process().


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