//*CMZ : 2.22/07 05/07/99 19.26.51 by Rene Brun
//*CMZ : 2.22/06 21/06/99 17.56.24 by Rene Brun
//*CMZ : 2.22/01 27/04/99 10.50.23 by Fons Rademakers
//*CMZ : 2.22/00 06/04/99 09.17.09 by Rene Brun
//*CMZ : 2.21/08 11/03/99 08.17.14 by Rene Brun
//*CMZ : 2.21/07 03/03/99 11.58.31 by Rene Brun
//*CMZ : 2.21/05 09/02/99 13.16.29 by Fons Rademakers
//*CMZ : 2.21/04 05/02/99 17.17.10 by Fons Rademakers
//*CMZ : 2.21/02 18/01/99 11.06.39 by Rene Brun
//*CMZ : 2.20/05 15/12/98 09.21.57 by Rene Brun
//*CMZ : 2.20/01 01/12/98 12.40.53 by Rene Brun
//*CMZ : 2.20/00 23/11/98 18.42.32 by Fons Rademakers
//*CMZ : 2.00/13 29/10/98 18.54.19 by Rene Brun
//*CMZ : 2.00/12 24/09/98 16.48.20 by Fons Rademakers
//*CMZ : 2.00/11 08/08/98 23.24.05 by Rene Brun
//*CMZ : 2.00/10 16/07/98 15.05.56 by Fons Rademakers
//*CMZ : 2.00/09 23/06/98 17.52.45 by Rene Brun
//*CMZ : 2.00/06 07/05/98 19.38.43 by Fons Rademakers
//*CMZ : 2.00/05 20/04/98 15.11.50 by Fons Rademakers
//*CMZ : 2.00/03 27/03/98 18.57.27 by Rene Brun
//*CMZ : 2.00/01 15/03/98 16.43.18 by Rene Brun
//*CMZ : 2.00/00 03/03/98 17.19.19 by Rene Brun
//*CMZ : 1.03/09 11/12/97 08.39.01 by Rene Brun
//*-- Author : Rene Brun 12/12/94
//*KEEP,CopyRight,T=C.
/*************************************************************************
* Copyright(c) 1995-1999, The ROOT System, All rights reserved. *
* Authors: Rene Brun, Fons Rademakers. *
* For list of contributors see $ROOTSYS/AA_CREDITS. *
* *
* Permission to use, copy, modify and distribute this software and its *
* documentation for non-commercial purposes is hereby granted without *
* fee, provided that the above copyright notice appears in all copies *
* and that both the copyright notice and this permission notice appear *
* in the supporting documentation. The authors make no claims about the *
* suitability of this software for any purpose. It is provided "as is" *
* without express or implied warranty. *
*************************************************************************/
//*KEND.
#include <string.h>
#include <stdlib.h>
#include <fstream.h>
#include <iostream.h>
//*KEEP,TROOT.
#include "TROOT.h"
//*KEEP,TCanvas.
#include "TCanvas.h"
//*KEEP,TClass.
#include "TClass.h"
//*KEEP,TDirectory.
#include "TDirectory.h"
//*KEEP,TStyle.
#include "TStyle.h"
//*KEEP,TText.
#include "TText.h"
//*KEEP,TBox.
#include "TBox.h"
//*KEEP,TCanvasImp.
#include "TCanvasImp.h"
//*KEEP,TDialogCanvas,T=C++.
#include "TDialogCanvas.h"
//*KEEP,TGuiFactory.
#include "TGuiFactory.h"
//*KEEP,TEnv.
#include "TEnv.h"
//*KEEP,TError.
#include "TError.h"
//*KEEP,TContextMenu,T=C++.
#include "TContextMenu.h"
//*KEEP,TControlBar,T=C++.
#include "TControlBar.h"
//*KEEP,TInterpreter, T=C++.
#include "TInterpreter.h"
//*KEEP,TApplication.
#include "TApplication.h"
//*KEND.
// This small class and the static object makedefcanvas_init make sure that
// the TCanvas::MakeDefCanvas method is registered with TROOT as soon as
// the shared library containing TCanvas is loaded.
class TInitMakeDefCanvas {
public:
TInitMakeDefCanvas() { TROOT::SetMakeDefCanvas(&TCanvas::MakeDefCanvas); }
};
static TInitMakeDefCanvas makedefcanvas_init;
//*-*x16 macros/layout_canvas
const Size_t kDefaultCanvasSize = 20;
ClassImp(TCanvas)
//______________________________________________________________________________
//
// A Canvas is an area mapped to a window directly under
// the control of the display manager.
// A ROOT session may have several canvases open at any given time.
//
// A Canvas may be subdivided into independent graphical areas: the PADs
// A canvas has a default pad which has the name of the canvas itself.
// An example of a Canvas layout is sketched in the picture below.
//
// ***********************************************************************
// * Tool Bar menus for Canvas *
// ***********************************************************************
// * *
// * ************************************ ************************* *
// * * * * * *
// * * * * * *
// * * * * * *
// * * * * * *
// * * * * * *
// * * * * * *
// * * P1 * * P2 * *
// * * * * * *
// * * * * * *
// * * * * * *
// * * * * * *
// * * * * * *
// * * * * * *
// * ************************************ ************************* *
// * *
// ***********************************************************************
//
// This canvas contains two pads named P1 and P2.
// Both Canvas, P1 and P2 can be moved, grown, shrinked using the
// normal rules of the Display manager.
// A copy of a real canvas with 4 pads is shown in the picture below.
//
/*
*/
//
//
// Once objects have been drawn in a canvas, they can be edited/moved
// by pointing directly to them. The cursor shape is changed
// to suggest the type of action that one can do on this object.
// Clicking with the right mouse button on an object pops-up
// a contextmenu with a complete list of actions possible on this object.
//
// A graphical editor may be started from the canvas "Edit" menu.
// Select the "Editor" item. This will show the following editor menu.
//
/*
*/
//
// For example, to draw a new TText primitive, select the option Text,
// then click at the position where you want to draw the text. Type <CR>
// when you have finished typing the string.
//
// A canvas may be automatically divided into pads via TPad::Divide.
//
//______________________________________________________________________________
TCanvas::TCanvas() : TPad()
{
#ifdef R__THREAD
// begin changes M.H. 10.06.99
Constructor();}
// end changes M.H. 10.06.99
void TCanvas::Constructor()
{
// Canvas default constructor
// begin changes M.H. 10.06.99
if (gThreadXAR) {
void *arr[2];
arr[1] = this;
if ((*gThreadXAR)("CANV", 2, arr, NULL)) return;
}
// end changes M.H. 10.06.99
#endif
// Canvas default constructor
fCanvas = 0;
fCanvasID = -1;
fCanvasImp = 0;
fBatch = kTRUE;
fContextMenu = 0;
fEditorBar = 0;
fIsEditable = kIsEditable;
fSelected = 0;
fSelectedPad = 0;
fPadSave = 0;
}
//______________________________________________________________________________
TCanvas::TCanvas(const char *name, Int_t ww, Int_t wh, Int_t winid)
{
// Create an embedded canvas, i.e. a canvas that is in a TGCanvas widget
// which is placed in a TGFrame. This ctor is only called via the
// TRootEmbeddedCanvas class.
// Allow embedded canvas with same name.
//TCanvas *old = (TCanvas*)gROOT->FindObject(name);
//if (old && old->IsOnHeap()) delete old;
fCanvas = 0;
fCanvasID = winid;
fWindowTopX = 0;
fWindowTopY = 0;
fWindowWidth = ww;
fWindowHeight = wh;
fCw = ww;
fCh = wh;
fCanvasImp = gBatchGuiFactory->CreateCanvasImp(this, name, fCw, fCh);
fBatch = kFALSE;
fMenuBar = kFALSE;
fContextMenu = 0;
fEditorBar = 0;
fIsEditable = kIsEditable;
SetName((char *)name);
Build();
}
//_____________________________________________________________________________
TCanvas::TCanvas(const Text_t *name, const Text_t *title, Int_t form) : TPad()
{
#ifdef R__THREAD
// begin changes M.H. 10.06.99
Constructor(name, title, form);}
// end changes M.H. 10.06.99
void TCanvas::Constructor(const Text_t *name, const Text_t *title, Int_t form)
{
//*-*-*-*-*-*-*-*-*Canvas constructor using a template*-*-*-*-*-*-*-*-*-*-*-*
//*-* ===================================
// Create a new canvas with a predefined size form.
// if form < 0 the menubar is not shown.
//
// form = 1 700x500 at 10,10 (set by TStyle::SetCanvasDefH,W,X,Y)
// form = 2 500x500 at 20,20
// form = 3 500x500 at 30,30
// form = 4 500x500 at 40,40
// form = 5 500x500 at 50,50
//
// begin changes M.H. 10.06.99
if (gThreadXAR) {
void *arr[5];
arr[1] = this; arr[2] = (void *)name; arr[3] = (void *)title; arr[4] =&form;
if ((*gThreadXAR)("CANV", 5, arr, NULL)) return;
}
// end changes M.H. 10.06.99
#endif
//
fMenuBar = kTRUE;
if (form < 0) {
form = -form;
fMenuBar = kFALSE;
}
fCanvasID = -1;
TCanvas *old = (TCanvas*)gROOT->FindObject(name);
if (old && old->IsOnHeap()) delete old;
if (strlen(name) == 0 || gROOT->IsBatch()) { //We are in Batch mode
fWindowTopX = fWindowTopY = 0;
fWindowWidth = 712; // default size corresponds to A4
fWindowHeight = 950;
fCw = fWindowWidth;
fCh = fWindowHeight;
fCanvasImp = gBatchGuiFactory->CreateCanvasImp(this, name, fCw, fCh);
fBatch = kTRUE;
} else { //normal mode with a screen window
Float_t cx = gStyle->GetScreenFactor();
if (form < 1 || form > 5) form = 1;
if (form == 1) {
UInt_t uh = UInt_t(cx*gStyle->GetCanvasDefH());
UInt_t uw = UInt_t(cx*gStyle->GetCanvasDefW());
Int_t ux = Int_t(cx*gStyle->GetCanvasDefX());
Int_t uy = Int_t(cx*gStyle->GetCanvasDefY());
fCanvasImp = gGuiFactory->CreateCanvasImp(this, name, ux, uy, uw, uh);
}
if (form == 2) fCanvasImp = gGuiFactory->CreateCanvasImp(this, name, 20, 20, UInt_t(cx*500), UInt_t(cx*500));
if (form == 3) fCanvasImp = gGuiFactory->CreateCanvasImp(this, name, 30, 30, UInt_t(cx*500), UInt_t(cx*500));
if (form == 4) fCanvasImp = gGuiFactory->CreateCanvasImp(this, name, 40, 40, UInt_t(cx*500), UInt_t(cx*500));
if (form == 5) fCanvasImp = gGuiFactory->CreateCanvasImp(this, name, 50, 50, UInt_t(cx*500), UInt_t(cx*500));
fCanvasImp->ShowMenuBar(fMenuBar);
fCanvasImp->Show();
fBatch = kFALSE;
}
SetName(name);
SetTitle(title); // requires fCanvasImp set
Build();
}
//_____________________________________________________________________________
TCanvas::TCanvas(const Text_t *name, const Text_t *title, Int_t ww, Int_t wh) : TPad()
{
//*-*-*-*-*-*-*-*-*-*-*-*Canvas constructor*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ==================
// Create a new canvas at a random position.
//
// wide is the canvas size in pixels along X
// if ww < 0 the menubar is not shown.
// wh is the canvas size in pixels along Y
#ifdef R__THREAD
// begin changes M.H. 10.06.99
Constructor(name, title, ww, wh);}
// end changes M.H. 10.06.99
void TCanvas::Constructor(const Text_t *name, const Text_t *title, Int_t ww, Int_t wh)
{
//*-*-*-*-*-*-*-*-*-*-*-*Canvas constructor*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ==================
// Create a new canvas at a random position.
//
// wide is the canvas size in pixels along X
// if ww < 0 the menubar is not shown.
// wh is the canvas size in pixels along Y
//
// begin changes M.H. 10.06.99
if (gThreadXAR) {
void *arr[6];
arr[1] = this; arr[2] = (void *)name; arr[3] = (void *)title; arr[4] =&ww; arr[5] = &wh;
if ((*gThreadXAR)("CANV", 6, arr, NULL)) return;
}
// end changes M.H. 10.06.99
#endif
//
fMenuBar = kTRUE;
if (ww < 0) {
ww = -ww;
fMenuBar = kFALSE;
}
fCanvasID = -1;
TCanvas *old = (TCanvas*)gROOT->FindObject(name);
if (old && old->IsOnHeap()) delete old;
if (strlen(name) == 0 || gROOT->IsBatch()) { //We are in Batch mode
fWindowTopX = fWindowTopY = 0;
fWindowWidth = ww;
fWindowHeight = wh;
fCw = ww;
fCh = wh;
fCanvasImp = gBatchGuiFactory->CreateCanvasImp(this, name, fCw, fCh);
fBatch = kTRUE;
} else {
Float_t cx = gStyle->GetScreenFactor();
fCanvasImp = gGuiFactory->CreateCanvasImp(this, name, UInt_t(cx*ww), UInt_t(cx*wh));
fCanvasImp->ShowMenuBar(fMenuBar);
fCanvasImp->Show();
fBatch = kFALSE;
}
SetName(name);
SetTitle(title); // requires fCanvasImp set
Build();
}
//_____________________________________________________________________________
TCanvas::TCanvas(const Text_t *name, const Text_t *title, Int_t wtopx, Int_t wtopy, Int_t ww, Int_t wh)
: TPad()
{
//*-*-*-*-*-*-*-*-*-*-*-*Canvas constructor*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ==================
// Create a new canvas.
//
// wtopx,wtopy are the pixel coordinates of the top left corner of the canvas
// if wtopx < 0) the menubar is not shown.
// ww is the canvas size in pixels along X
// wh is the canvas size in pixels along Y
#ifdef R__THREAD
// begin changes M.H. 10.06.99
Constructor(name, title, wtopx, wtopy, ww, wh);}
// end changes M.H. 10.06.99
void TCanvas::Constructor(const Text_t *name, const Text_t *title, Int_t wtopx, Int_t wtopy, Int_t
ww, Int_t wh)
{
// begin changes M.H. 10.06.99
if (gThreadXAR) {
void *arr[8];
arr[1] = this; arr[2] = (void *)name; arr[3] = (void *)title;
arr[4] = &wtopx; arr[5] = &wtopy; arr[6] = &ww; arr[7] = &wh;
if ((*gThreadXAR)("CANV", 8, arr, NULL)) return;
}
// end changes M.H. 10.06.99
#endif
fMenuBar = kTRUE;
if (wtopx < 0) {
wtopx = -wtopx;
fMenuBar = kFALSE;
}
fCanvasID = -1;
TCanvas *old = (TCanvas*)gROOT->FindObject(name);
if (old && old->IsOnHeap()) delete old;
if (strlen(name) == 0 || gROOT->IsBatch()) { //We are in Batch mode
fWindowTopX = fWindowTopY = 0;
fWindowWidth = ww;
fWindowHeight = wh;
fCw = ww;
fCh = wh;
fCanvasImp = gBatchGuiFactory->CreateCanvasImp(this, name, fCw, fCh);
fBatch = kTRUE;
} else { //normal mode with a screen window
Float_t cx = gStyle->GetScreenFactor();
fCanvasImp = gGuiFactory->CreateCanvasImp(this, name, Int_t(cx*wtopx), Int_t(cx*wtopy), UInt_t(cx*ww), UInt_t(cx*wh));
fCanvasImp->ShowMenuBar(fMenuBar);
fCanvasImp->Show();
fBatch = kFALSE;
}
SetName(name);
SetTitle(title); // requires fCanvasImp set
Build();
}
//_____________________________________________________________________________
void TCanvas::Build()
{
// Build a canvas. Called by all constructors.
// Make sure the application environment exists. It is need for graphics
// (colors are initialized in the TApplication ctor).
if (!gApplication)
TApplication::CreateApplication();
// Get some default from .rootrc. Used in fCanvasImp->InitWindow().
fMoveOpaque = gEnv->GetValue("Canvas.MoveOpaque", 0);
fResizeOpaque = gEnv->GetValue("Canvas.ResizeOpaque", 0);
fHighLightColor = gEnv->GetValue("Canvas.HighLightColor", kRed);
fShowEventStatus = gEnv->GetValue("Canvas.ShowEventStatus", kFALSE);
// Get window identifier
if (fCanvasID == -1)
fCanvasID = fCanvasImp->InitWindow();
#ifndef WIN32
if (fCanvasID < 0) return;
#else
// fCanvasID is in fact a pointer to the TGWin32 class
if (fCanvasID == -1) return;
#endif
fContextMenu = 0;
if (!IsBatch()) { //normal mode with a screen window
// Set default physical canvas attributes
gGXW->SelectWindow(fCanvasID);
gGXW->SetFillColor(1); //Set color index for fill area
gGXW->SetLineColor(1); //Set color index for lines
gGXW->SetMarkerColor(1); //Set color index for markers
gGXW->SetTextColor(1); //Set color index for text
// Clear workstation
gGXW->ClearWindow();
// Set Double Buffer on by default
SetDoubleBuffer(1);
// Get effective window parameters (with borders and menubar)
fCanvasImp->GetWindowGeometry(fWindowTopX, fWindowTopY,
fWindowWidth, fWindowHeight);
// Get effective canvas parameters without borders
Int_t dum1, dum2;
gGXW->GetGeometry(fCanvasID, dum1, dum2, fCw, fCh);
fContextMenu = new TContextMenu( "ContextMenu" );
}
// Fill canvas ROOT data structure
fXsizeUser = 0;
fYsizeUser = 0;
if ( fCw < fCh ) {
fYsizeReal = kDefaultCanvasSize;
fXsizeReal = fYsizeReal*Float_t(fCw)/Float_t(fCh);
}
else {
fXsizeReal = kDefaultCanvasSize;
fYsizeReal = fXsizeReal*Float_t(fCh)/Float_t(fCw);
}
fDISPLAY = "$DISPLAY";
fRetained = 1;
// transient canvases have typically no menubar and should not get
// by default the event status bar (if set by default)
if (fShowEventStatus && fMenuBar && fCanvasImp)
fCanvasImp->ShowStatusBar(fShowEventStatus);
fSelected = 0;
fSelectedPad = 0;
fPadSave = 0;
fEditorBar = 0;
fIsEditable = kIsEditable;
fEvent = -1;
fEventX = -1;
fEventY = -1;
gROOT->GetListOfCanvases()->Add(this);
// Set Pad parameters
gPad = this;
fCanvas = this;
fMother = (TPad*)gPad;
if (!fPrimitives) {
fPrimitives = new TList(this);
SetFillColor(gStyle->GetCanvasColor());
SetFillStyle(1001);
SetGrid(gStyle->GetPadGridX(),gStyle->GetPadGridY());
SetTicks(gStyle->GetPadTickX(),gStyle->GetPadTickY());
SetLogx(gStyle->GetOptLogx());
SetLogy(gStyle->GetOptLogy());
SetLogz(gStyle->GetOptLogz());
SetBottomMargin(gStyle->GetPadBottomMargin());
SetTopMargin(gStyle->GetPadTopMargin());
SetLeftMargin(gStyle->GetPadLeftMargin());
SetRightMargin(gStyle->GetPadRightMargin());
SetBorderSize(gStyle->GetCanvasBorderSize());
SetBorderMode(gStyle->GetCanvasBorderMode());
fBorderMode=gStyle->GetCanvasBorderMode(); // do not call SetBorderMode (function redefined in TCanvas)
SetPad(0, 0, 1, 1);
Range(0, 0, 1, 1); //Pad range is set by default to [0,1] in x and y
TWbox::Paint(""); //Paint background
}
SetBit(kObjInCanvas);
#ifdef WIN32
gGXW->UpdateWindow(1);
#endif
}
//______________________________________________________________________________
TCanvas::~TCanvas()
{
//*-*-*-*-*-*-*-*-*-*-*Canvas default destructor*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* =========================
#ifdef R__THREAD
// begin changes M.H. 10.06.99
Destructor();}
// end changes M.H. 10.06.99
void TCanvas::Destructor()
{
// begin changes M.H. 10.06.99
if (gThreadXAR) {
void *arr[2];
arr[1] = this;
if ((*gThreadXAR)("CDEL", 2, arr, NULL)) return;
}
// end changes M.H. 10.06.99
#endif
if (!TestBit(kNotDeleted)) return;
if (!gPad) return;
if (fContextMenu) { delete fContextMenu; fContextMenu = 0;}
Close();
}
//______________________________________________________________________________
void TCanvas::cd(Int_t subpadnumber)
{
//*-*-*-*-*-*-*-*-*-*-*-*Set current canvas & pad*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ========================
if (fCanvasID == -1) return;
TPad::cd(subpadnumber);
// in case doublebuffer is off, draw directly onto display window
if (IsBatch()) return;
if (!fDoubleBuffer)
gGXW->SelectWindow(fCanvasID);
}
//______________________________________________________________________________
void TCanvas::Clear(Option_t *option)
{
//*-*-*-*-*-*-*-*-*-*-*-*Clear canvas*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ============
// Remove all primitives in default pad
// Remove all pads (except default pad)
//
if (fCanvasID == -1) return;
TPad::Clear(option); //Remove primitives from pad
fSelected = 0;
fSelectedPad = 0;
}
//______________________________________________________________________________
void TCanvas::Close(Option_t *option)
{
//*-*-*-*-*-*-*-*-*-*-*-*Close canvas*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ============
// Delete window/pads data structure
//
if (fCanvasID == -1) return;
TCanvas *cansave = (TCanvas*)gPad->GetCanvas();
TPad *padsave = (TPad*)gPad;
FeedbackMode(kFALSE);
TPad::Close(option);
if (!IsBatch()) {
gGXW->SelectWindow(fCanvasID); //select current canvas
#ifndef WIN32
gGXW->CloseWindow();
#endif
}
fCanvasID = -1;
fBatch = kTRUE;
// Close actual window on screen
SafeDelete(fCanvasImp);
gROOT->GetListOfCanvases()->Remove(this);
if (cansave == this) {
gPad = (TCanvas *) gROOT->GetListOfCanvases()->First();
} else {
gPad = padsave;
}
}
//______________________________________________________________________________
void TCanvas::CopyPixmaps()
{
//*-*-*-*-*-*-*-*-*Copy the canvas pixmap of the pad to the canvas*-*-*-*-*-*-*
//*-* ===============================================
if (!IsBatch()) {
CopyPixmap();
TPad::CopyPixmaps();
}
}
//______________________________________________________________________________
void TCanvas::Draw(Option_t *)
{
// Draw a canvas.
// If a canvas with the name is already on the screen, the canvas is repainted.
// This function is useful when a canvas object has been saved in a Root file.
// One can then do:
// Root > Tfile f("file.root");
// Root > canvas.Draw();
TCanvas *old = (TCanvas*)gROOT->GetListOfCanvases()->FindObject((char *)GetName());
if (old) {
Paint();
return;
}
fCanvasImp = gGuiFactory->CreateCanvasImp(this, GetName(), fWindowTopX, fWindowTopY,
fWindowWidth, fWindowHeight);
fCanvasImp->ShowMenuBar(fMenuBar);
fCanvasImp->Show();
Build();
ResizePad();
Modified();
}
//______________________________________________________________________________
void TCanvas::DrawEventStatus(Int_t event, Int_t px, Int_t py, TObject *selected)
{
//*-*-*-*-*-*-*Report name and title of primitive below the cursor*-*-*-*-*-*
//*-* ===================================================
//
// This function is called when the option "Event Status"
// in the canvas menu "Options" is selected.
//
const Int_t kTMAX=256;
static char atext[kTMAX];
if (!selected) return;
//#ifndef WIN32
#if 0
static Int_t pxt, pyt;
gPad->SetDoubleBuffer(0); // Turn off double buffer mode
gGXW->SetTextColor(1);
gGXW->SetTextAlign(11);
pxt = gPad->GetCanvas()->XtoAbsPixel(gPad->GetCanvas()->GetX1()) + 5;
pyt = gPad->GetCanvas()->YtoAbsPixel(gPad->GetCanvas()->GetY1()) - 5;
sprintf(atext,"%s / %s ", selected->GetName()
, selected->GetObjectInfo(px,py));
for (Int_t i=strlen(atext);i<kTMAX-1;i++) atext[i] = ' ';
atext[kTMAX-1] = 0;
gGXW->DrawText(pxt, pyt, 0, 1, atext, TGXW::kOpaque);
#else
if (!fCanvasImp) return; //this may happen when closing a TAttCanvas
fCanvasImp->SetStatusText((Text_t *)(selected->GetTitle()),0);
fCanvasImp->SetStatusText((Text_t *)(selected->GetName()),1);
if (event == kKeyPress)
sprintf(atext, "%c", (char) px);
else
sprintf(atext, "%d,%d", px, py);
fCanvasImp->SetStatusText(atext,2);
fCanvasImp->SetStatusText((Text_t *)(selected->GetObjectInfo(px,py)),3);
#endif
}
//______________________________________________________________________________
void TCanvas::EditorBar()
{
//*-*-*-*-*-*-*-*-*-*-*Create the Editor Controlbar*-*-*-*-*-*-*-*-*-*
//*-* ============================
TControlBar *ed = new TControlBar("vertical", "Editor");
ed->AddButton("Arc", "gROOT->SetEditorMode("Arc")", "Create an arc of circle");
ed->AddButton("Arrow", "gROOT->SetEditorMode("Arrow")", "Create an Arrow");
ed->AddButton("Button", "gROOT->SetEditorMode("Button")", "Create a user interface Button");
ed->AddButton("Diamond", "gROOT->SetEditorMode("Diamond")", "Create a diamond");
ed->AddButton("Ellipse", "gROOT->SetEditorMode("Ellipse")", "Create an Ellipse");
ed->AddButton("Pad", "gROOT->SetEditorMode("Pad")", "Create a pad");
ed->AddButton("Pave", "gROOT->SetEditorMode("Pave")", "Create a Pave");
ed->AddButton("PaveLabel","gROOT->SetEditorMode("PaveLabel")", "Create a PaveLabel (prompt for label)");
ed->AddButton("PaveText", "gROOT->SetEditorMode("PaveText")", "Create a PaveText");
ed->AddButton("PavesText","gROOT->SetEditorMode("PavesText")", "Create a PavesText");
ed->AddButton("PolyLine", "gROOT->SetEditorMode("PolyLine")", "Create a PolyLine (TGraph)");
ed->AddButton("Text", "gROOT->SetEditorMode("Text")", "Create a Text string");
ed->AddButton("CutG", "gROOT->SetEditorMode("CutG")", "Create a Graphical Cut");
ed->Show();
fEditorBar = ed;
}
//______________________________________________________________________________
void TCanvas::EnterLeave(TPad *prevSelPad, TObject *prevSelObj)
{
// Generate kMouseEnter and kMouseLeave events depending on the previously
// selected object and the currently selected object. Does nothing if the
// selected object does not change.
if (prevSelObj == fSelected) return;
TPad *padsav = (TPad *)gPad;
if (prevSelObj) {
gPad = prevSelPad;
prevSelObj->ExecuteEvent(kMouseLeave, 0, 0);
}
gPad = fSelectedPad;
if (fSelected)
fSelected->ExecuteEvent(kMouseEnter, 0, 0);
gPad = padsav;
}
//______________________________________________________________________________
void TCanvas::ExecuteEvent(Int_t event, Int_t px, Int_t py)
{
//*-*-*-*-*-*-*-*-*-*-*Execute action corresponding to one event*-*-*-*
//*-* =========================================
// This member function must be implemented to realize the action
// corresponding to the mouse click on the object in the canvas
//
// Only handle mouse motion events in TCanvas, all other events are
// ignored for the time being
//
if (gROOT->GetEditorMode()) {
TPad::ExecuteEvent(event,px,py);
return;
}
switch (event) {
case kMouseMotion:
SetCursor(kCross);
break;
}
}
//______________________________________________________________________________
void TCanvas::FeedbackMode(Bool_t set)
{
//*-*-*-*-*-*-*-*-*Turn rubberband feedback mode on or off*-*-*-*-*-*-*-*-*-*-*
//*-* =======================================
if (set) {
SetDoubleBuffer(0); // turn off double buffer mode
gGXW->SetDrawMode(TGXW::kInvert); // set the drawing mode to XOR mode
} else {
SetDoubleBuffer(1); // turn on double buffer mode
gGXW->SetDrawMode(TGXW::kCopy); // set drawing mode back to normal (copy) mode
}
}
//______________________________________________________________________________
void TCanvas::Flush()
{
//*-*-*-*-*-*-*-*-*Flush canvas buffers*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ====================
if (fCanvasID == -1) return;
TPad *padsav = (TPad*)gPad;
cd();
if (!IsBatch()) {
gGXW->SelectWindow(fCanvasID);
gPad = padsav; //don't do cd() because than also the pixmap is changed
CopyPixmaps();
gGXW->UpdateWindow(1);
}
padsav->cd();
}
//______________________________________________________________________________
void TCanvas::UseCurrentStyle()
{
//*-*-*-*-*-*Force a copy of current style for all objects in canvas*-*-*-*-*
//*-* =======================================================
TPad::UseCurrentStyle();
SetFillColor(gStyle->GetCanvasColor());
fBorderSize = gStyle->GetCanvasBorderSize();
fBorderMode = gStyle->GetCanvasBorderMode();
}
//______________________________________________________________________________
void *TCanvas::GetPadDivision(Int_t, Int_t)
{
//*-*-*-*-*-*-*-*-*Return pad corresponding to one canvas division*-*-*-*-*
//*-* ===============================================
return 0;
}
//______________________________________________________________________________
Int_t TCanvas::GetWindowTopX()
{
// Returns current top x position of window on screen.
fCanvasImp->GetWindowGeometry(fWindowTopX, fWindowTopY,
fWindowWidth, fWindowHeight);
return fWindowTopX;
}
//______________________________________________________________________________
Int_t TCanvas::GetWindowTopY()
{
// Returns current top y position of window on screen.
fCanvasImp->GetWindowGeometry(fWindowTopX, fWindowTopY,
fWindowWidth, fWindowHeight);
return fWindowTopY;
}
//______________________________________________________________________________
void TCanvas::HandleInput(EEventType event, Int_t px, Int_t py)
{
//*-*-*-*-*-*-*-*-*-*Handle Input Events*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ===================
// Handle input events, like button up/down in current canvas.
//
TPad *pad;
TObjLink *pickobj;
TObject *prevSelObj = 0;
TPad *prevSelPad = 0;
if (fSelected && fSelected->TestBit(kNotDeleted))
prevSelObj = fSelected;
if (fSelectedPad && fSelectedPad->TestBit(kNotDeleted))
prevSelPad = (TPad*) fSelectedPad;
fPadSave = (TPad*)gPad;
cd(); // make sure this canvas is the current canvas
fEvent = event;
fEventX = px;
fEventY = py;
switch (event) {
case kMouseMotion:
// highlight object tracked over
fSelected = 0;
fSelectedOpt = "";
fSelectedPad = 0;
pickobj = 0;
pad = Pick(px, py, pickobj);
if (!pad) return;
if (!pickobj) {
fSelected = pad;
fSelectedOpt = "";
} else {
if (!fSelected) {
fSelected = pickobj->GetObject();
fSelectedOpt = pickobj->GetOption();
}
}
fSelectedPad = pad;
EnterLeave(prevSelPad, prevSelObj);
gPad = pad; // don't use cd() we will use the current
// canvas via the GetCanvas member and not via
// gPad->GetCanvas
fSelected->ExecuteEvent(event, px, py);
if (fShowEventStatus) DrawEventStatus(event, px, py, fSelected);
break;
case kMouseLeave:
// mouse leaves canvas
{
// force popdown of tooltips
TObject *sobj = fSelected;
TVirtualPad *spad = fSelectedPad;
fSelected = 0;
fSelectedPad = 0;
EnterLeave(prevSelPad, prevSelObj);
fSelected = sobj;
fSelectedPad = spad;
}
break;
case kButton1Double:
// triggered on the second button down within 350ms and within
// 3x3 pixels of the first button down, button up finishes action
case kButton1Down:
// find pad in which input occured
fSelected = 0;
fSelectedOpt = "";
fSelectedPad = 0;
pickobj = 0;
pad = Pick(px, py, pickobj);
if (!pad) return;
if (!pickobj) {
fSelected = pad;
fSelectedOpt = "";
} else {
if (!fSelected) {
fSelected = pickobj->GetObject();
fSelectedOpt = pickobj->GetOption();
}
}
fSelectedPad = pad;
gPad = pad; // don't use cd() because we won't draw in pad
// we will only use its coordinate system
FeedbackMode(kTRUE); // to draw in rubberband mode
fSelected->ExecuteEvent(event, px, py);
if (fShowEventStatus) DrawEventStatus(event, px, py, fSelected);
break;
case kButton1Motion:
if (fSelected) {
gPad = fSelectedPad;
fSelected->ExecuteEvent(event, px, py);
if (fSelected->InheritsFrom(TBox::Class()))
if ((!((TBox*)fSelected)->IsBeingResized() && fMoveOpaque) ||
(((TBox*)fSelected)->IsBeingResized() && fResizeOpaque)) {
gPad = fPadSave;
Update();
FeedbackMode(kTRUE);
}
if (fShowEventStatus) DrawEventStatus(event, px, py, fSelected);
}
break;
case kButton1Up:
if (fSelected) {
gPad = fSelectedPad;
fSelected->ExecuteEvent(event, px, py);
if (fShowEventStatus) DrawEventStatus(event, px, py, fSelected);
if (fPadSave->TestBit(kNotDeleted))
gPad = fPadSave;
else {
gPad = this;
fPadSave = this;
}
Update(); // before calling update make sure gPad is reset
}
break;
//*-*----------------------------------------------------------------------
case kButton2Down:
// find pad in which input occured
fSelected = 0;
fSelectedOpt = "";
fSelectedPad = 0;
pickobj = 0;
pad = Pick(px, py, pickobj);
if (!pad) return;
if (!pickobj) {
fSelected = pad;
fSelectedOpt = "";
} else {
if (!fSelected) {
fSelected = pickobj->GetObject();
fSelectedOpt = pickobj->GetOption();
}
}
fSelectedPad = pad;
gPad = pad; // don't use cd() because we won't draw in pad
// we will only use its coordinate system
FeedbackMode(kTRUE);
fSelected->Pop(); // pop object to foreground
pad->cd(); // and make its pad the current pad
if (gDebug)
printf("Current Pad: %s / %sn", pad->GetName(), pad->GetTitle());
// loop over all canvases to make sure that only one pad is highlighted
{
TIter next(gROOT->GetListOfCanvases());
TCanvas *tc;
while ((tc = (TCanvas *)next()))
tc->Update();
}
return; // don't want fPadSave->cd() to be executed at the end
case kButton2Motion:
break;
case kButton2Up:
break;
case kButton2Double:
break;
//*-*----------------------------------------------------------------------
case kButton3Down:
{
pad = Pick(px, py, pickobj);
if (!pad) return;
if (!pickobj) {
fSelected = pad;
fSelectedOpt = "";
} else {
if (!fSelected) {
fSelected = pickobj->GetObject();
fSelectedOpt = pickobj->GetOption();
}
}
fSelectedPad = pad;
if (fContextMenu)
fContextMenu->Popup(px, py, fSelected, this, pad);
break;
}
case kButton3Motion:
break;
case kButton3Up:
break;
case kButton3Double:
break;
case kKeyPress:
// find pad in which input occured
fSelected = 0;
fSelectedOpt = "";
fSelectedPad = 0;
pickobj = 0;
pad = Pick(px, py, pickobj);
if (!pad) return;
if (!pickobj) {
fSelected = pad;
fSelectedOpt = "";
} else {
if (!fSelected) {
fSelected = pickobj->GetObject();
fSelectedOpt = pickobj->GetOption();
}
}
fSelectedPad = pad;
gPad = pad; // don't use cd() because we won't draw in pad
// we will only use its coordinate system
fSelected->ExecuteEvent(event, px, py);
if (fShowEventStatus) DrawEventStatus(event, px, py, fSelected);
break;
default:
break;
}
if (fPadSave) fPadSave->cd();
}
//______________________________________________________________________________
void TCanvas::ls(Option_t *option)
{
//*-*-*-*-*-*-*-*-*-*-*-*-*-*-*List all pads*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* =============
IndentLevel();
cout <<"Canvas Name=" <<GetName()<<" Title="<<GetTitle()<<" Option="<<option<<endl;
TObject::IncreaseDirLevel();
TPad::ls(option);
TObject::DecreaseDirLevel();
}
//______________________________________________________________________________
void TCanvas::MakeDefCanvas()
{
//*-*-*-*-*-*-*Static function to build a default canvas*-*-*-*-*-*-*-*-*-*-*
//*-* =========================================
const char *defcanvas = gROOT->GetDefCanvasName();
char cdef[64];
TList *lc = (TList*)gROOT->GetListOfCanvases();
if (lc->FindObject(defcanvas)) {
sprintf(cdef,"%s_n%d",defcanvas,lc->GetSize()+1);
} else {
sprintf(cdef,"%s",defcanvas);
}
if (gInterpreter) {
char cline[80];
sprintf(cline,"TCanvas *%s = new TCanvas("%s","%s",1);",cdef,cdef,cdef);
gROOT->ProcessLine(cline);
} else {
(void)new TCanvas((char*)cdef,(char*)cdef,1);
}
::Warning("MakeDefCanvas","creating a default canvas with name %s",cdef);
}
//______________________________________________________________________________
void TCanvas::MoveOpaque(Int_t set)
{
//*-*-*-*-*-*-*-*-*Set option to move objects/pads in a canvas*-*-*-*-*-*-*-*
//*-* ===========================================
//
// if set = 1 (default) graphics objects are moved in opaque mode
// = 0 only the outline of objects is drawn when moving them
// The option opaque produces the best effect. It requires however a
// a reasonably fast workstation or response time.
//
fMoveOpaque = set;
}
//______________________________________________________________________________
void TCanvas::Paint(Option_t *option)
{
//*-*-*-*-*-*-*-*-*Paint canvas*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ============
if (fCanvas)
TPad::Paint(option);
}
//______________________________________________________________________________
void TCanvas::Resize(Option_t *)
{
//*-*-*-*-*-*-*Recompute canvas parameters following a X11 Resize*-*-*-*-*-*-*
//*-* ==================================================
if (fCanvasID == -1) return;
TPad *padsav = (TPad*)gPad;
cd();
if (!IsBatch()) {
gGXW->SelectWindow(fCanvasID); //select current canvas
gGXW->ResizeWindow(fCanvasID); //resize canvas and off-screen buffer
// Get effective window parameters including menubar and borders
fCanvasImp->GetWindowGeometry(fWindowTopX, fWindowTopY,
fWindowWidth, fWindowHeight);
// Get effective canvas parameters without borders
Int_t dum1, dum2;
gGXW->GetGeometry(fCanvasID, dum1, dum2, fCw, fCh);
}
if (fXsizeUser && fYsizeUser) {
UInt_t nwh = fCh;
UInt_t nww = fCw;
Float_t rxy = fXsizeUser/fYsizeUser;
if (rxy < 1) {
UInt_t twh = UInt_t(Float_t(fCw)/rxy);
if (twh > fCh)
nww = UInt_t(Float_t(fCh)*rxy);
else
nwh = twh;
if (nww > fCw) {
nww = fCw; nwh = twh;
}
if (nwh > fCh) {
nwh = fCh; nww = UInt_t(Float_t(fCh)/rxy);
}
} else {
UInt_t twh = UInt_t(Float_t(fCw)*rxy);
if (twh > fCh)
nwh = UInt_t(Float_t(fCw)/rxy);
else
nww = twh;
if (nww > fCw) {
nww = fCw; nwh = twh;
}
if (nwh > fCh) {
nwh = fCh; nww = UInt_t(Float_t(fCh)*rxy);
}
}
fCw = nww;
fCh = nwh;
}
if (fCw < fCh) {
fYsizeReal = kDefaultCanvasSize;
fXsizeReal = fYsizeReal*Float_t(fCw)/Float_t(fCh);
}
else {
fXsizeReal = kDefaultCanvasSize;
fYsizeReal = fXsizeReal*Float_t(fCh)/Float_t(fCw);
}
//*-*- Loop on all pads to recompute conversion coefficients
TPad::ResizePad();
padsav->cd();
}
//______________________________________________________________________________
void TCanvas::SaveSource(const Text_t *filename, Option_t *option)
{
//*-*-*-*-*-*-*Save primitives in this canvas as a C++ macro file*-*-*-*-*-*
//*-* ==================================================
// reset bit kClassSaved for all classes
const Int_t kClassSaved = BIT(12);
TIter next(gROOT->GetListOfClasses());
TClass *cl;
while((cl = (TClass*)next())) {
cl->ResetBit(kClassSaved);
}
char quote = '"';
ofstream out;
Int_t lenfile = strlen(filename);
char * fname;
// if filename is given, open this file, otherwise create a file
// with a name equal to the canvasname.C
if (lenfile) {
fname = (char*)filename;
out.open(fname, ios::out);
} else {
Int_t nch = strlen(GetName());
fname = new char[nch+3];
strcpy(fname,GetName());
strcat(fname,".C");
out.open(fname, ios::out);
}
if (!out.good ()) {
Printf("SaveSource cannot open file: %s",fname);
if (!lenfile) delete [] fname;
return;
}
// Write macro header and date/time stamp
TDatime t;
Float_t cx = gStyle->GetScreenFactor();
Int_t w = Int_t((fWindowWidth)/cx);
Int_t h = Int_t((fWindowHeight)/cx);
out <<"{"<<endl;
out <<"//=========Macro generated from canvas: "<<GetName()<<"/"<<GetTitle()<<endl;
out <<"//========= ("<<t.AsString()<<") by ROOT version"<<gROOT->GetVersion()<<endl;
// out <<" gROOT->Reset();"<<endl;
// Write canvas parameters (TDialogCanvas case)
if (InheritsFrom(TDialogCanvas::Class())) {
out<<" "<<ClassName()<<" *"<<GetName()<<" = new "<<ClassName()<<"("<<quote<<GetName()<<quote<<", "<<quote<<GetTitle()
<<quote<<","<<w<<","<<h<<");"<<endl;
} else {
// Write canvas parameters (TCanvas case)
out<<" TCanvas *"<<GetName()<<" = new TCanvas("<<quote<<GetName()<<quote<<", "<<quote<<GetTitle()
<<quote<<","<<GetWindowTopX()<<","<<GetWindowTopY()<<","<<w<<","<<h<<");"<<endl;
}
// Write canvas options (in $TROOT or $TStyle)
if (gStyle->GetOptFit()) {
out<<" gStyle->SetOptFit(1);"<<endl;
}
if (!gStyle->GetOptStat()) {
out<<" gStyle->SetOptStat(0);"<<endl;
}
if (gROOT->GetEditHistograms()) {
out<<" gROOT->SetEditHistograms();"<<endl;
}
if (GetShowEventStatus()) {
out<<" "<<GetName()<<"->ToggleEventStatus();"<<endl;
}
if (GetHighLightColor() != 5) {
out<<" "<<GetName()<<"->SetHighLightColor("<<GetHighLightColor()<<");"<<endl;
}
// Now recursively scan all pads of this canvas
cd();
TPad::SavePrimitive(out,option);
out <<"}"<<endl;
out.close();
Printf("C++ Macro file: %s has been generated", fname);
// reset bit kClassSaved for all classes
next.Reset();
while((cl = (TClass*)next())) {
cl->ResetBit(kClassSaved);
}
if (!lenfile) delete [] fname;
}
//______________________________________________________________________________
void TCanvas::SetBatch(Bool_t batch)
{
// Toggle batch mode. However, if the canvas is created without a window
// then batch mode always stays set.
if (!fCanvasImp || gROOT->IsBatch())
fBatch = kTRUE;
else
fBatch = batch;
}
//______________________________________________________________________________
void TCanvas::SetCanvasSize(UInt_t ww, UInt_t wh)
{
// Set Width and Height of canvas to ww and wh respectively
// If ww and/or wh are greater than the current canvas window
// a scroll bar is automatically generated.
// Use this function to zoom in a canvas and naviguate via
// the scroll bars.
fCanvasImp->SetCanvasSize(ww, wh);
}
//______________________________________________________________________________
void TCanvas::SetCursor(ECursor cursor)
{
//*-*-*-*-*-*-*-*-*-*-*Set cursor*-*-**-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ==========
if (IsBatch()) return;
gGXW->SetCursor(fCanvasID, cursor);
}
//______________________________________________________________________________
void TCanvas::SetDoubleBuffer(Int_t mode)
{
//*-*-*-*-*-*-*-*-*-*-*Set Double Buffer On/Off*-*-**-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ========================
if (IsBatch()) return;
fDoubleBuffer = mode;
gGXW->SetDoubleBuffer(fCanvasID, mode);
// depending of the buffer mode set the drawing window to either
// the canvas pixmap or to the canvas on-screen window
#ifndef WIN32
if (fDoubleBuffer)
gGXW->SelectWindow(fPixmapID);
else
#endif
gGXW->SelectWindow(fCanvasID);
}
//______________________________________________________________________________
void TCanvas::SetTitle(const Text_t *title)
{
//*-*-*-*-*-*-*-*-*-*-*Set Canvas title*-*-**-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ===============
fTitle = title;
fCanvasImp->SetWindowTitle(title);
}
//______________________________________________________________________________
void TCanvas::Size(Float_t xsize, Float_t ysize)
{
//*-*-*-*-*-*-*Set the canvas scale in centimeters*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* ===================================
// This information is used by PostScript to set the page size.
// xsize = size of the canvas in centimeters along X
// ysize = size of the canvas in centimeters along Y
// if xsize and ysize are not equal to 0, then the scale factors will
// be computed to keep the ratio ysize/xsize independently of the canvas
// size (parts of the physical canvas will be unused).
//
// if xsize = 0 and ysize is not zero, then xsize will be computed
// to fit to the current canvas scale. If the canvas is resized,
// a new value for xsize will be recomputed. In this case the aspect
// ratio is not preserved.
//
// if both xsize = 0 and ysize = 0, then the scaling is automatic.
// the largest dimension will be allocated a size of 20 centimeters.
//
fXsizeUser = xsize;
fYsizeUser = ysize;
Resize();
}
//_______________________________________________________________________
void TCanvas::Streamer(TBuffer &b)
{
//*-*-*-*-*-*-*-*-*Stream a class object*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* =========================================
if (b.IsReading()) {
Version_t v = b.ReadVersion();
gPad = this;
fCanvas = this;
TPad::Streamer(b);
gPad = this;
fDISPLAY.Streamer(b);
b >> fDoubleBuffer;
b >> fRetained;
b >> fXsizeUser;
b >> fYsizeUser;
b >> fXsizeReal;
b >> fYsizeReal;
fCanvasID = -1;
b >> fWindowTopX;
b >> fWindowTopY;
if (v > 2) {
b >> fWindowWidth;
b >> fWindowHeight;
}
b >> fCw;
b >> fCh;
if (v <= 2) {
fWindowWidth = fCw;
fWindowHeight = fCh;
}
fCatt.Streamer(b);
b >> fMoveOpaque;
b >> fResizeOpaque;
b >> fHighLightColor;
b >> fBatch;
fBatch = gROOT->IsBatch();
if (v < 2) return;
b >> fShowEventStatus;
b >> fMenuBar;
} else {
b.WriteVersion(TCanvas::IsA());
TPad::Streamer(b);
fDISPLAY.Streamer(b);
b << fDoubleBuffer;
b << fRetained;
b << fXsizeUser;
b << fYsizeUser;
b << fXsizeReal;
b << fYsizeReal;
UInt_t w = fWindowWidth; // must be saved, modified by GetWindowTopX in batch
UInt_t h = fWindowHeight;
b << GetWindowTopX();
b << GetWindowTopY();
b << w;
b << h;
b << fCw;
b << fCh;
fCatt.Streamer(b);
b << fMoveOpaque;
b << fResizeOpaque;
b << fHighLightColor;
b << fBatch;
b << fShowEventStatus;
b << fMenuBar;
}
}
//______________________________________________________________________________
void TCanvas::ToggleEventStatus()
{
// Toggle event statusbar.
fShowEventStatus = fShowEventStatus ? kFALSE : kTRUE;
if (fCanvasImp) fCanvasImp->ShowStatusBar(fShowEventStatus);
}
//______________________________________________________________________________
void TCanvas::Update()
{
//*-*-*-*-*-*-*-*-*Update canvas pad buffers*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//*-* =========================
#ifdef R__THREAD
if (gThreadXAR) {
void *arr[2];
arr[1] = this;
if ((*gThreadXAR)("CUPD", 2, arr, NULL)) return;
}
#endif
if (!IsBatch()) FeedbackMode(kFALSE); // Goto double buffer mode
PaintModified(); // Repaint all modified pad's
Flush(); // Copy all pad pixmaps to the screen
SetCursor(kCross);
}
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.