Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
exec_macro.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_gui
3 /// This utility macro executes the macro "macro" given as first argument and save a capture in a png file.
4 /// This macro is used by stressGUI to execute and compare the output of the GUI tutorials.
5 ///
6 /// \macro_code
7 ///
8 /// \author Bertrand Bellenot
9 
10 #include "TSystem.h"
11 #include "TString.h"
12 #include "TGClient.h"
13 #include "TGWindow.h"
14 #include "TClass.h"
15 #include "THashList.h"
16 #include "TROOT.h"
17 #include "TInterpreter.h"
18 #include "TEnv.h"
19 #include "TVirtualX.h"
20 #include "TImage.h"
21 
22 //______________________________________________________________________________
23 Int_t exec_macro(const char *macro, Bool_t comp = kFALSE, Bool_t save = kTRUE)
24 {
25 
26  enum EErrorCodes {
27  kSuccess,
28  kScriptDirNotFound,
29  kCannotRunScript,
30  kNumErrorCodes
31  };
32 
33  if (gROOT->IsBatch() || !(gClient))
34  return kCannotRunScript;
35  TString pwd(gSystem->pwd());
36  if (!gSystem->cd(gSystem->DirName(macro)))
37  return kScriptDirNotFound;
38  Int_t err = 0;
39  TString cmd(".x ");
40  cmd += gSystem->BaseName(macro);
41  if (comp) cmd += "+";
42  gVirtualX->Sync(1);
43  gROOT->ProcessLine(cmd, &err);
44  if (err != TInterpreter::kNoError)
45  return kCannotRunScript;
46  gSystem->cd(pwd);
47 
48  UInt_t nMainFrames = 0;
49  TClass* clGMainFrame = TClass::GetClass("TGMainFrame");
50  TGWindow* win = 0;
51  TIter iWin(gClient->GetListOfWindows());
52  while ((win = (TGWindow*)iWin())) {
53  const TObject* winGetParent = win->GetParent();
54  Bool_t winIsMapped = kFALSE;
55  if (winGetParent == gClient->GetDefaultRoot())
56  winIsMapped = kTRUE;//win->IsMapped();
57  if (winIsMapped && win->InheritsFrom(clGMainFrame)) {
58  win->MapRaised();
59  if (save) {
60  TString outfile = gSystem->BaseName(macro);
61  outfile.ReplaceAll(".C", TString::Format("_%d.png",
62  ++nMainFrames));
63  TImage *img = TImage::Create();
64  win->RaiseWindow();
65  img->FromWindow(win->GetId());
66  img->WriteImage(outfile.Data());
67  delete img;
68  }
69  }
70  }
71  if (!gEnv->GetValue("X11.Sync", 0))
72  gVirtualX->Sync(0);
73  return kSuccess;
74 }