Definition at line 22 of file LogFrame.py.
◆ __init__()
def LogFrame.LogFrame.__init__ |
( |
|
self, |
|
|
|
app, |
|
|
|
parent, |
|
|
|
title |
|
) |
| |
Definition at line 24 of file LogFrame.py.
25 wx.Frame.__init__(self, parent, wx.NewId(), title)
26 self.path=os.path.join(os.environ.get(
"CATLAL"),
"CatPython",
"python")
27 res=xrc.XmlResource(os.path.join(self.path,
"xrc/ConfPanel.xrc"))
28 self.panel=res.LoadPanel(self,
"ConfPanel")
◆ onClose()
def LogFrame.LogFrame.onClose |
( |
|
self, |
|
|
|
event |
|
) |
| |
Closes the application
Definition at line 42 of file LogFrame.py.
42 def onClose(self, event):
43 '''Closes the application'''
◆ onCloseConfirm()
def LogFrame.LogFrame.onCloseConfirm |
( |
|
self, |
|
|
|
event |
|
) |
| |
Closes the application
Definition at line 35 of file LogFrame.py.
35 def onCloseConfirm(self, event):
36 '''Closes the application''' 37 dlg = wx.MessageDialog(self,
"Exit the program?",
"Exit", wx.YES_NO | wx.ICON_QUESTION)
38 if dlg.ShowModal() == wx.ID_YES:
◆ onExit()
def LogFrame.LogFrame.onExit |
( |
|
self, |
|
|
|
event |
|
) |
| |
Exit the app
Definition at line 46 of file LogFrame.py.
46 def onExit(self, event):
◆ onIdle()
def LogFrame.LogFrame.onIdle |
( |
|
self, |
|
|
|
event |
|
) |
| |
Responds to idle time in the system
Definition at line 30 of file LogFrame.py.
30 def onIdle(self, event):
31 '''Responds to idle time in the system'''
◆ overviewText
string LogFrame.LogFrame.overviewText = "CAT Configuration Window" |
|
static |
◆ panel
◆ path
The documentation for this class was generated from the following file:
- /home/eleclhcb/LHCb/lbcat-cmake/CatPython/python/LogFrame.py