Revision c5017c894f16cc08116e880da64dd7de59bb64d5 authored by Olivier Couet on 19 March 2014, 10:25:53 UTC, committed by Olivier Couet on 19 March 2014, 10:26:54 UTC
1 parent e4efa2b
Raw File
fileopen.C
// @(#)macros:$Id$
// Author: Axel Naumann, 2008-05-22
//
// This script gets executed when double-clicking a ROOT file (currently only on Windows).
// The file that got double clicked and opened is accessible as _file0.

void onBrowserClose() {
   gApplication->Terminate(0);
}

void fileopen() 
{
   TBrowser *b = new TBrowser;
   // or, to only browse the file:
   // new TBrowser(_file0);

   // Quit ROOT when the browser gets closed:
   b->GetBrowserImp()->GetMainFrame()->Connect("CloseWindow()", 0, 0, "onBrowserClose()");
} 
back to top