#include "TridPageDisplay.h"#include "Midad/Base/PageProxy.h"#include "Midad/Base/PageABC.h"#include "Midad/Base/RunSnarlEntry.h"#include "Midad/Base/TimeHist.h"#include "Midad/Base/DigitText.h"#include "Midad/Base/MCText.h"#include "Midad/Base/MCTree.h"#include "Midad/Base/PmtPixels.h"#include "Midad/Base/Mint.h"#include <Midad/Gui/GuiMenu.h>#include <Midad/Gui/GuiBox.h>#include <Midad/Gui/GuiStatusBar.h>#include <Midad/Gui/GuiTab.h>#include <Midad/Gui/GuiFrame.h>#include <Midad/Gui/GuiButton.h>#include <Midad/Gui/GuiMainWindow.h>#include <Midad/Gui/GuiTextView.h>#include <Midad/Gui/GuiTree.h>#include <Midad/Gui/GuiSlider.h>#include <Midad/Gui/GuiCanvas.h>#include <Midad/Gui/GuiScrolled.h>#include <Midad/Gui/GuiLabel.h>#include <Midad/Gui/GuiTextEntry.h>#include <JobControl/JobC.h>#include <MessageService/MsgService.h>#include <TCanvas.h>#include <TGFileDialog.h>#include <TROOT.h>#include <TSystem.h>#include <TEnv.h>#include <TTimer.h>#include <sigc++/sigc++.h>#include <sigc++/class_slot.h>#include <sigc++/retype_return.h>#include <iostream>#include <vector>Go to the source code of this file.
Classes | |
| class | AutoEventTimer |
Functions | |
| CVSID ("$Id: TridPageDisplay.cxx,v 1.10 2005/09/28 10:17:40 tagg Exp $") | |
| void | toggle_free_run (TridPageDisplay *tpd, GuiTextButton *but) |
| void | my_add_to_window_menu (const char *name, GuiMenu *menu, TridPageDisplay *pd) |
| void | die_die_die (void) |
Variables | |
| AutoEventTimer | gAutoTimer (20.0) |
|
||||||||||||
|
|
|
|
Definition at line 167 of file TridPageDisplay.cxx. Referenced by TridPageDisplay::SetupMenus(). 00167 {
00168 gROOT->ProcessLine(".q"); // whatever
00169 }
|
|
||||||||||||||||
|
Definition at line 157 of file TridPageDisplay.cxx. References GuiMenu::Add(). Referenced by TridPageDisplay::SetupMenus(). 00158 {
00159 // This kludge is used to keep UserDisplay out of the menus.
00160 // UserDisplay is not a complete display and is intended to be
00161 // created and filled from a macro.
00162 if (string("UserCanvas") == name) return;
00163
00164 menu->Add(name,retype_return<void>(bind(bind(slot(*pd,&TridPageDisplay::MySpawnSinglePage),500,400),name)));
00165 }
|
|
||||||||||||
|
Definition at line 71 of file TridPageDisplay.cxx. References TridPageDisplay::SetAutoRun(). Referenced by TridPageDisplay::SetupButtons(). 00072 {
00073 TString label = but->GetString();
00074 if (label == "Start Auto")
00075 tpd->SetAutoRun(true);
00076 else
00077 tpd->SetAutoRun(false);
00078 }
|
|
|
Referenced by TridPageDisplay::SetAutoRun(), and TridPageDisplay::SetAutoTime(). |
1.3.9.1