https://github.com/root-project/root
Raw File
Tip revision: 7e576dde453d4e2c5ef4dbbcd8d1dfaf67470de6 authored by Philippe Canal on 28 March 2007, 09:54:14 UTC
Remove memory leak in the case where the buffer is not compressible (rare)
Tip revision: 7e576dd
hworld2.cxx
// @(#)root/test:$Name:  $:$Id: hworld.cxx,v 1.5 2002/05/14 10:22:37 rdm Exp $
// Author: Fons Rademakers   04/04/97

// This small demo shows the traditional "Hello World". Its main use is
// to show how to use ROOT graphics and how to enter the eventloop to
// be able to interact with the graphics.

#include "TApplication.h"
#include "TCanvas.h"
#include "TLine.h"
#include "TPaveLabel.h"

int main(int argc, char **argv)
{
   TApplication theApp("App", &argc, argv);

   TCanvas *c = new TCanvas("c", "The Hello Canvas", 400, 400);

   TPaveLabel *hello = new TPaveLabel(0.2,0.4,0.8,0.6,"Hello World");
   hello->Draw();
   TPaveLabel *quit = new TPaveLabel(0.2,0.2,0.8,0.3,"Close via menu File/Quit");
   quit->Draw();
   c->Update();

   // Enter event loop, one can now interact with the objects in
   // the canvas. Select "Exit ROOT" from Canvas "File" menu to exit
   // the event loop and execute the next statements.
   theApp.Run(kTRUE);

   TLine *l = new TLine(0.1,0.2,0.5,0.9);
   l->Draw();
   quit->SetLabel("Select File/Quit again to exit app");
   c->Update();

   // Here we don't return from the eventloop. "Exit ROOT" will quit the app.
   theApp.Run();

   return 0;
}
back to top