Report problems to ATLAS LXR Team (with time and IP address indicated)

The LXR Cross Referencer

source navigation ]
diff markup ]
identifier search ]
general search ]
 
 
Architecture: linux ]
Version: head ] [ nightly ] [ GaudiDev ]
  Links to LXR source navigation pages for stable releases [ 12.*.* ]   [ 13.*.* ]   [ 14.*.* ]   [ 15.*.* ] 

001 #include "FMExitButton.h"
002 
003 #include <TGButton.h>
004 
005 FMExitButton::FMExitButton(TGTransientFrame* fMain, TGVerticalFrame* fToolFrame)
006 {
007         m_fMain = fMain;
008 
009         TGHorizontalFrame *fExitButtonFrame = new TGHorizontalFrame(fToolFrame,0,0, kHorizontalFrame);
010         TGTextButton* fExitButton = new TGTextButton(fExitButtonFrame, "E&xit");
011         fExitButtonFrame->AddFrame(fExitButton, new TGLayoutHints(kLHintsCenterX   | kLHintsExpandX, 2, 2, 2, 2));
012         fExitButton->Connect("Clicked()", "FMExitButton", this, "OnExit()");
013 
014         fToolFrame->AddFrame(fExitButtonFrame, new TGLayoutHints(kLHintsLeft | kLHintsBottom | kLHintsExpandX));
015 }
016 
017 FMExitButton::~FMExitButton(void)
018 {
019 }
020 
021 void FMExitButton::OnExit() {
022         //cout<<" -> Exiting Trigger Towers Mapping Frame"<<endl;

023         m_fMain->SendCloseMessage();
024 }

source navigation ] diff markup ] identifier search ] general search ]

Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems
This page was automatically generated by the LXR engine. Valid HTML 4.01!