ROOT logo
// @(#)root/ged:$Id: TStyleManager.cxx,v 1.0 2005/09/08
// Author: Denis Favre-Miville   08/09/05

/*************************************************************************
 * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

//////////////////////////////////////////////////////////////////////////
//                                                                      //
//  TStyleManager                                                       //
//                                                                      //
//  This class provides a Graphical User Interface to manage styles     //
//       in ROOT. It allows the user to edit styles, import / export    //
//       them to macros, apply a style on the selected object or on     //
//       all canvases, change gStyle.                                   //
//                                                                      //
//  Activate the style manager by selecting Edit menu / Style...        //
//      in the canvas window.                                           //
//                                                                      //
//  The Style Manager interface is composed of two parts:               //
//  - the top level interface that manages a list of styles;            //
//  - the style editor, which deals with the current style settings.    //
//                                                                      //
//Begin_Html
/*
<img src="gif/StyleManager.gif">
*/
//End_Html
//                                                                      //
// The combo box 'Available Styles' contains the list of available      //
// styles for the current ROOT session and shows the currently          //
// selected one. The field on the right shows the setting of the gStyle.//
// You can set the global variable gStyle to the selected style by      //
// clicking on the button in the middle.                                //
// The group frame 'Apply on' displays information for the currently    //
// selected canvas and object in the ROOT session. This selection might //
// be changed by clicking on another object with the middle mouse       //
// button. You have a choice to apply a style on the selected object or //
// on all available canvases.                                           //
// WARNING: You cannot undo the changes after applying the style! If    //
// you are not sure of that action, it may be better to see a preview   //
// of what you are going to apply.                                      //
// If the check button 'Preview' is selected, a preview of the selected //
// canvas according to the selected style will be shown. The selection  //
// of the next check button 'Run Time Preview' will apply updates of    //
// the preview any time a value of the selected style is changed. For   //
// drawings that take a time it is better to disable this option.       //
//                                                                      //
// Create a new style:                                                  //
// A new style can be created via the Style menu/New... or the toolbar. //
// A clone of the selected style will be used as a base of the new      //
// style. All its values can be modified via the style editor later.    //
// The dialog that appears will ask for the name and description of the //
// new style.                                                           //
//                                                                      //
// Import a style (from a macro):                                       //
// A style macro can be imported at any time. The new imported style in //
// the ROOT session will become the selected one.                       //
//                                                                      //
// Import a style (from a canvas):                                      //
// You can do that selecting the Style menu/Import from.../Canvas or    //
// the corresponding Tool bar button. A new style will be created in the//
// ROOT session and will become the selected one. This style is a clone //
// of the gStyle with modified values as they are set in the currently  //
// selected canvas. You can import a style from any canvas and apply it //
// later on some objects.                                               //
//                                                                      //
// Export a style (in a C++ macro file):                                //
// To store a style longer than for the current ROOT session you can    //
// save it in a C++ macro file. This can be done via the menu or the    //
// tool bar button. There is a naming convention for the style macros:  //
// the name must be 'Style_*.C', where * can be replaced by anything    //
// you want.                                                            //
//                                                                      //
// Delete a style:                                                      //
// The selected style can be deleted from the list when you use the     //
// Style menu/Delete or the corresponding tool bar button. The selected //
// style is removed from the list of all available styles for the       //
// current ROOT session. WARRNING: it will be lost if you didn't saved  //
// it in a C++ macro file before its deletion. Also, you cannot delete  //
// the selected style if it is set to gStyle. A message 'Can not delete //
// gStyle' will be displayed on the CINT prompt.                        //
//                                                                      //
//Begin_Html
/*
<img src="gif/StyleEditor.gif">
*/
//End_Html
//                                                                      //
// Editor's buttons:                                                    //
// Open / close the style editor:                                       //
// The button 'Edit >>' opens the style editor and its label changes to //
// 'Close <<'. For all details of what can be changed and how please see//
// the provided Help.                                                   //
//                                                                      //
// Reset a style (to a previously saved state):                         //
// When the editor is opened, the 'Reset' button allows you to reset    //
// the values of the selected style for editing. Doing that you cancel  //
// all changes made since the last time you saved that style in a macro.//
// If the selected style is one of the five ROOT styles (Plain, Bold,   //
// Video, Pub or  Default), it will be recreated.                       //
//                                                                      //
// Update the preview:                                                  //
// The button 'Update Preview' is available when a preview is shown and //
// the run time option is not selected. This button allows you to       //
// refresh the preview any time you want to see how the style you edit  //
// looks like.                                                          //
//                                                                      //
// Help button:                                                         //
// Provides a help of the currently selected tab.                       //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#include "TStyleManager.h"
#include "TStyleDialog.h"
#include "TStylePreview.h"
#include "HelpSMText.h"

#include <TCanvas.h>
#include <TColor.h>
#include <TG3DLine.h>
#include <TGButton.h>
#include <TGButtonGroup.h>
#include <TGColorSelect.h>
#include <TGComboBox.h>
#include <TGedMarkerSelect.h>
#include <TGedPatternSelect.h>
#include <TGFileDialog.h>
#include <TGFrame.h>
#include <TGLabel.h>
#include <TGLayout.h>
#include <TGMenu.h>
#include <TGMsgBox.h>
#include <TGNumberEntry.h>
#include <TGResourcePool.h>
#include <TGStatusBar.h>
#include <TGTab.h>
#include <TGToolBar.h>
#include <TROOT.h>
#include <TRootHelpDialog.h>
#include <TStyle.h>
#include <TSystem.h>
#include <TVirtualPad.h>

TStyleManager *TStyleManager::fgStyleManager = 0;

ClassImp(TStyleManager)

enum EStyleManagerWid {
   kMenuNew,
   kMenuDelete,
   kMenuRename,
   kMenuImportCanvas,
   kMenuImportMacro,
   kMenuExport,
   kMenuExit,
   kMenuHelp,
   kMenuHelpEditor,
   kMenuHelpGeneral,
   kMenuHelpCanvas,
   kMenuHelpPad,
   kMenuHelpHistos,
   kMenuHelpAxis,
   kMenuHelpTitle,
   kMenuHelpStats,
   kMenuHelpPSPDF,

   kToolbarNew,
   kToolbarDelete,
   kToolbarImportCanvas,
   kToolbarImportMacro,
   kToolbarExport,
   kToolbarHelp,

   kTopStylesList,
   kTopPreview,
   kTopPreviewRealTime,
   kTopMakeDefault,
   kTopCurStyle,
   kTopCurPad,
   kTopCurObj,
   kTopApplyOnAll,
   kTopApplyOnSel,
   kTopApplyOnBut,
   kTopMoreLess,

   kEditButHelp,
   kEditButUpPrev,
   kEditButReset,

   kGeneralFillColor,
   kGeneralFillStyle,
   kGeneralHatchesLineWidth,
   kGeneralHatchesSpacing,
   kGeneralTextColor,
   kGeneralTextSize,
   kGeneralTextSizeInPixels,
   kGeneralTextFont,
   kGeneralTextAlign,
   kGeneralTextAngle,
   kGeneralLineColor,
   kGeneralLineWidth,
   kGeneralLineStyle,
   kGeneralLineStyleEdit,
   kGeneralMarkerColor,
   kGeneralMarkerStyle,
   kGeneralMarkerSize,
   kGeneralScreenFactor,

   kCanvasColor,
   kCanvasDefX,
   kCanvasDefY,
   kCanvasDefW,
   kCanvasDefH,
   kCanvasBorderModeSunken,
   kCanvasBorderModeNone,
   kCanvasBorderModeRaised,
   kCanvasBorderSize,
   kCanvasOptDateBool,
   kCanvasAttDateTextColor,
   kCanvasAttDateTextSize,
   kCanvasAttDateTextSizeInPixels,
   kCanvasOptDateFormat,
   kCanvasAttDateTextFont,
   kCanvasAttDateTextAngle,
   kCanvasAttDateTextAlign,
   kCanvasDateX,
   kCanvasDateY,

   kPadLeftMargin,
   kPadRightMargin,
   kPadTopMargin,
   kPadBottomMargin,
   kPadBorderModeSunken,
   kPadBorderModeNone,
   kPadBorderModeRaised,
   kPadBorderSize,
   kPadColor,
   kPadTickX,
   kPadTickY,
   kPadGridX,
   kPadGridY,
   kPadGridColor,
   kPadGridWidth,
   kPadGridStyle,

   kHistFillColor,
   kHistFillStyle,
   kHistLineColor,
   kHistLineWidth,
   kHistLineStyle,
   kHistBarWidth,
   kHistBarOffset,
   kHistMinimumZero,
   kHistPaintTextFormat,
   kHistNumberContours,
   kHistLegoInnerR,

   kFrameFillColor,
   kFrameFillStyle,
   kFrameLineColor,
   kFrameLineWidth,
   kFrameLineStyle,
   kFramePaletteEdit,
   kFrameBorderModeSunken,
   kFrameBorderModeNone,
   kFrameBorderModeRaised,
   kFrameBorderSize,

   kGraphsFuncColor,
   kGraphsFuncWidth,
   kGraphsFuncStyle,
   kGraphsDrawBorder,
   kGraphsEndErrorSize,
   kGraphsErrorX,

   kAxisTimeOffsetDate,
   kAxisTimeOffsetTime,
   kAxisStripDecimals,
   kAxisApplyOnXYZ,

   kAxisXTitleSize,
   kAxisXTitleSizeInPixels,
   kAxisXTitleColor,
   kAxisXTitleOffset,
   kAxisXTitleFont,
   kAxisXLabelSize,
   kAxisXLabelSizeInPixels,
   kAxisXLabelColor,
   kAxisXLabelOffset,
   kAxisXLabelFont,
   kAxisXAxisColor,
   kAxisXTickLength,
   kAxisOptLogx,
   kAxisXNdivMain,
   kAxisXNdivSub,
   kAxisXNdivSubSub,
   kAxisXNdivisionsOptimize,

   kAxisYTitleSize,
   kAxisYTitleSizeInPixels,
   kAxisYTitleColor,
   kAxisYTitleOffset,
   kAxisYTitleFont,
   kAxisYLabelSize,
   kAxisYLabelSizeInPixels,
   kAxisYLabelColor,
   kAxisYLabelOffset,
   kAxisYLabelFont,
   kAxisYAxisColor,
   kAxisYTickLength,
   kAxisOptLogy,
   kAxisYNdivMain,
   kAxisYNdivSub,
   kAxisYNdivSubSub,
   kAxisYNdivisionsOptimize,

   kAxisZTitleSize,
   kAxisZTitleSizeInPixels,
   kAxisZTitleColor,
   kAxisZTitleOffset,
   kAxisZTitleFont,
   kAxisZLabelSize,
   kAxisZLabelSizeInPixels,
   kAxisZLabelColor,
   kAxisZLabelOffset,
   kAxisZLabelFont,
   kAxisZAxisColor,
   kAxisZTickLength,
   kAxisOptLogz,
   kAxisZNdivMain,
   kAxisZNdivSub,
   kAxisZNdivSubSub,
   kAxisZNdivisionsOptimize,

   kTitleOptTitle,
   kTitleFillColor,
   kTitleStyle,
   kTitleTextColor,
   kTitleFontSize,
   kTitleFontSizeInPixels,
   kTitleFont,
   kTitleAlign,
   kTitleBorderSize,
   kTitleX,
   kTitleY,
   kTitleW,
   kTitleH,
   kTitleLegendBorderSize,

   kStatColor,
   kStatStyle,
   kStatTextColor,
   kStatFontSize,
   kStatFontSizeInPixels,
   kStatFont,
   kStatX,
   kStatY,
   kStatW,
   kStatH,
   kStatBorderSize,
   kStatOptStatName,
   kStatOptStatEntries,
   kStatOptStatOverflow,
   kStatOptStatMean,
   kStatOptStatUnderflow,
   kStatOptStatRMS,
   kStatOptStatSkewness,
   kStatOptStatIntegral,
   kStatOptStatKurtosis,
   kStatOptStatErrors,
   kStatFormat,
   kStatOptFitValues,
   kStatOptFitErrors,
   kStatOptFitProbability,
   kStatOptFitChi,
   kStatFitFormat,

   kPSPDFHeaderPS,
   kPSPDFTitlePS,
   kPSPDFColorModelPS,
   kPSPDFColorModelPSRGB,
   kPSPDFColorModelPSCMYK,
   kPSPDFLineScalePS,
   kPSPDFPaperSizePredef,
   kPSPDFPaperSizeX,
   kPSPDFPaperSizeY
};

const char *kFiletypes[] = { "ROOT macros", "Style_*.C",
                               0,             0 };

//______________________________________________________________________________
TStyleManager::TStyleManager(const TGWindow *p) : TGMainFrame(p)
{
   // Constructor. Create the main window of the style manager.

   SetWindowName("Style Manager");
   SetCleanup(kNoCleanup);

   // Initialization: no selected style, no preview, no signal/slots,
   //                 no selected object, no current macro file.
   fCurSelStyle = 0;
   fCurMacro = 0;
   fCurPad = 0;
   fCurObj = 0;
   fPreviewWindow = 0;
   fRealTimePreview = kFALSE;
   fCurTabNum = 0;
   fCurTabAxisNum = 0;
   fMoreAndNotLess = kTRUE;
   fSigSlotConnected = kFALSE;
   fStyleChanged = kFALSE;

   // Create the trash lists to have an effective deletion of every object.
   fTrashListLayout = new TList();
   fTrashListFrame = new TList();

   // To avoid to create a lot a copies of the often used layouts.
   fLayoutExpandX = new TGLayoutHints(kLHintsExpandX);
   fTrashListLayout->Add(fLayoutExpandX);
   fLayoutExpandXMargin = new TGLayoutHints(kLHintsExpandX, 5, 5, 5, 5);
   fTrashListLayout->Add(fLayoutExpandXMargin);
   fLayoutExpandXY = new TGLayoutHints(kLHintsExpandX | kLHintsExpandY);
   fTrashListLayout->Add(fLayoutExpandXY);
   fLayoutExpandXYMargin = new TGLayoutHints(kLHintsExpandX | kLHintsExpandY, 5, 5, 5, 5);
   fTrashListLayout->Add(fLayoutExpandXYMargin);
   fLayoutExpandXCenterYMargin = new TGLayoutHints(kLHintsExpandX | kLHintsCenterY, 0, 0, 3, 3);
   fTrashListLayout->Add(fLayoutExpandXCenterYMargin);

   // Build the graphical interface.
   AddMenus(this);
   AddToolbar(this);
   AddTopLevelInterface(this);
   AddEdition(this);

   // Add status bar.
   fStatusBar = new TGStatusBar(this, 50, 10, kVerticalFrame);
   Int_t parts[] = { 20, 30, 50 };
   fStatusBar->SetParts(parts, 3);
   fStatusBar->Draw3DCorner(kFALSE);
   AddFrame(fStatusBar, fLayoutExpandX);

   // Initialize the layout algorithm and map the main frame.
   MapSubwindows();
   Resize(GetDefaultSize());
   MapWindow();

   //  Ensure the editor will be visible (not out of the screen's range) when
   // the user will press the 'More' button, if he didn't move the window.
   Int_t x, y;
   UInt_t w, h;
   gVirtualX->GetWindowSize(GetId(), x, y, w, h);
   fSMWidth = w;
   fSMHeight = h;
   if (fSMWidth < 467) fSMWidth = 467;
   if (fSMHeight < 708) fSMHeight = 708;
   Window_t win;
   gVirtualX->TranslateCoordinates(GetId(), GetParent()->GetId(), 0, 0, x, y, win);
   x -= 6;
   y -= 21;
   MoveResize(x, TMath::Max(TMath::Min(y, (Int_t) (gClient->GetDisplayHeight() - h)), 0), w, h);

   // Only the top level interface is shown, at the begining.
   DoMoreLess();

   // Connect all widgets (excluding editor).
   ConnectAll();

   Init();
}

//______________________________________________________________________________
TStyleManager::~TStyleManager()
{
   // Destructor.

   // Disconnect all widgets
   DisconnectAll();
   DisconnectEditor(fCurTabNum);

   if (fPreviewWindow) {
      DoPreviewClosed();
      delete fPreviewWindow;
   }

   //  Delete every graphical data member,
   // excluding fPreviewWindow and fLayout[..].
   gClient->FreePicture(fToolBarNewPic);
   gClient->FreePicture(fToolBarDeletePic);
   gClient->FreePicture(fToolBarImportCanvasPic);
   gClient->FreePicture(fToolBarImportMacroPic);
   gClient->FreePicture(fToolBarExportPic);
   gClient->FreePicture(fToolBarHelpPic);
   gClient->FreePicture(fMakeDefaultPic);

   delete fImportCascade;
   delete fMenuStyle;
   delete fMenuHelp;
   delete fMenuBar;

   delete fToolBar;
   delete fToolBarNew;
   delete fToolBarDelete;
   delete fToolBarImportCanvas;
   delete fToolBarImportMacro;
   delete fToolBarExport;
   delete fToolBarHelp;
   delete fHorizontal3DLine;

   delete fListLabel;
   delete fListComboBox;
   delete fCurMacro;
   delete fCurStylabel;
   delete fCurStyle;
   delete fCurPadLabel;
   delete fCurPadTextEntry;
   delete fCurObjLabel;
   delete fCurObjTextEntry;
   delete fPreviewButton;
   delete fPreviewRealTime;
   delete fMakeDefault;

   delete fApplyOnGroup;
   delete fApplyOnAll;
   delete fApplyOnSel;
   delete fApplyOnButton;
   delete fMoreLess;

   delete fFillColor;
   delete fFillStyle;
   delete fHatchesLineWidth;
   delete fHatchesSpacing;
   delete fTextColor;
   delete fTextSize;
   delete fTextSizeInPixels;
   delete fTextFont;
   delete fTextAlign;
   delete fTextAngle;
   delete fLineColor;
   delete fLineWidth;
   delete fLineStyle;
   delete fLineStyleEdit;
   delete fMarkerColor;
   delete fMarkerStyle;
   delete fMarkerSize;
   delete fScreenFactor;
   delete fCanvasColor;
   delete fCanvasDefX;
   delete fCanvasDefY;
   delete fCanvasDefW;
   delete fCanvasDefH;
   delete fCanvasBorderMode;
   delete fCanvasBorderSize;
   delete fOptDateBool;
   delete fAttDateTextColor;
   delete fAttDateTextSize;
   delete fAttDateTextSizeInPixels;
   delete fOptDateFormat;
   delete fAttDateTextFont;
   delete fAttDateTextAngle;
   delete fAttDateTextAlign;
   delete fDateX;
   delete fDateY;
   delete fPadLeftMargin;
   delete fPadRightMargin;
   delete fPadTopMargin;
   delete fPadBottomMargin;
   delete fPadBorderMode;
   delete fPadBorderSize;
   delete fPadColor;
   delete fPadTickX;
   delete fPadTickY;
   delete fPadGridX;
   delete fPadGridY;
   delete fGridColor;
   delete fGridWidth;
   delete fGridStyle;
   delete fHistFillColor;
   delete fHistFillStyle;
   delete fHistLineColor;
   delete fHistLineWidth;
   delete fHistLineStyle;
   delete fBarWidth;
   delete fBarOffset;
   delete fHistMinimumZero;
   delete fPaintTextFormat;
   delete fNumberContours;
   delete fLegoInnerR;
   delete fFrameFillColor;
   delete fFrameFillStyle;
   delete fFrameLineColor;
   delete fFrameLineWidth;
   delete fFrameLineStyle;
   delete fPaletteEdit;
   delete fFrameBorderMode;
   delete fFrameBorderSize;
   delete fFuncColor;
   delete fFuncWidth;
   delete fFuncStyle;
   delete fDrawBorder;
   delete fEndErrorSize;
   delete fErrorX;
   delete fTimeOffsetDate;
   delete fTimeOffsetTime;
   delete fStripDecimals;
   delete fApplyOnXYZ;
   delete fXTitleSize;
   delete fXTitleSizeInPixels;
   delete fXTitleColor;
   delete fXTitleOffset;
   delete fXTitleFont;
   delete fXLabelSize;
   delete fXLabelSizeInPixels;
   delete fXLabelColor;
   delete fXLabelOffset;
   delete fXLabelFont;
   delete fXAxisColor;
   delete fXTickLength;
   delete fOptLogx;
   delete fXNdivMain;
   delete fXNdivSub;
   delete fXNdivSubSub;
   delete fXNdivisionsOptimize;
   delete fYTitleSize;
   delete fYTitleSizeInPixels;
   delete fYTitleColor;
   delete fYTitleOffset;
   delete fYTitleFont;
   delete fYLabelSize;
   delete fYLabelSizeInPixels;
   delete fYLabelColor;
   delete fYLabelOffset;
   delete fYLabelFont;
   delete fYAxisColor;
   delete fYTickLength;
   delete fOptLogy;
   delete fYNdivMain;
   delete fYNdivSub;
   delete fYNdivSubSub;
   delete fYNdivisionsOptimize;
   delete fZTitleSize;
   delete fZTitleSizeInPixels;
   delete fZTitleColor;
   delete fZTitleOffset;
   delete fZTitleFont;
   delete fZLabelSize;
   delete fZLabelSizeInPixels;
   delete fZLabelColor;
   delete fZLabelOffset;
   delete fZLabelFont;
   delete fZAxisColor;
   delete fZTickLength;
   delete fOptLogz;
   delete fZNdivMain;
   delete fZNdivSub;
   delete fZNdivSubSub;
   delete fZNdivisionsOptimize;
   delete fOptTitle;
   delete fTitleColor;
   delete fTitleStyle;
   delete fTitleTextColor;
   delete fTitleFontSize;
   delete fTitleFontSizeInPixels;
   delete fTitleFont;
   delete fTitleAlign;
   delete fTitleBorderSizeLabel;
   delete fTitleBorderSize;
   delete fTitleX;
   delete fTitleY;
   delete fTitleW;
   delete fTitleH;
   delete fLegendBorderSizeLabel;
   delete fLegendBorderSize;
   delete fStatColor;
   delete fStatStyle;
   delete fStatTextColor;
   delete fStatFontSize;
   delete fStatFontSizeInPixels;
   delete fStatFont;
   delete fStatX;
   delete fStatY;
   delete fStatW;
   delete fStatH;
   delete fStatBorderSizeLabel;
   delete fStatBorderSize;
   delete fOptStatName;
   delete fOptStatEntries;
   delete fOptStatOverflow;
   delete fOptStatMean;
   delete fOptStatUnderflow;
   delete fOptStatRMS;
   delete fOptStatSkewness;
   delete fOptStatIntegral;
   delete fOptStatKurtosis;
   delete fOptStatErrors;
   delete fStatFormatLabel;
   delete fStatFormat;
   delete fOptFitValues;
   delete fOptFitErrors;
   delete fOptFitProbability;
   delete fOptFitChi;
   delete fFitFormatLabel;
   delete fFitFormat;
   delete fHeaderPS;
   delete fTitlePS;
   delete fColorModelPS;
   delete fColorModelPSRGB;
   delete fColorModelPSCMYK;
   delete fLineScalePS;
   delete fPaperSizePredef;
   delete fPaperSizeX;
   delete fPaperSizeY;
   delete fEditionHelp;
   delete fEditionUpdatePreview;
   delete fEditionReset;
   delete fEditionButtonFrame;
   delete fHistosTab;
   delete fAxisTab;
   delete fEditionTab;
   delete fEditionFrame;

   delete fStatusBar;

   // Delete the temporary frames and layout.
   TObject *obj1;
   TObject *obj2;

   obj1 = fTrashListFrame->First();
   while (obj1) {
      obj2 = fTrashListFrame->After(obj1);
      fTrashListFrame->Remove(obj1);
      delete obj1;
      obj1 = obj2;
   }
   delete fTrashListFrame;

   obj1 = fTrashListLayout->First();
   while (obj1) {
      obj2 = fTrashListLayout->After(obj1);
      fTrashListLayout->Remove(obj1);
      delete obj1;
      obj1 = obj2;
   }
   delete fTrashListLayout;

   fgStyleManager = 0;
}

//______________________________________________________________________________
TStyleManager *&TStyleManager::GetSM()
{
   //static: return style manager
   return fgStyleManager; 
}

//______________________________________________________________________________
void TStyleManager::Init()
{
   // Set up the interface. Called by the ctor or by the 'Show' method.

   // Build the list of available styles and select gStyle.
   BuildList(gStyle);

   // Show the current object.
   if ((gROOT->GetSelectedPad()) && (gROOT->GetSelectedPad()->GetCanvas())) {
      DoSelectCanvas(gROOT->GetSelectedPad()->GetCanvas(),
                     gROOT->GetSelectedPad()->GetCanvas(), kButton2Down);
   } else {
      DoSelectNoCanvas();
   }
}

//______________________________________________________________________________
void TStyleManager::Hide()
{
   // Called to hide the style manager.

   if (fgStyleManager) {
      fgStyleManager->UnmapWindow();
   }
}

//______________________________________________________________________________
void TStyleManager::Show()
{
   // Called to show the style manager. Static method.

   if (fgStyleManager) {
      fgStyleManager->Init();
      if (!fgStyleManager->IsMapped()) {
         fgStyleManager->MapWindow();
      }
   } else {
      TStyleManager::GetSM() = new TStyleManager(gClient->GetRoot());
   }
}

//______________________________________________________________________________
void TStyleManager::Terminate()
{
   //  Called to delete the style manager. Called when the ROOT session is
   // closed via a canvas' menu.

   delete fgStyleManager;
   fgStyleManager = 0;
}

//______________________________________________________________________________
void TStyleManager::AddMenus(TGCompositeFrame *p)
{
   // Add the menu bar to the frame 'p'.

   fMenuBar = new TGMenuBar(p);

   fMenuStyle = new TGPopupMenu(gClient->GetRoot());
   fMenuStyle->Associate(this);
   fMenuStyle->AddEntry("&New...", kMenuNew);
   fMenuStyle->AddEntry("&Delete", kMenuDelete);
   fMenuStyle->AddSeparator();
   fMenuStyle->AddEntry("&Rename...", kMenuRename);
   fMenuStyle->AddSeparator();
   fImportCascade = new TGPopupMenu(gClient->GetRoot());
   fImportCascade->Associate(this);
   fImportCascade->AddEntry("&Macro...", kMenuImportMacro);
   fImportCascade->AddEntry("&Canvas...", kMenuImportCanvas);
   fMenuStyle->AddPopup("&Import From...", fImportCascade);

   fMenuStyle->AddEntry("&Export...", kMenuExport);
   fMenuStyle->AddSeparator();
   fMenuStyle->AddEntry("&Close", kMenuExit);
   TGLayoutHints *layout1 = new TGLayoutHints(kLHintsNormal);
   fTrashListLayout->Add(layout1);
   fMenuBar->AddPopup("&Style", fMenuStyle, layout1);

   fMenuHelp = new TGPopupMenu(gClient->GetRoot());
   fMenuHelp->Associate(this);
   fMenuHelp->AddEntry("Top &level", kMenuHelp);
   fMenuHelp->AddSeparator();
   fMenuHelp->AddEntry("&General", kMenuHelpGeneral);
   fMenuHelp->AddEntry("&Canvas", kMenuHelpCanvas);
   fMenuHelp->AddEntry("Pa&d", kMenuHelpPad);
   fMenuHelp->AddEntry("&Histograms", kMenuHelpHistos);
   fMenuHelp->AddEntry("&Axis", kMenuHelpAxis);
   fMenuHelp->AddEntry("&Title", kMenuHelpTitle);
   fMenuHelp->AddEntry("&Stats", kMenuHelpStats);
   fMenuHelp->AddEntry("&PS / PDF", kMenuHelpPSPDF);
   TGLayoutHints *layout2 = new TGLayoutHints(kLHintsRight);
   fTrashListLayout->Add(layout2);
   fMenuBar->AddPopup("&Help", fMenuHelp, layout2);

   p->AddFrame(fMenuBar, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::DoNew()
{
   // Create a new style. Called via the menu bar or the tool bar.

   // Open a message box to allow the user to create a new style.
   new TStyleDialog(this, fCurSelStyle, 1, 0);

   // Create the list of available styles, and select:
   //    - the new style, if it has been created (Ok).
   //    - the previous selected style, if no style has been created (Cancel).
   if (fLastChoice) BuildList();
               else BuildList(fCurSelStyle);
}

//______________________________________________________________________________
void TStyleManager::DoDelete()
{
   //  Delete the current selected style from the ROOT session.
   // Called via the menu or the tool bar.

   // Protection: the user is NOT allowed to delete gStyle.
   // As a consequence, there is always at least one style in the ROOT session.
   if (fCurSelStyle == gStyle) {
      printf("Can not delete gStyle.\n");
      return;
   }

   delete fCurSelStyle;
   fCurSelStyle = 0;

   BuildList(gStyle);
}

//______________________________________________________________________________
void TStyleManager::DoRename()
{
   // Rename the current selected style. Called via the menu bar.

   new TStyleDialog(this, fCurSelStyle, 2, 0);

   // Create the list of styles and select the previous selected style.
   BuildList(fCurSelStyle);
}

//______________________________________________________________________________
void TStyleManager::DoExport()
{
   //  Save the current selected style in a C++ macro file. Called via the menu
   // or the tool bar.

   // Create an associated macro and propose a pertinent name to the user.
   CreateMacro();
   char* newName = new char[(10 + strlen(fCurSelStyle->GetName())) * sizeof(char)];
   sprintf(newName, "Style_%s.C", fCurSelStyle->GetName());

   //  Protection: The user isn't allowed to export a style if the output
   // file name isn't based on the "Style_*.C" mask, without spaces.
   char* tmpFileName;
   const char* tmpBaseName;
   do {
      fCurMacro->fFilename = StrDup(newName);

      // Open a dialog to ask the user to choose an output file.
      new TGFileDialog(gClient->GetRoot(), this, kFDSave, fCurMacro);
      tmpFileName = fCurMacro->fFilename;
      if (tmpFileName) tmpBaseName = gSystem->BaseName(tmpFileName);
                  else tmpBaseName = 0;
   } while (tmpBaseName && (strstr(tmpBaseName, "Style_") != tmpBaseName)
                        && (strstr(tmpBaseName, " ") != 0));

   delete [] newName;

   if (tmpBaseName != 0) {
      // Export the style.
      fCurSelStyle->SaveSource(gSystem->UnixPathName(tmpFileName));
      fCurMacro->fFilename = StrDup(tmpBaseName);
      fStyleChanged = kFALSE;
   }

   UpdateStatusBar();
}

//______________________________________________________________________________
void TStyleManager::DoExit()
{
   // Close the style manager. Called via the menu bar.

//   SendCloseMessage();   // Doesn't delete the StyleManager. Hides it.
   delete this;
}

//______________________________________________________________________________
void TStyleManager::DoHelp(Int_t i)
{
   // Open an help window. Called via the menu bar or the tool bar.

   TRootHelpDialog *hd;
   switch (i) {
      case 0:
         hd = new TRootHelpDialog(this, "Help on General Tab", 600, 400);
         hd->SetText(gHelpSMGeneral);
         break;
      case 1:
         hd = new TRootHelpDialog(this, "Help on Canvas Tab", 600, 400);
         hd->SetText(gHelpSMCanvas);
         break;
      case 2:
         hd = new TRootHelpDialog(this, "Help on Pad Tab", 600, 400);
         hd->SetText(gHelpSMPad);
         break;
      case 3:
         hd = new TRootHelpDialog(this, "Help on Histograms Tab", 600, 400);
         hd->SetText(gHelpSMHistos);
         break;
      case 4:
         hd = new TRootHelpDialog(this, "Help on Axis Tab", 600, 400);
         hd->SetText(gHelpSMAxis);
         break;
      case 5:
         hd = new TRootHelpDialog(this, "Help on Title Tab", 600, 400);
         hd->SetText(gHelpSMTitle);
         break;
      case 6:
         hd = new TRootHelpDialog(this, "Help on Stats Tab", 600, 400);
         hd->SetText(gHelpSMStats);
         break;
      case 7:
         hd = new TRootHelpDialog(this, "Help on PS / PDF Tab", 600, 400);
         hd->SetText(gHelpSMPSPDF);
         break;
      default:
         hd = new TRootHelpDialog(this, "Help on Top Level", 600, 400);
         hd->SetText(gHelpSMTopLevel);
   }
   hd->Popup();
}

//______________________________________________________________________________
void TStyleManager::DoImportCanvas()
{
   //  Create a new style (a copy of gStyle) and import the properties of the
   // current canvas inside.

   if ((!fCurPad) || (!fCurObj)) return;

   new TStyleDialog(this, gStyle, 3, fCurPad);

   // Create the list of available style, and select:
   //    - the new style, if it has been created
   //    - the previous selected style, if no style has been created (Cancel)
   if (fLastChoice) {
      BuildList();

      // Auto export of the canvas' style.
      CreateMacro();
      char* newName = new char[(10 + strlen(fCurSelStyle->GetName())) * sizeof(char)];
      sprintf(newName, "Style_%s.C", fCurSelStyle->GetName());
      fCurMacro->fFilename = StrDup(newName);
      delete [] newName;
      fCurSelStyle->SaveSource(gSystem->UnixPathName(fCurMacro->fFilename));
   } else {
      BuildList(fCurSelStyle);
   }
}

//______________________________________________________________________________
void TStyleManager::CreateMacro()
{
   // Create a TGFileInfo concerning a macro, if it doesn't exist already.

   if (fCurMacro) delete fCurMacro;
   fCurMacro = new TGFileInfo();
   TString dir(".");
   fCurMacro->fFileTypes = kFiletypes;
   fCurMacro->fIniDir    = StrDup(dir);
   fCurMacro->fFilename  = 0;
}

//______________________________________________________________________________
void TStyleManager::AddToolbar(TGCompositeFrame *p)
{
   // Add the tool bar to the frame 'p'.

   TGLayoutHints *layout1 = new TGLayoutHints(kLHintsNormal, 3);
   fTrashListLayout->Add(layout1);
   TGLayoutHints *layout2 = new TGLayoutHints(kLHintsNormal, 6);
   fTrashListLayout->Add(layout2);

   fToolBar = new TGToolBar(p);
   fToolBarNewPic = gClient->GetPicture("sm_new.xpm");
   fToolBarNew = new TGPictureButton(fToolBar, fToolBarNewPic, kToolbarNew);
   fToolBarNew->Associate(this);
   fToolBar->AddFrame(fToolBarNew);

   fToolBarImportCanvasPic = gClient->GetPicture("sm_import_canvas.xpm");
   fToolBarImportCanvas = new TGPictureButton(fToolBar, fToolBarImportCanvasPic, kToolbarImportCanvas);
   fToolBarImportCanvas->Associate(this);
   fToolBar->AddFrame(fToolBarImportCanvas, layout2);

   fToolBarImportMacroPic = gClient->GetPicture("sm_import_macro.xpm");
   fToolBarImportMacro = new TGPictureButton(fToolBar, fToolBarImportMacroPic, kToolbarImportMacro);
   fToolBarImportMacro->Associate(this);
   fToolBar->AddFrame(fToolBarImportMacro);

   fToolBarExportPic = gClient->GetPicture("sm_export.xpm");
   fToolBarExport = new TGPictureButton(fToolBar, fToolBarExportPic, kToolbarExport);
   fToolBarExport->Associate(this);
   fToolBar->AddFrame(fToolBarExport, layout1);

   fToolBarDeletePic = gClient->GetPicture("sm_delete.xpm");
   fToolBarDelete = new TGPictureButton(fToolBar, fToolBarDeletePic, kToolbarDelete);
   fToolBarDelete->Associate(this);
   fToolBar->AddFrame(fToolBarDelete, layout2);

   fToolBarHelpPic = gClient->GetPicture("sm_help.xpm");
   fToolBarHelp = new TGPictureButton(fToolBar, fToolBarHelpPic, kToolbarHelp);
   fToolBarHelp->Associate(this);
   fToolBar->AddFrame(fToolBarHelp, layout2);

   p->AddFrame(fToolBar, fLayoutExpandX);
   fHorizontal3DLine = new TGHorizontal3DLine(p);
   p->AddFrame(fHorizontal3DLine, fLayoutExpandX);

   fToolBarNew->SetToolTipText("Create a new style");
   fToolBarDelete->SetToolTipText("Delete the selected style");
   fToolBarImportCanvas->SetToolTipText("Import a style from selected canvas");
   fToolBarImportMacro->SetToolTipText("Import a style from a macro");
   fToolBarExport->SetToolTipText("Export the selected style into a macro");
   fToolBarHelp->SetToolTipText("Help about the top level interface");
}

//______________________________________________________________________________
void TStyleManager::AddTopLevelInterface(TGCompositeFrame *cf)
{
   //  Add the top level interface to the frame 'cf'. This part of the
   // interface will provide all enable functionalities, excluding the
   // edition of styles.

   TGLayoutHints *layout1 = new TGLayoutHints(kLHintsExpandX, 0, 0, 2, 2);
   fTrashListLayout->Add(layout1);
   TGLayoutHints *layout2 = new TGLayoutHints(kLHintsExpandX | kLHintsExpandY, 10, 10, 10, 15);
   fTrashListLayout->Add(layout2);
   TGLayoutHints *layout3 = new TGLayoutHints(kLHintsNormal, 0, 0, 18);
   fTrashListLayout->Add(layout3);
   TGLayoutHints *layout4 = new TGLayoutHints(kLHintsNormal, 10, 10);
   fTrashListLayout->Add(layout4);
   TGLayoutHints *layout5 = new TGLayoutHints(kLHintsExpandX, 125);
   fTrashListLayout->Add(layout5);
   TGLayoutHints *layout6 = new TGLayoutHints(kLHintsNormal, 0, 10, 3);
   fTrashListLayout->Add(layout6);
   TGLayoutHints *layout7 = new TGLayoutHints(kLHintsNormal, 0, 16, 3);
   fTrashListLayout->Add(layout7);
   TGLayoutHints *layout8 = new TGLayoutHints(kLHintsExpandX, 0, 0, 10);
   fTrashListLayout->Add(layout8);
   TGLayoutHints *layout9 = new TGLayoutHints(kLHintsNormal, -15, 0, -5, -10);
   fTrashListLayout->Add(layout9);
   TGLayoutHints *layout10 = new TGLayoutHints(kLHintsNormal, 15, 0, -5, -10);
   fTrashListLayout->Add(layout10);
   TGLayoutHints *layout11 = new TGLayoutHints(kLHintsExpandX, 0, 0, 15);
   fTrashListLayout->Add(layout11);
   TGLayoutHints *layout12 = new TGLayoutHints(kLHintsExpandX, 0, 0, 10, 5);
   fTrashListLayout->Add(layout12);
   TGLayoutHints *layout13 = new TGLayoutHints(kLHintsExpandX, 20, 0, 7);
   fTrashListLayout->Add(layout13);

   TGVerticalFrame *topLevel = new TGVerticalFrame(cf);
   fTrashListFrame->AddFirst(topLevel);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(topLevel);
   fTrashListFrame->AddFirst(h1);
   TGVerticalFrame *v11 = new TGVerticalFrame(h1);
   fTrashListFrame->AddFirst(v11);
   fListLabel = new TGLabel(v11, "Available Styles:");
   v11->AddFrame(fListLabel);
   fListComboBox = new TGComboBox(v11, kTopStylesList);
   fListComboBox->Associate(this);
   fListComboBox->Resize(200, 22);
   v11->AddFrame(fListComboBox, layout1);
   h1->AddFrame(v11, fLayoutExpandX);
   TGVerticalFrame *v12 = new TGVerticalFrame(h1);
   fTrashListFrame->AddFirst(v12);
   fMakeDefaultPic = gClient->GetPicture("arrow_right2.xpm");
   fMakeDefault = new TGPictureButton(v12, fMakeDefaultPic, kTopMakeDefault);
   fMakeDefault->Associate(this);
   fMakeDefault->Resize(40, 22);
   v12->AddFrame(fMakeDefault, layout3);
   h1->AddFrame(v12, layout4);
   TGVerticalFrame *v13 = new TGVerticalFrame(h1);
   fTrashListFrame->AddFirst(v13);
   fCurStylabel = new TGLabel(v13, "gStyle is set to:");
   v13->AddFrame(fCurStylabel);
   fCurStyle = new TGTextEntry(v13, "", kTopCurStyle);
   fCurStyle->Associate(this);
   fCurStyle->SetEnabled(kFALSE);
   v13->AddFrame(fCurStyle, layout1);
   h1->AddFrame(v13, fLayoutExpandX);
   topLevel->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(topLevel);
   fTrashListFrame->AddFirst(h2);
   TGGroupFrame *gf = new TGGroupFrame(h2, "Apply on");
   fTrashListFrame->AddFirst(gf);
   TGVerticalFrame *vf = new TGVerticalFrame(gf);
   fTrashListFrame->AddFirst(vf);
   Pixel_t red;
   gClient->GetColorByName("#FF0000", red);
   TGHorizontalFrame *selCanvas = new TGHorizontalFrame(vf);
   fTrashListFrame->AddFirst(selCanvas);
   fCurPadLabel = new TGLabel(selCanvas, "Canvas:");
   selCanvas->AddFrame(fCurPadLabel, layout6);
   fCurPadTextEntry = new TGTextEntry(selCanvas, "", kTopCurPad);
   fCurPadTextEntry->SetEnabled(kFALSE);
   fCurPadTextEntry->SetTextColor(red, kFALSE);
   selCanvas->AddFrame(fCurPadTextEntry, fLayoutExpandX);
   vf->AddFrame(selCanvas, fLayoutExpandX);
   TGHorizontalFrame *selObject = new TGHorizontalFrame(vf);
   fTrashListFrame->AddFirst(selObject);
   fCurObjLabel = new TGLabel(selObject, "Object:");
   selObject->AddFrame(fCurObjLabel, layout7);
   fCurObjTextEntry = new TGTextEntry(selObject, "", kTopCurObj);
   fCurObjTextEntry->Associate(this);
   fCurObjTextEntry->SetEnabled(kFALSE);
   fCurObjTextEntry->SetTextColor(red, kFALSE);
   selObject->AddFrame(fCurObjTextEntry, fLayoutExpandX);
   vf->AddFrame(selObject, layout8);
   TGHorizontalFrame *h4 = new TGHorizontalFrame(vf);
   fTrashListFrame->AddFirst(h4);
   fApplyOnGroup = new TGHButtonGroup(h4);
   fApplyOnAll = new TGRadioButton(fApplyOnGroup, "All canvases",    kTopApplyOnAll);
   fApplyOnAll->Associate(this);
   fApplyOnSel = new TGRadioButton(fApplyOnGroup, "Selected object", kTopApplyOnSel);
   fApplyOnSel->Associate(this);
   fAllAndNotCurrent = kFALSE;
   fApplyOnGroup->SetButton(kTopApplyOnSel);
   fApplyOnGroup->Show();
   fApplyOnGroup->SetLayoutHints(layout9, fApplyOnAll);
   fApplyOnGroup->SetLayoutHints(layout10, fApplyOnSel);
   h4->AddFrame(fApplyOnGroup);
   fApplyOnButton = new TGTextButton(h4, "&Apply", kTopApplyOnBut);
   fApplyOnButton->Associate(this);
   fApplyOnButton->Resize(100, 22);
   h4->AddFrame(fApplyOnButton, layout13);
   vf->AddFrame(h4, fLayoutExpandX);
   gf->AddFrame(vf, layout11);
   h2->AddFrame(gf, layout12);
   topLevel->AddFrame(h2, fLayoutExpandX);

   TGHorizontalFrame *h3 = new TGHorizontalFrame(topLevel);
   fTrashListFrame->AddFirst(h3);
   fPreviewButton = new TGCheckButton(h3, "&Preview", kTopPreview);
   fPreviewButton->Associate(this);
   h3->AddFrame(fPreviewButton, layout6);
   fPreviewRealTime = new TGCheckButton(h3, "Run &Time Preview", kTopPreviewRealTime);
   fPreviewRealTime->Associate(this);
   fPreviewRealTime->SetEnabled(kFALSE);
   h3->AddFrame(fPreviewRealTime, layout6);
   fMoreLess = new TGTextButton(h3, "&Close <<", kTopMoreLess);
   fMoreLess->Associate(this);
   h3->AddFrame(fMoreLess, layout5);
   topLevel->AddFrame(h3, fLayoutExpandX);

   cf->AddFrame(topLevel, layout2);

   fApplyOnButton->SetToolTipText("Apply the selected style on the selected object");
   fPreviewButton->SetToolTipText("Show / Hide the preview window");
   fPreviewRealTime->SetToolTipText("Continuous / Asynchronous update of the preview");
}

//______________________________________________________________________________
void TStyleManager::BuildList(TStyle *style)
{
   //  Build the list of styles which will appear in the available styles
   // combo box. The new style to select is mentioned. If no style has
   // been specified, the last entry of the list is selected.

   // Empty the list.
   fListComboBox->RemoveEntries(1, fListComboBox->GetNumberOfEntries());

   // Build the list of all styles already created in the ROOT session.
   Int_t i = 1;
   Int_t styleID = 0;
   TStyle *tmpStyle = (TStyle *) (gROOT->GetListOfStyles()->First());
   while (tmpStyle) {
      if (tmpStyle == style) styleID = i;
      fListComboBox->AddEntry(tmpStyle->GetName(), i++);
      tmpStyle = (TStyle *) (gROOT->GetListOfStyles()->After(tmpStyle));
   }

   // Select 'style' in the list of available styles.
   if (styleID == 0) styleID = i - 1;
   fListComboBox->Select(styleID);
   DoListSelect();
   fCurStyle->SetText(gStyle->GetName());
}

//______________________________________________________________________________
void TStyleManager::UpdateStatusBar()
{
   //  Update the content of the status bar: show the name of the current
   // selected style, its title and the macro from which it has been imported.

   fStatusBar->SetText(fCurSelStyle->GetName(), 0);
   fStatusBar->SetText(fCurSelStyle->GetTitle(), 2);

   if ((!strcmp(fCurSelStyle->GetName(), "Default"))
    || (!strcmp(fCurSelStyle->GetName(), "Plain"  ))
    || (!strcmp(fCurSelStyle->GetName(), "Bold"   ))
    || (!strcmp(fCurSelStyle->GetName(), "Video"  ))
    || (!strcmp(fCurSelStyle->GetName(), "Pub"    ))) {
      fStatusBar->SetText("ROOT style", 1);
   } else if (fStyleChanged) {
      fStatusBar->SetText("User Style _ Not Saved", 1);
   } else {
      fStatusBar->SetText("User Style", 1);
   }
}

//______________________________________________________________________________
void TStyleManager::UpdateEditor(Int_t tabNum)
{
   //  Update the values of every widget entry in the editor. The new values
   // are loaded from the current selected style.

   Double_t delta;
   Int_t year;
   Int_t month;
   Int_t day;
   Int_t oneYearInSecs;
   Int_t oneMonthInSecs;
   Int_t tmp;
   Int_t tmp2;
   switch (tabNum) {
      case 0: // GENERAL
         fFillColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetFillColor()));
         fFillStyle->SetPattern(fCurSelStyle->GetFillStyle());
         fHatchesLineWidth->Select(fCurSelStyle->GetHatchesLineWidth());
         fHatchesSpacing->SetNumber(fCurSelStyle->GetHatchesSpacing());
         fMarkerColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetMarkerColor()));
         fMarkerStyle->SetMarkerStyle(fCurSelStyle->GetMarkerStyle());
         fMarkerSize->Select((Int_t) fCurSelStyle->GetMarkerSize() * 5);
         fScreenFactor->SetNumber(fCurSelStyle->GetScreenFactor());
         fLineColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetLineColor()));
         fLineWidth->Select(fCurSelStyle->GetLineWidth());
         fLineStyle->Select(fCurSelStyle->GetLineStyle());
         // Nothing to do with fLineStyleEdit.
         fTextColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetTextColor()));
         if (fCurSelStyle->GetTextFont()%10 > 2) {
            fTextSizeInPixels->SetState(kButtonDown, kFALSE);
            ModTextSizeInPixels(kTRUE);
         } else {
            fTextSizeInPixels->SetState(kButtonUp, kFALSE);
            ModTextSizeInPixels(kFALSE);
         }
         fTextFont->Select(fCurSelStyle->GetTextFont()/10);
         fTextAlign->Select(fCurSelStyle->GetTextAlign());
         fTextAngle->SetNumber(fCurSelStyle->GetTextAngle());
         break;
      case 1: // CANVAS
         fCanvasColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetCanvasColor()));
         fCanvasDefX->SetIntNumber(fCurSelStyle->GetCanvasDefX());
         fCanvasDefY->SetIntNumber(fCurSelStyle->GetCanvasDefY());
         fCanvasDefW->SetIntNumber(fCurSelStyle->GetCanvasDefW());
         fCanvasDefH->SetIntNumber(fCurSelStyle->GetCanvasDefH());
         fCanvasBorderMode->SetButton(fCurSelStyle->GetCanvasBorderMode() + 1 + kCanvasBorderModeSunken);
         fCanvasBorderSize->Select(fCurSelStyle->GetCanvasBorderSize());
         fAttDateTextColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetAttDate()->GetTextColor()));
         if (fCurSelStyle->GetAttDate()->GetTextFont()%10 > 2) {
            fAttDateTextSizeInPixels->SetState(kButtonDown, kFALSE);
            ModAttDateTextSizeInPixels(kTRUE);
         } else {
            fAttDateTextSizeInPixels->SetState(kButtonUp, kFALSE);
            ModAttDateTextSizeInPixels(kFALSE);
         }
         fOptDateFormat->Select(fCurSelStyle->GetOptDate()/10 + 1);
         fAttDateTextFont->Select(fCurSelStyle->GetAttDate()->GetTextFont()/10);
         fAttDateTextAlign->Select(fCurSelStyle->GetAttDate()->GetTextAlign());
         fAttDateTextAngle->SetNumber(fCurSelStyle->GetAttDate()->GetTextAngle());
         fDateX->SetIntNumber((Int_t) (fCurSelStyle->GetDateX()*100 + 0.5));
         fDateY->SetIntNumber((Int_t) (fCurSelStyle->GetDateY()*100 + 0.5));

         if (fCurSelStyle->GetOptDate()) {
            fOptDateBool->SetState(kButtonDown, kFALSE);
            fAttDateTextColor->Enable();
            fAttDateTextSize->SetState(kTRUE);
            if (!fAttDateTextSizeInPixels->IsDown())
               fAttDateTextSizeInPixels->SetEnabled(kTRUE);
// TODO Just delete when ComboBox can be grayed
            //fOptDateFormat->SetState(kTRUE);
            //ModAttDateTextFont->SetState(kTRUE);
            //ModAttDateTextAlign->SetState(kTRUE);
            fAttDateTextAngle->SetState(kTRUE);
            fDateX->SetState(kTRUE);
            fDateY->SetState(kTRUE);
         } else {
            fOptDateBool->SetState(kButtonUp, kFALSE);
            fAttDateTextColor->Disable();
            fAttDateTextSize->SetState(kFALSE);
            fAttDateTextSizeInPixels->SetEnabled(kFALSE);
// TODO Just delete when ComboBox can be grayed
            //fOptDateFormat->SetState(kFALSE);
            //ModAttDateTextFont->SetState(kFALSE);
            //ModAttDateTextAlign->SetState(kFALSE);
            fAttDateTextAngle->SetState(kFALSE);
            fDateX->SetState(kFALSE);
            fDateY->SetState(kFALSE);
         }
         break;
      case 2: // PAD
         fPadTopMargin->SetIntNumber((Int_t) (fCurSelStyle->GetPadTopMargin() * 100 + 0.5));
         fPadBottomMargin->SetIntNumber((Int_t) (fCurSelStyle->GetPadBottomMargin() * 100 + 0.5));
         fPadLeftMargin->SetIntNumber((Int_t) (fCurSelStyle->GetPadLeftMargin() * 100 + 0.5));
         fPadRightMargin->SetIntNumber((Int_t) (fCurSelStyle->GetPadRightMargin() * 100 + 0.5));
         fPadBorderMode->SetButton(fCurSelStyle->GetPadBorderMode() + 1 + kPadBorderModeSunken);
         fPadBorderSize->Select(fCurSelStyle->GetPadBorderSize());
         fPadColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetPadColor()));
         if (fCurSelStyle->GetPadTickX()) 
            fPadTickX->SetState(kButtonDown, kFALSE);
         else 
            fPadTickX->SetState(kButtonUp, kFALSE);
         if (fCurSelStyle->GetPadTickY()) 
            fPadTickY->SetState(kButtonDown, kFALSE);
         else 
            fPadTickY->SetState(kButtonUp, kFALSE);
         if (fCurSelStyle->GetPadGridX()) 
            fPadGridX->SetState(kButtonDown, kFALSE);
         else 
            fPadGridX->SetState(kButtonUp, kFALSE);
         if (fCurSelStyle->GetPadGridY()) 
            fPadGridY->SetState(kButtonDown, kFALSE);
         else 
            fPadGridY->SetState(kButtonUp, kFALSE);
         fGridColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetGridColor()));
         fGridWidth->Select(fCurSelStyle->GetGridWidth());
         fGridStyle->Select(fCurSelStyle->GetGridStyle());
         break;
      case 3: // HISTOS
         fHistFillColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetHistFillColor()));
         fHistFillStyle->SetPattern(fCurSelStyle->GetHistFillStyle());
         fHistLineColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetHistLineColor()));
         fHistLineWidth->Select(fCurSelStyle->GetHistLineWidth());
         fHistLineStyle->Select(fCurSelStyle->GetHistLineStyle());
         fBarWidth->SetNumber(fCurSelStyle->GetBarWidth());
         fBarOffset->SetNumber(fCurSelStyle->GetBarOffset());
         if (fCurSelStyle->GetHistMinimumZero()) 
            fHistMinimumZero->SetState(kButtonDown, kFALSE);
         else 
            fHistMinimumZero->SetState(kButtonUp, kFALSE);
         fPaintTextFormat->SetText(fCurSelStyle->GetPaintTextFormat());
         fNumberContours->SetIntNumber(fCurSelStyle->GetNumberContours());
         fLegoInnerR->SetIntNumber((Int_t) (fCurSelStyle->GetLegoInnerR() * 100 + 0.5));
         fFrameFillColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetFrameFillColor()));
         fFrameFillStyle->SetPattern(fCurSelStyle->GetFrameFillStyle());
         fFrameLineColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetFrameLineColor()));
         fFrameLineWidth->Select(fCurSelStyle->GetFrameLineWidth());
         fFrameLineStyle->Select(fCurSelStyle->GetFrameLineStyle());
         // Nothing to do with fPaletteEdit;
         fFrameBorderMode->SetButton(fCurSelStyle->GetFrameBorderMode() + 1 + kFrameBorderModeSunken);
         fFrameBorderSize->Select(fCurSelStyle->GetFrameBorderSize());
         fFuncColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetFuncColor()));
         fFuncWidth->Select(fCurSelStyle->GetFuncWidth());
         fFuncStyle->Select(fCurSelStyle->GetFuncStyle());
         if (fCurSelStyle->GetDrawBorder()) 
            fDrawBorder->SetState(kButtonDown, kFALSE);
         else 
            fDrawBorder->SetState(kButtonUp, kFALSE);
         fEndErrorSize->SetNumber(fCurSelStyle->GetEndErrorSize());
         fErrorX->SetIntNumber((Int_t) (fCurSelStyle->GetErrorX() * 100 + 0.5));
         break;
      case 4: // AXIS
         delta = fCurSelStyle->GetTimeOffset() - 788918400;
         year = 1995;
         month = 1;
         day = 1;
         while (delta < 0) {
            year--;
            if (year % 4) oneYearInSecs = 3600 * 24 * 365;
            else oneYearInSecs = 3600 * 24 * 366;
            delta += oneYearInSecs;
         }
         oneYearInSecs = 3600 * 24 * 365;             // because 365 days in 1995.
         while (delta >= oneYearInSecs) {
            if (year % 4) oneYearInSecs = 3600 * 24 * 365;
            else oneYearInSecs = 3600 * 24 * 366;
            delta -= oneYearInSecs;
            year++;
         }
         oneMonthInSecs = 3600 * 24 * 31;       // because 31 days in January.
         while (delta >= oneMonthInSecs) {
            month++;
            delta -= oneMonthInSecs;
            switch (month) {
               case 2:
                  if (year % 4) oneMonthInSecs = 3600 * 24 * 28;
                  else oneMonthInSecs = 3600 * 24 * 29;
                  break;
               case 3: case 5: case 7: case 8: case 10: case 12:
                  oneMonthInSecs = 3600 * 24 * 31;
                  break;
               default:
                  oneMonthInSecs = 3600 * 24 * 30;
            }
         }
         day = (Int_t) delta / (3600 * 24) + 1;
         delta = ((Int_t) delta) % (3600 * 24);
         fTimeOffsetDate->SetNumber(year*10000 + month*100 + day);
         fTimeOffsetTime->SetNumber(delta);

         if (fCurSelStyle->GetStripDecimals()) 
            fStripDecimals->SetState(kButtonUp, kFALSE);
         else 
            fStripDecimals->SetState(kButtonDown, kFALSE);
         fXTitleSize->SetNumber(fCurSelStyle->GetTitleSize("X"));
         if (fCurSelStyle->GetTitleFont("X")%10 > 2) {
            fXTitleSizeInPixels->SetState(kButtonDown, kFALSE);
            ModXTitleSizeInPixels(kTRUE);
         } else {
            fXTitleSizeInPixels->SetState(kButtonUp, kFALSE);
            ModXTitleSizeInPixels(kFALSE);
         }
         fXTitleColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetTitleColor("X")));
         fXTitleOffset->SetNumber(fCurSelStyle->GetTitleOffset("X"));
         fXTitleFont->Select(fCurSelStyle->GetTitleFont("X")/10);
         fXLabelSize->SetNumber(fCurSelStyle->GetLabelSize("X"));
         if (fCurSelStyle->GetLabelFont("X")%10 > 2) {
            fXLabelSizeInPixels->SetState(kButtonDown, kFALSE);
            ModXLabelSizeInPixels(kTRUE);
         } else {
            fXLabelSizeInPixels->SetState(kButtonUp, kFALSE);
            ModXLabelSizeInPixels(kFALSE);
         }
         fXLabelColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetLabelColor("X")));
         fXLabelOffset->SetNumber(fCurSelStyle->GetLabelOffset("X"));
         fXLabelFont->Select(fCurSelStyle->GetLabelFont("X")/10);
         fXAxisColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetAxisColor("X")));
         fXTickLength->SetNumber(fCurSelStyle->GetTickLength("X"));
         if (fCurSelStyle->GetOptLogx()) 
            fOptLogx->SetState(kButtonDown, kFALSE);
         else 
            fOptLogx->SetState(kButtonUp, kFALSE);
         fXNdivMain->SetIntNumber(TMath::Abs(fCurSelStyle->GetNdivisions("X")) % 100);
         fXNdivSub->SetIntNumber((TMath::Abs(fCurSelStyle->GetNdivisions("X")) % 10000)/100);
         fXNdivSubSub->SetIntNumber((TMath::Abs(fCurSelStyle->GetNdivisions("X")) % 1000000)/10000);
         if (fCurSelStyle->GetNdivisions("X") > 0) 
            fXNdivisionsOptimize->SetState(kButtonDown, kFALSE);
         else 
            fXNdivisionsOptimize->SetState(kButtonUp, kFALSE);
         fYTitleSize->SetNumber(fCurSelStyle->GetTitleSize("Y"));
         if (fCurSelStyle->GetTitleFont("Y")%10 > 2) {
            fYTitleSizeInPixels->SetState(kButtonDown, kFALSE);
            ModYTitleSizeInPixels(kTRUE);
         } else {
            fYTitleSizeInPixels->SetState(kButtonUp, kFALSE);
            ModYTitleSizeInPixels(kFALSE);
         }
         fYTitleColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetTitleColor("Y")));
         fYTitleOffset->SetNumber(fCurSelStyle->GetTitleOffset("Y"));
         fYTitleFont->Select(fCurSelStyle->GetTitleFont("Y")/10);
         fYLabelSize->SetNumber(fCurSelStyle->GetLabelSize("Y"));
         if (fCurSelStyle->GetLabelFont("Y")%10 > 2) {
            fYLabelSizeInPixels->SetState(kButtonDown, kFALSE);
            ModYLabelSizeInPixels(kTRUE);
         } else {
            fYLabelSizeInPixels->SetState(kButtonUp, kFALSE);
            ModYLabelSizeInPixels(kFALSE);
         }
         fYLabelColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetLabelColor("Y")));
         fYLabelOffset->SetNumber(fCurSelStyle->GetLabelOffset("Y"));
         fYLabelFont->Select(fCurSelStyle->GetLabelFont("Y")/10);
         fYAxisColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetAxisColor("Y")));
         fYTickLength->SetNumber(fCurSelStyle->GetTickLength("Y"));
         if (fCurSelStyle->GetOptLogy()) 
            fOptLogy->SetState(kButtonDown, kFALSE);
         else  
            fOptLogy->SetState(kButtonUp, kFALSE);
         fYNdivMain->SetIntNumber(TMath::Abs(fCurSelStyle->GetNdivisions("Y")) % 100);
         fYNdivSub->SetIntNumber((TMath::Abs(fCurSelStyle->GetNdivisions("Y")) % 10000)/100);
         fYNdivSubSub->SetIntNumber((TMath::Abs(fCurSelStyle->GetNdivisions("Y")) % 1000000)/10000);
         if (fCurSelStyle->GetNdivisions("Y") > 0) 
            fYNdivisionsOptimize->SetState(kButtonDown, kFALSE);
         else 
            fYNdivisionsOptimize->SetState(kButtonUp, kFALSE);
         fZTitleSize->SetNumber(fCurSelStyle->GetTitleSize("Z"));
         if (fCurSelStyle->GetTitleFont("Z")%10 > 2) {
            fZTitleSizeInPixels->SetState(kButtonDown, kFALSE);
            ModZTitleSizeInPixels(kTRUE);
         } else {
            fZTitleSizeInPixels->SetState(kButtonUp, kFALSE);
            ModZTitleSizeInPixels(kFALSE);
         }
         fZTitleColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetTitleColor("Z")));
         fZTitleOffset->SetNumber(fCurSelStyle->GetTitleOffset("Z"));
         fZTitleFont->Select(fCurSelStyle->GetTitleFont("Z")/10);
         fZLabelSize->SetNumber(fCurSelStyle->GetLabelSize("Z"));
         if (fCurSelStyle->GetLabelFont("Z")%10 > 2) {
            fZLabelSizeInPixels->SetState(kButtonDown, kFALSE);
            ModZLabelSizeInPixels(kTRUE);
         } else {
            fZLabelSizeInPixels->SetState(kButtonUp, kFALSE);
            ModZLabelSizeInPixels(kFALSE);
         }
         fZLabelColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetLabelColor("Z")));
         fZLabelOffset->SetNumber(fCurSelStyle->GetLabelOffset("Z"));
         fZLabelFont->Select(fCurSelStyle->GetLabelFont("Z")/10);
         fZAxisColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetAxisColor("Z")));
         fZTickLength->SetNumber(fCurSelStyle->GetTickLength("Z"));
         
         if (fCurSelStyle->GetOptLogz()) 
            fOptLogz->SetState(kButtonDown, kFALSE);
         else 
            fOptLogz->SetState(kButtonUp, kFALSE);
         
         fZNdivMain->SetIntNumber(TMath::Abs(fCurSelStyle->GetNdivisions("Z")) % 100);
         fZNdivSub->SetIntNumber((TMath::Abs(fCurSelStyle->GetNdivisions("Z")) % 10000)/100);
         fZNdivSubSub->SetIntNumber((TMath::Abs(fCurSelStyle->GetNdivisions("Z")) % 1000000)/10000);
         if (fCurSelStyle->GetNdivisions("Z") > 0) 
            fZNdivisionsOptimize->SetState(kButtonDown, kFALSE);
         else 
            fZNdivisionsOptimize->SetState(kButtonUp, kFALSE);
         break;
      case 5: // TITLES
         fTitleColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetTitleFillColor()));
         fTitleStyle->SetPattern(fCurSelStyle->GetTitleStyle());
         fTitleTextColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetTitleTextColor()));
         fTitleFontSize->SetNumber(fCurSelStyle->GetTitleFontSize());
         if (fCurSelStyle->GetTitleFont()%10 > 2) {
            fTitleFontSizeInPixels->SetState(kButtonDown, kFALSE);
            ModTitleFontSizeInPixels(kTRUE);
         } else {
            fTitleFontSizeInPixels->SetState(kButtonUp, kFALSE);
            ModTitleFontSizeInPixels(kFALSE);
         }
         fTitleFont->Select(fCurSelStyle->GetTitleFont()/10);
         fTitleAlign->Select(fCurSelStyle->GetTitleAlign());
         fTitleBorderSize->Select(fCurSelStyle->GetTitleBorderSize());
         fLegendBorderSize->Select(fCurSelStyle->GetLegendBorderSize());
         fTitleX->SetIntNumber((Int_t) (fCurSelStyle->GetTitleX() * 100 + 0.5));
         fTitleY->SetIntNumber((Int_t) (fCurSelStyle->GetTitleY() * 100 + 0.5));
         fTitleW->SetIntNumber((Int_t) (fCurSelStyle->GetTitleW() * 100 + 0.5));
         fTitleH->SetIntNumber((Int_t) (fCurSelStyle->GetTitleH() * 100 + 0.5));

         if (fCurSelStyle->GetOptTitle()) {
            fOptTitle->SetState(kButtonDown, kFALSE);
            fTitleColor->Enable();
            fTitleStyle->Enable();
            fTitleTextColor->Enable();
            fTitleFontSize->SetState(kTRUE);
            if (!fTitleFontSizeInPixels->IsDown())
               fTitleFontSizeInPixels->SetEnabled(kTRUE);
// TODO Just delete when ComboBox can be grayed
            //fTitleFont->SetState(kTRUE);
            //fTitleAlign->SetState(kTRUE);
            //fTitleBorderSize->SetState(kTRUE);
            //fLegendBorderSize->SetState(kTRUE);
            fTitleX->SetState(kTRUE);
            fTitleY->SetState(kTRUE);
            fTitleW->SetState(kTRUE);
            fTitleH->SetState(kTRUE);
         } else {
            fOptTitle->SetState(kButtonUp, kFALSE);
            fTitleColor->Disable();
            fTitleStyle->Disable();
            fTitleTextColor->Disable();
            fTitleFontSize->SetState(kFALSE);
            fTitleFontSizeInPixels->SetEnabled(kFALSE);
// TODO Just delete when ComboBox can be grayed
            //fTitleFont->SetState(kFALSE);
            //fTitleAlign->SetState(kFALSE);
            //fTitleBorderSize->SetState(kFALSE);
            //fLegendBorderSize->SetState(kFALSE);
            fTitleX->SetState(kFALSE);
            fTitleY->SetState(kFALSE);
            fTitleW->SetState(kFALSE);
            fTitleH->SetState(kFALSE);
         }
         break;
      case 6: // STATS
         fStatColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetStatColor()));
         fStatStyle->SetPattern(fCurSelStyle->GetStatStyle());
         fStatTextColor->SetColor(TColor::Number2Pixel(fCurSelStyle->GetStatTextColor()));
         fStatFont->Select(fCurSelStyle->GetStatFont()/10);
         if (fCurSelStyle->GetStatFont()%10 > 2) {
            fStatFontSizeInPixels->SetState(kButtonDown, kFALSE);
            ModStatFontSizeInPixels(kTRUE);
         } else {
            fStatFontSizeInPixels->SetState(kButtonUp, kFALSE);
            ModStatFontSizeInPixels(kFALSE);
         }
         fStatFontSize->SetNumber(fCurSelStyle->GetStatFontSize());
         
         fStatX->SetNumber(fCurSelStyle->GetStatX());
         fStatY->SetNumber(fCurSelStyle->GetStatY());
         fStatW->SetNumber(fCurSelStyle->GetStatW());
         fStatH->SetNumber(fCurSelStyle->GetStatH());
         fStatBorderSize->Select(fCurSelStyle->GetStatBorderSize());
         tmp = fCurSelStyle->GetOptStat();
         
         if (tmp % 10) fOptStatName->SetState(kButtonDown, kFALSE);
         else fOptStatName->SetState(kButtonUp, kFALSE);
         
         if ((tmp/10) % 10) fOptStatEntries->SetState(kButtonDown, kFALSE);
         else fOptStatEntries->SetState(kButtonUp, kFALSE);
         
         if ((tmp/100) % 10) fOptStatMean->SetState(kButtonDown, kFALSE);
         else fOptStatMean->SetState(kButtonUp, kFALSE);
         
         if ((tmp/1000) % 10) fOptStatRMS->SetState(kButtonDown, kFALSE);
         else fOptStatRMS->SetState(kButtonUp, kFALSE);
         
         if ((tmp/10000) % 10) fOptStatUnderflow->SetState(kButtonDown, kFALSE);
         else fOptStatUnderflow->SetState(kButtonUp, kFALSE);
         
         if ((tmp/100000) % 10) fOptStatOverflow->SetState(kButtonDown, kFALSE);
         else fOptStatOverflow->SetState(kButtonUp, kFALSE);
         
         if ((tmp/1000000) % 10) fOptStatIntegral->SetState(kButtonDown, kFALSE);
         else fOptStatIntegral->SetState(kButtonUp, kFALSE);
         
         if ((tmp/10000000) % 10) fOptStatSkewness->SetState(kButtonDown, kFALSE);
         else fOptStatSkewness->SetState(kButtonUp, kFALSE);
         
         if ((tmp/100000000) % 10) fOptStatKurtosis->SetState(kButtonDown, kFALSE);
         else fOptStatKurtosis->SetState(kButtonUp, kFALSE);
         
         if ((((tmp/100) % 10) == 2) || (((tmp/1000) % 10) == 2) || 
             (((tmp/10000000) % 10) == 2) || (((tmp/100000000) % 10) == 2))
            fOptStatErrors->SetState(kButtonDown, kFALSE);   
         else  fOptStatErrors->SetState(kButtonUp, kFALSE);
         
         fStatFormat->SetText(fCurSelStyle->GetStatFormat());
         tmp2 = fCurSelStyle->GetOptFit();
         
         if (tmp2 % 10) fOptFitValues->SetState(kButtonDown, kFALSE);
         else fOptFitValues->SetState(kButtonUp, kFALSE);
         
         if ((tmp2/10) % 10) {
            fOptFitErrors->SetState(kButtonDown, kFALSE);
            fOptFitValues->SetState(kButtonDown, kFALSE);
         } else
            fOptFitErrors->SetState(kButtonUp, kFALSE);
            
         if ((tmp2/100) % 10) fOptFitChi->SetState(kButtonDown, kFALSE);
         else fOptFitChi->SetState(kButtonUp, kFALSE);
         
         if ((tmp2/1000) % 10) fOptFitProbability->SetState(kButtonDown, kFALSE);
         else fOptFitProbability->SetState(kButtonUp, kFALSE);
         
         fFitFormat->SetText(fCurSelStyle->GetFitFormat());
         break;
         
      case 7: // PS / PDF
         fHeaderPS->SetText(fCurSelStyle->GetHeaderPS());
         fTitlePS->SetText(fCurSelStyle->GetTitlePS());
         fColorModelPS->SetButton(fCurSelStyle->GetColorModelPS() + kPSPDFColorModelPSRGB);
         fLineScalePS->SetNumber(fCurSelStyle->GetLineScalePS());
         Float_t papSizeX;
         Float_t papSizeY;
         fCurSelStyle->GetPaperSize(papSizeX, papSizeY);
         if ((papSizeX == 20) && (papSizeY == 26)) {
            fPaperSizePredef->Select(3);
            fPaperSizeEnCm = kTRUE;
            fPaperSizeX->SetNumber(papSizeX);
            fPaperSizeY->SetNumber(papSizeY);
         } else if ((papSizeX == 20) && (papSizeY == 24)) {
            fPaperSizePredef->Select(4);
            fPaperSizeEnCm = kFALSE;
            fPaperSizeX->SetNumber(papSizeX * 0.394);
            fPaperSizeY->SetNumber(papSizeY * 0.394);
         } else {
            fPaperSizePredef->Select(1);
            fPaperSizeEnCm = kTRUE;
            fPaperSizeX->SetNumber(papSizeX);
            fPaperSizeY->SetNumber(papSizeY);
         }
         break;
   }
}

//______________________________________________________________________________
void TStyleManager::ConnectAll()
{
   // Connect every entry in the top level interface to the slot.

   Connect("CloseWindow()", "TStyleManager", this, "CloseWindow()");
   fMenuStyle->Connect("Activated(Int_t)", "TStyleManager", this, "DoMenu(Int_t)");
   fMenuHelp->Connect("Activated(Int_t)", "TStyleManager", this, "DoMenu(Int_t)");
   fToolBarNew->Connect("Clicked()", "TStyleManager", this, TString::Format("DoMenu(Int_t=%d)", kMenuNew));
   fToolBarDelete->Connect("Clicked()", "TStyleManager", this, TString::Format("DoMenu(Int_t=%d)", kMenuDelete));
   fToolBarImportCanvas->Connect("Clicked()", "TStyleManager", this, TString::Format("DoMenu(Int_t=%d)", kMenuImportCanvas));
   fToolBarImportMacro->Connect("Clicked()", "TStyleManager", this, TString::Format("DoMenu(Int_t=%d)", kMenuImportMacro));
   fToolBarExport->Connect("Clicked()", "TStyleManager", this, TString::Format("DoMenu(Int_t=%d)", kMenuExport));
   fToolBarHelp->Connect("Clicked()", "TStyleManager", this, TString::Format("DoMenu(Int_t=%d)", kMenuHelp));
   fListComboBox->Connect("Selected(Int_t)", "TStyleManager", this, "DoListSelect()");
   fPreviewButton->Connect("Toggled(Bool_t)", "TStyleManager", this, "DoPreview(Bool_t)");
   fPreviewRealTime->Connect("Toggled(Bool_t)", "TStyleManager", this, "DoRealTime(Bool_t)");
   fMakeDefault->Connect("Clicked()", "TStyleManager", this, "DoMakeDefault()");
   fApplyOnGroup->Connect("Clicked(Int_t)", "TStyleManager", this, "DoApplyOnSelect(Int_t)");
   fApplyOnButton->Connect("Clicked()", "TStyleManager", this, "DoApplyOn()");
   fMoreLess->Connect("Clicked()", "TStyleManager", this, "DoMoreLess()");

   fEditionHelp->Connect("Clicked()", "TStyleManager", this, TString::Format("DoMenu(Int_t=%d)", kMenuHelpEditor));
   fEditionUpdatePreview->Connect("Clicked()", "TStyleManager", this, "DoEditionUpdatePreview()");
   fEditionReset->Connect("Clicked()", "TStyleManager", this, "DoImportMacro(Int_t=kFALSE)");
   fEditionTab->Connect("Selected(Int_t)", "TStyleManager", this, "DoChangeTab(Int_t)");
   fAxisTab->Connect("Selected(Int_t)", "TStyleManager", this, "DoChangeAxisTab(Int_t)");

   // Connect signals emited when the current pad changed.
   TQObject::Connect("TCanvas", "Selected(TVirtualPad *, TObject *, Int_t)", "TStyleManager",
      this, "DoSelectCanvas(TVirtualPad *, TObject *, Int_t)");
   TQObject::Connect("TCanvas", "Closed()", "TStyleManager", this, "DoSelectNoCanvas()");
}

//______________________________________________________________________________
void TStyleManager::DisconnectAll()
{
   // Disconnect every entry in the top level interface of the slot.

   Disconnect("CloseWindow()");
   fMenuStyle->Disconnect("Activated(Int_t)");
   fMenuHelp->Disconnect("Activated(Int_t)");
   fToolBarNew->Disconnect("Clicked()");
   fToolBarDelete->Disconnect("Clicked()");
   fToolBarImportCanvas->Disconnect("Clicked()");
   fToolBarImportMacro->Disconnect("Clicked()");
   fToolBarExport->Disconnect("Clicked()");
   fToolBarHelp->Disconnect("Clicked()");
   fListComboBox->Disconnect("Selected(Int_t)");
   fPreviewButton->Disconnect("Toggled(Bool_t)");
   fMakeDefault->Disconnect("Clicked()");
   fApplyOnGroup->Disconnect("Clicked(Int_t)");
   fApplyOnButton->Disconnect("Clicked()");
   fMoreLess->Disconnect("Clicked()");

   fEditionHelp->Disconnect("Clicked()");
   fEditionUpdatePreview->Disconnect("Clicked()");
   fEditionReset->Disconnect("Clicked()");
   fEditionTab->Disconnect("Selected(Int_t)");

   TQObject::Disconnect("TCanvas", "Selected(TVirtualPad *, TObject *, Int_t)");
   TQObject::Disconnect("TCanvas", "Closed()");
}

//______________________________________________________________________________
void TStyleManager::ConnectEditor(Int_t tabNum)
{
   // Connect every widget entry of the editor to its specific slot.

   if (fSigSlotConnected) return;
   fSigSlotConnected = kTRUE;

   switch (tabNum) {
      case 0: // GENERAL
         fFillColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModFillColor()");
         fFillStyle->Connect("PatternSelected(Style_t)", "TStyleManager", this, "ModFillStyle()");
         fHatchesLineWidth->Connect("Selected(Int_t)", "TStyleManager", this, "ModHatchesLineWidth()");
         fHatchesSpacing->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModHatchesSpacing()");
         fMarkerColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModMarkerColor()");
         fMarkerStyle->Connect("MarkerSelected(Style_t)", "TStyleManager", this, "ModMarkerStyle()");
         fMarkerSize->Connect("Selected(Int_t)", "TStyleManager", this, "ModMarkerSize()");
         fScreenFactor->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModScreenFactor()");
         fLineColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModLineColor()");
         fLineWidth->Connect("Selected(Int_t)", "TStyleManager", this, "ModLineWidth()");
         fLineStyle->Connect("Selected(Int_t)", "TStyleManager", this, "ModLineStyle()");
         fLineStyleEdit->Connect("Clicked()", "TStyleManager", this, "ModLineStyleEdit()");
         fTextColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModTextColor()");
         fTextSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModTextSize()");
         fTextSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModTextSizeInPixels(Bool_t)");
         fTextFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModTextFont()");
         fTextAlign->Connect("Selected(Int_t)", "TStyleManager", this, "ModTextAlign()");
         fTextAngle->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModTextAngle()");
         break;
      case 1: // CANVAS
         fCanvasColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModCanvasColor()");
         fCanvasDefX->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModCanvasDefX()");
         fCanvasDefY->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModCanvasDefY()");
         fCanvasDefW->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModCanvasDefW()");
         fCanvasDefH->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModCanvasDefH()");
         fCanvasBorderMode->Connect("Clicked(Int_t)", "TStyleManager", this, "ModCanvasBorderMode()");
         fCanvasBorderSize->Connect("Selected(Int_t)", "TStyleManager", this, "ModCanvasBorderSize()");
         fOptDateBool->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptDateBool()");
         fAttDateTextColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModAttDateTextColor()");
         fAttDateTextSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModAttDateTextSize()");
         fAttDateTextSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModAttDateTextSizeInPixels(Bool_t)");
         fOptDateFormat->Connect("Selected(Int_t)", "TStyleManager", this, "ModOptDateFormat()");
         fAttDateTextFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModAttDateTextFont()");
         fAttDateTextAngle->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModAttDateTextAngle()");
         fAttDateTextAlign->Connect("Selected(Int_t)", "TStyleManager", this, "ModAttDateTextAlign()");
         fDateX->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModDateX()");
         fDateY->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModDateY()");
         break;
      case 2: // PAD
         fPadTopMargin->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModPadTopMargin()");
         fPadBottomMargin->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModPadBottomMargin()");
         fPadLeftMargin->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModPadLeftMargin()");
         fPadRightMargin->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModPadRightMargin()");
         fPadBorderMode->Connect("Clicked(Int_t)", "TStyleManager", this, "ModPadBorderMode()");
         fPadBorderSize->Connect("Selected(Int_t)", "TStyleManager", this, "ModPadBorderSize()");
         fPadColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModPadColor()");
         fPadTickX->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModPadTickX()");
         fPadTickY->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModPadTickY()");
         fPadGridX->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModPadGridX()");
         fPadGridY->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModPadGridY()");
         fGridColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModGridColor()");
         fGridWidth->Connect("Selected(Int_t)", "TStyleManager", this, "ModGridWidth()");
         fGridStyle->Connect("Selected(Int_t)", "TStyleManager", this, "ModGridStyle()");
         break;
      case 3: // HISTOS
         fHistFillColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModHistFillColor()");
         fHistFillStyle->Connect("PatternSelected(Style_t)", "TStyleManager", this, "ModHistFillStyle()");
         fHistLineColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModHistLineColor()");
         fHistLineWidth->Connect("Selected(Int_t)", "TStyleManager", this, "ModHistLineWidth()");
         fHistLineStyle->Connect("Selected(Int_t)", "TStyleManager", this, "ModHistLineStyle()");
         fBarWidth->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModBarWidth()");
         fBarOffset->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModBarOffset()");
         fHistMinimumZero->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModHistMinimumZero()");
         fPaintTextFormat->Connect("TextChanged(const char *)", "TStyleManager", this, "ModPaintTextFormat()");
         fNumberContours->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModNumberContours()");
         fLegoInnerR->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModLegoInnerR()");
         fFrameFillColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModFrameFillColor()");
         fFrameFillStyle->Connect("PatternSelected(Style_t)", "TStyleManager", this, "ModFrameFillStyle()");
         fFrameLineColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModFrameLineColor()");
         fFrameLineWidth->Connect("Selected(Int_t)", "TStyleManager", this, "ModFrameLineWidth()");
         fFrameLineStyle->Connect("Selected(Int_t)", "TStyleManager", this, "ModFrameLineStyle()");
         fPaletteEdit->Connect("Clicked()", "TStyleManager", this, "ModPaletteEdit()");
         fFrameBorderMode->Connect("Clicked(Int_t)", "TStyleManager", this, "ModFrameBorderMode()");
         fFrameBorderSize->Connect("Selected(Int_t)", "TStyleManager", this, "ModFrameBorderSize()");
         fFuncColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModFuncColor()");
         fFuncWidth->Connect("Selected(Int_t)", "TStyleManager", this, "ModFuncWidth()");
         fFuncStyle->Connect("Selected(Int_t)", "TStyleManager", this, "ModFuncStyle()");
         fDrawBorder->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModDrawBorder()");
         fEndErrorSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModEndErrorSize()");
         fErrorX->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModErrorX()");
         break;
      case 4: // AXIS
         fTimeOffsetDate->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModTimeOffset()");
         fTimeOffsetTime->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModTimeOffset()");
         fStripDecimals->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModStripDecimals()");
         fApplyOnXYZ->Connect("Clicked()", "TStyleManager", this, "ModApplyOnXYZ()");
         fXTitleSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModXTitleSize()");
         fXTitleSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModXTitleSizeInPixels(Bool_t)");
         fXTitleColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModXTitleColor()");
         fXTitleOffset->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModXTitleOffset()");
         fXTitleFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModXTitleFont()");
         fXLabelSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModXLabelSize()");
         fXLabelSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModXLabelSizeInPixels(Bool_t)");
         fXLabelColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModXLabelColor()");
         fXLabelOffset->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModXLabelOffset()");
         fXLabelFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModXLabelFont()");
         fXAxisColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModXAxisColor()");
         fXTickLength->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModXTickLength()");
         fOptLogx->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptLogx()");
         fXNdivMain->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModXNdivisions()");
         fXNdivSub->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModXNdivisions()");
         fXNdivSubSub->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModXNdivisions()");
         fXNdivisionsOptimize->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModXNdivisions()");
         fYTitleSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModYTitleSize()");
         fYTitleSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModYTitleSizeInPixels(Bool_t)");
         fYTitleColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModYTitleColor()");
         fYTitleOffset->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModYTitleOffset()");
         fYTitleFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModYTitleFont()");
         fYLabelSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModYLabelSize()");
         fYLabelSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModYLabelSizeInPixels(Bool_t)");
         fYLabelColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModYLabelColor()");
         fYLabelOffset->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModYLabelOffset()");
         fYLabelFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModYLabelFont()");
         fYAxisColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModYAxisColor()");
         fYTickLength->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModYTickLength()");
         fOptLogy->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptLogy()");
         fYNdivMain->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModYNdivisions()");
         fYNdivSub->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModYNdivisions()");
         fYNdivSubSub->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModYNdivisions()");
         fYNdivisionsOptimize->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModYNdivisions()");
         fZTitleSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModZTitleSize()");
         fZTitleSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModZTitleSizeInPixels(Bool_t)");
         fZTitleColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModZTitleColor()");
         fZTitleOffset->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModZTitleOffset()");
         fZTitleFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModZTitleFont()");
         fZLabelSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModZLabelSize()");
         fZLabelSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModZLabelSizeInPixels(Bool_t)");
         fZLabelColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModZLabelColor()");
         fZLabelOffset->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModZLabelOffset()");
         fZLabelFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModZLabelFont()");
         fZAxisColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModZAxisColor()");
         fZTickLength->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModZTickLength()");
         fOptLogz->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptLogz()");
         fZNdivMain->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModZNdivisions()");
         fZNdivSub->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModZNdivisions()");
         fZNdivSubSub->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModZNdivisions()");
         fZNdivisionsOptimize->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModZNdivisions()");
         break;
      case 5: // TITLES
         fOptTitle->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptTitle()");
         fTitleColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModTitleFillColor()");
         fTitleStyle->Connect("PatternSelected(Style_t)", "TStyleManager", this, "ModTitleStyle()");
         fTitleTextColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModTitleTextColor()");
         fTitleFontSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModTitleFontSize()");
         fTitleFontSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModTitleFontSizeInPixels(Bool_t)");
         fTitleFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModTitleFont()");
         fTitleAlign->Connect("Selected(Int_t)", "TStyleManager", this, "ModTitleAlign()");
         fTitleBorderSize->Connect("Selected(Int_t)", "TStyleManager", this, "ModTitleBorderSize()");
         fTitleX->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModTitleX()");
         fTitleY->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModTitleY()");
         fTitleW->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModTitleW()");
         fTitleH->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModTitleH()");
         fLegendBorderSize->Connect("Selected(Int_t)", "TStyleManager", this, "ModLegendBorderSize()");
         break;
      case 6: // STATS
         fStatColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModStatColor(Pixel_t)");
         fStatStyle->Connect("PatternSelected(Style_t)", "TStyleManager", this, "ModStatStyle(Style_t)");
         fStatTextColor->Connect("ColorSelected(Pixel_t)", "TStyleManager", this, "ModStatTextColor(Pixel_t)");
         fStatFontSize->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModStatFontSize()");
         fStatFontSizeInPixels->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModStatFontSizeInPixels(Bool_t)");
         fStatFont->Connect("Selected(Int_t)", "TStyleManager", this, "ModStatFont()");
         fStatX->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModStatX()");
         fStatY->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModStatY()");
         fStatW->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModStatW()");
         fStatH->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModStatH()");
         fStatBorderSize->Connect("Selected(Int_t)", "TStyleManager", this, "ModStatBorderSize()");
         fOptStatName->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fOptStatEntries->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fOptStatOverflow->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fOptStatMean->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fOptStatUnderflow->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fOptStatRMS->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fOptStatSkewness->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fOptStatIntegral->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fOptStatKurtosis->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fOptStatErrors->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptStat()");
         fStatFormat->Connect("TextChanged(const char *)", "TStyleManager", this, "ModStatFormat(const char *)");
         fOptFitValues->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptFit()");
         fOptFitErrors->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptFit()");
         fOptFitProbability->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptFit()");
         fOptFitChi->Connect("Toggled(Bool_t)", "TStyleManager", this, "ModOptFit()");
         fFitFormat->Connect("TextChanged(const char *)", "TStyleManager", this, "ModFitFormat(const char *)");
         break;
      case 7: // PS / PDF
         fHeaderPS->Connect("TextChanged(const char *)", "TStyleManager", this, "ModHeaderPS()");
         fTitlePS->Connect("TextChanged(const char *)", "TStyleManager", this, "ModTitlePS()");
         fColorModelPS->Connect("Clicked(Int_t)", "TStyleManager", this, "ModColorModelPS()");
         fLineScalePS->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModLineScalePS()");
         fPaperSizePredef->Connect("Selected(Int_t)", "TStyleManager", this, "ModPaperSizePredef()");
         fPaperSizeX->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModPaperSizeXY()");
         fPaperSizeY->Connect("ValueSet(Long_t)", "TStyleManager", this, "ModPaperSizeXY()");
         break;
   }
}

//______________________________________________________________________________
void TStyleManager::DisconnectEditor(Int_t tabNum)
{
   //  Disconnect every widget entry of the editor from its slot. Must be
   // called before UpdateEditor() to avoid recursive calls.

   if (!fSigSlotConnected) return;
   fSigSlotConnected = kFALSE;

   switch (tabNum) {
      case 0: // GENERAL
         fFillColor->Disconnect("ColorSelected(Pixel_t)");
         fFillStyle->Disconnect("PatternSelected(Style_t)");
         fHatchesLineWidth->Disconnect("Selected(Int_t)");
         fHatchesSpacing->Disconnect("ValueSet(Long_t)");
         fMarkerColor->Disconnect("ColorSelected(Pixel_t)");
         fMarkerStyle->Disconnect("MarkerSelected(Style_t)");
         fMarkerSize->Disconnect("Selected(Int_t)");
         fScreenFactor->Disconnect("ValueSet(Long_t)");
         fLineColor->Disconnect("ColorSelected(Pixel_t)");
         fLineWidth->Disconnect("Selected(Int_t)");
         fLineStyle->Disconnect("Selected(Int_t)");
         fLineStyleEdit->Disconnect("Clicked()");
         fTextColor->Disconnect("ColorSelected(Pixel_t)");
         fTextSize->Disconnect("ValueSet(Long_t)");
         fTextFont->Disconnect("Selected(Int_t)");
         fTextAlign->Disconnect("Selected(Int_t)");
         fTextAngle->Disconnect("ValueSet(Long_t)");
         break;
      case 1: // CANVAS
         fCanvasColor->Disconnect("ColorSelected(Pixel_t)");
         fCanvasDefX->Disconnect("ValueSet(Long_t)");
         fCanvasDefY->Disconnect("ValueSet(Long_t)");
         fCanvasDefW->Disconnect("ValueSet(Long_t)");
         fCanvasDefH->Disconnect("ValueSet(Long_t)");
         fCanvasBorderMode->Disconnect("Clicked(Int_t)");
         fCanvasBorderSize->Disconnect("Selected(Int_t)");
         fOptDateBool->Disconnect("Toggled(Bool_t)");
         fAttDateTextColor->Disconnect("ColorSelected(Pixel_t)");
         fAttDateTextSize->Disconnect("ValueSet(Long_t)");
         fOptDateFormat->Disconnect("Selected(Int_t)");
         fAttDateTextFont->Disconnect("Selected(Int_t)");
         fAttDateTextAngle->Disconnect("ValueSet(Long_t)");
         fAttDateTextAlign->Disconnect("Selected(Int_t)");
         fDateX->Disconnect("ValueSet(Long_t)");
         fDateY->Disconnect("ValueSet(Long_t)");
         break;
      case 2: // PAD
         fPadTopMargin->Disconnect("ValueSet(Long_t)");
         fPadBottomMargin->Disconnect("ValueSet(Long_t)");
         fPadLeftMargin->Disconnect("ValueSet(Long_t)");
         fPadRightMargin->Disconnect("ValueSet(Long_t)");
         fPadBorderMode->Disconnect("Clicked(Int_t)");
         fPadBorderSize->Disconnect("Selected(Int_t)");
         fPadColor->Disconnect("ColorSelected(Pixel_t)");
         fPadTickX->Disconnect("Toggled(Bool_t)");
         fPadTickY->Disconnect("Toggled(Bool_t)");
         fPadGridX->Disconnect("Toggled(Bool_t)");
         fPadGridY->Disconnect("Toggled(Bool_t)");
         fGridColor->Disconnect("ColorSelected(Pixel_t)");
         fGridWidth->Disconnect("Selected(Int_t)");
         fGridStyle->Disconnect("Selected(Int_t)");
         break;
      case 3: // HISTOS
         fHistFillColor->Disconnect("ColorSelected(Pixel_t)");
         fHistFillStyle->Disconnect("PatternSelected(Style_t)");
         fHistLineColor->Disconnect("ColorSelected(Pixel_t)");
         fHistLineWidth->Disconnect("Selected(Int_t)");
         fHistLineStyle->Disconnect("Selected(Int_t)");
         fBarWidth->Disconnect("ValueSet(Long_t)");
         fBarOffset->Disconnect("ValueSet(Long_t)");
         fHistMinimumZero->Disconnect("Toggled(Bool_t)");
         fPaintTextFormat->Disconnect("TextChanged(const char *)");
         fNumberContours->Disconnect("ValueSet(Long_t)");
         fLegoInnerR->Disconnect("ValueSet(Long_t)");
         fFrameFillColor->Disconnect("ColorSelected(Pixel_t)");
         fFrameFillStyle->Disconnect("PatternSelected(Style_t)");
         fFrameLineColor->Disconnect("ColorSelected(Pixel_t)");
         fFrameLineWidth->Disconnect("Selected(Int_t)");
         fFrameLineStyle->Disconnect("Selected(Int_t)");
         fPaletteEdit->Disconnect("Clicked()");
         fFrameBorderMode->Disconnect("Clicked(Int_t)");
         fFrameBorderSize->Disconnect("Selected(Int_t)");
         fFuncColor->Disconnect("ColorSelected(Pixel_t)");
         fFuncWidth->Disconnect("Selected(Int_t)");
         fFuncStyle->Disconnect("Selected(Int_t)");
         fDrawBorder->Disconnect("Toggled(Bool_t)");
         fEndErrorSize->Disconnect("ValueSet(Long_t)");
         fErrorX->Disconnect("ValueSet(Long_t)");
         break;
      case 4: // AXIS
         fTimeOffsetDate->Disconnect("ValueSet(Long_t)");
         fTimeOffsetTime->Disconnect("ValueSet(Long_t)");
         fStripDecimals->Disconnect("Toggled(Bool_t)");
         fApplyOnXYZ->Disconnect("Clicked()");
         fXTitleSize->Disconnect("ValueSet(Long_t)");
         fXTitleColor->Disconnect("ColorSelected(Pixel_t)");
         fXTitleOffset->Disconnect("ValueSet(Long_t)");
         fXTitleFont->Disconnect("Selected(Int_t)");
         fXLabelSize->Disconnect("ValueSet(Long_t)");
         fXLabelColor->Disconnect("ColorSelected(Pixel_t)");
         fXLabelOffset->Disconnect("ValueSet(Long_t)");
         fXLabelFont->Disconnect("Selected(Int_t)");
         fXAxisColor->Disconnect("ColorSelected(Pixel_t)");
         fXTickLength->Disconnect("ValueSet(Long_t)");
         fOptLogx->Disconnect("Toggled(Bool_t)");
         fXNdivMain->Disconnect("ValueSet(Long_t)");
         fXNdivSub->Disconnect("ValueSet(Long_t)");
         fXNdivSubSub->Disconnect("ValueSet(Long_t)");
         fXNdivisionsOptimize->Disconnect("Toggled(Bool_t)");
         fYTitleSize->Disconnect("ValueSet(Long_t)");
         fYTitleColor->Disconnect("ColorSelected(Pixel_t)");
         fYTitleOffset->Disconnect("ValueSet(Long_t)");
         fYTitleFont->Disconnect("Selected(Int_t)");
         fYLabelSize->Disconnect("ValueSet(Long_t)");
         fYLabelColor->Disconnect("ColorSelected(Pixel_t)");
         fYLabelOffset->Disconnect("ValueSet(Long_t)");
         fYLabelFont->Disconnect("Selected(Int_t)");
         fYAxisColor->Disconnect("ColorSelected(Pixel_t)");
         fYTickLength->Disconnect("ValueSet(Long_t)");
         fOptLogy->Disconnect("Toggled(Bool_t)");
         fYNdivMain->Disconnect("ValueSet(Long_t)");
         fYNdivSub->Disconnect("ValueSet(Long_t)");
         fYNdivSubSub->Disconnect("ValueSet(Long_t)");
         fYNdivisionsOptimize->Disconnect("Toggled(Bool_t)");
         fZTitleSize->Disconnect("ValueSet(Long_t)");
         fZTitleColor->Disconnect("ColorSelected(Pixel_t)");
         fZTitleOffset->Disconnect("ValueSet(Long_t)");
         fZTitleFont->Disconnect("Selected(Int_t)");
         fZLabelSize->Disconnect("ValueSet(Long_t)");
         fZLabelColor->Disconnect("ColorSelected(Pixel_t)");
         fZLabelOffset->Disconnect("ValueSet(Long_t)");
         fZLabelFont->Disconnect("Selected(Int_t)");
         fZAxisColor->Disconnect("ColorSelected(Pixel_t)");
         fZTickLength->Disconnect("ValueSet(Long_t)");
         fOptLogz->Disconnect("Toggled(Bool_t)");
         fZNdivMain->Disconnect("ValueSet(Long_t)");
         fZNdivSub->Disconnect("ValueSet(Long_t)");
         fZNdivSubSub->Disconnect("ValueSet(Long_t)");
         fZNdivisionsOptimize->Disconnect("Toggled(Bool_t)");
         break;
      case 5: // TITLES
         fOptTitle->Disconnect("Toggled(Bool_t)");
         fTitleColor->Disconnect("ColorSelected(Pixel_t)");
         fTitleStyle->Disconnect("PatternSelected(Style_t)");
         fTitleTextColor->Disconnect("ColorSelected(Pixel_t)");
         fTitleFontSize->Disconnect("ValueSet(Long_t)");
         fTitleFont->Disconnect("Selected(Int_t)");
         fTitleAlign->Disconnect("Selected(Int_t)");
         fTitleBorderSize->Disconnect("Selected(Int_t)");
         fTitleX->Disconnect("ValueSet(Long_t)");
         fTitleY->Disconnect("ValueSet(Long_t)");
         fTitleW->Disconnect("ValueSet(Long_t)");
         fTitleH->Disconnect("ValueSet(Long_t)");
         fLegendBorderSize->Disconnect("Selected(Int_t)");
         break;
      case 6: // STATS
         fStatColor->Disconnect("ColorSelected(Pixel_t)");
         fStatStyle->Disconnect("PatternSelected(Style_t)");
         fStatTextColor->Disconnect("ColorSelected(Pixel_t)");
         fStatFontSize->Disconnect("ValueSet(Long_t)");
         fStatFont->Disconnect("Selected(Int_t)");
         fStatX->Disconnect("ValueSet(Long_t)");
         fStatY->Disconnect("ValueSet(Long_t)");
         fStatW->Disconnect("ValueSet(Long_t)");
         fStatH->Disconnect("ValueSet(Long_t)");
         fStatBorderSize->Disconnect("Selected(Int_t)");
         fOptStatName->Disconnect("Toggled(Bool_t)");
         fOptStatEntries->Disconnect("Toggled(Bool_t)");
         fOptStatOverflow->Disconnect("Toggled(Bool_t)");
         fOptStatMean->Disconnect("Toggled(Bool_t)");
         fOptStatUnderflow->Disconnect("Toggled(Bool_t)");
         fOptStatRMS->Disconnect("Toggled(Bool_t)");
         fOptStatSkewness->Disconnect("Toggled(Bool_t)");
         fOptStatIntegral->Disconnect("Toggled(Bool_t)");
         fOptStatKurtosis->Disconnect("Toggled(Bool_t)");
         fOptStatErrors->Disconnect("Toggled(Bool_t)");
         fStatFormat->Disconnect("TextChanged(const char *)");
         fOptFitValues->Disconnect("Toggled(Bool_t)");
         fOptFitErrors->Disconnect("Toggled(Bool_t)");
         fOptFitProbability->Disconnect("Toggled(Bool_t)");
         fOptFitChi->Disconnect("Toggled(Bool_t)");
         fFitFormat->Disconnect("TextChanged(const char *)");
         break;
      case 7: // PS / PDF
         fHeaderPS->Disconnect("TextChanged(const char *)");
         fTitlePS->Disconnect("TextChanged(const char *)");
         fColorModelPS->Disconnect("Clicked(Int_t)");
         fLineScalePS->Disconnect("ValueSet(Long_t)");
         fPaperSizePredef->Disconnect("Selected(Int_t)");
         fPaperSizeX->Disconnect("ValueSet(Long_t)");
         fPaperSizeY->Disconnect("ValueSet(Long_t)");
         break;
   }
}

//______________________________________________________________________________
void TStyleManager::DoEditor()
{
   //  Called each time something is changed in the style editor. Thanks to
   // this method, we can know if the style differs from the original style.

   fStyleChanged = kTRUE;

   // Update the status bar.
   UpdateStatusBar();

   // Update the preview if the real time mode is selected.
   if (fRealTimePreview)
      DoEditionUpdatePreview();
}

//______________________________________________________________________________
void TStyleManager::AddEdition(TGCompositeFrame *p)
{
   //  Add the editor to the frame 'p'. It contains the tabs allowing the user
   // to modify every data member of the current TStyle object.

   TGLayoutHints *layout1 = new TGLayoutHints(kLHintsExpandX, 8, 8, 5, 5);
   fTrashListLayout->Add(layout1);
   TGLayoutHints *layout2 = new TGLayoutHints(kLHintsExpandX, 10, 10);
   fTrashListLayout->Add(layout2);

   fEditionFrame = new TGVerticalFrame(p);
   fEditionFrame->ChangeOptions(kRaisedFrame);

   fEditionTab = new TGTab(fEditionFrame, 200, 150);
   fEditionTab->Associate(this);
   CreateTabGeneral(fEditionTab->AddTab("General"));
   CreateTabCanvas(fEditionTab->AddTab("Canvas"));
   CreateTabPad(fEditionTab->AddTab("Pad"));
   CreateTabHistos(fEditionTab->AddTab("Histograms"));
   CreateTabAxis(fEditionTab->AddTab("Axis"));
   CreateTabTitle(fEditionTab->AddTab("Title"));
   CreateTabStats(fEditionTab->AddTab("Stats"));
   CreateTabPsPdf(fEditionTab->AddTab("PS / PDF"));
   fEditionFrame->AddFrame(fEditionTab, layout1);

   fEditionButtonFrame = new TGHorizontalFrame(fEditionFrame);
   fEditionHelp = new TGTextButton(fEditionButtonFrame, "He&lp", kEditButHelp);
   fEditionHelp->Associate(this);
   fEditionButtonFrame->AddFrame(fEditionHelp, layout1);
   fEditionUpdatePreview = new TGTextButton(fEditionButtonFrame, "&Update Preview", kEditButUpPrev);
   fEditionUpdatePreview->Associate(this);
   fEditionUpdatePreview->SetEnabled(kFALSE);
   fEditionButtonFrame->AddFrame(fEditionUpdatePreview, layout1);
   fEditionReset = new TGTextButton(fEditionButtonFrame, "&Reset", kEditButReset);
   fEditionReset->Associate(this);
   fEditionButtonFrame->AddFrame(fEditionReset, layout1);
   fEditionFrame->AddFrame(fEditionButtonFrame, layout1);

   p->AddFrame(fEditionFrame, layout1);

   fEditionHelp->SetToolTipText("Help about the current tab");
   fEditionUpdatePreview->SetToolTipText("Force the refresh of the preview window");
   fEditionReset->SetToolTipText("Reset the selected style");
}

//______________________________________________________________________________
void TStyleManager::CreateTabGeneral(TGCompositeFrame *tab)
{
   // Add the tab 'General' to the editor.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 10, 21, 5, 5);
   fTrashListLayout->Add(layout);

   TGHorizontalFrame *h1 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h1);
   AddGeneralFill(h1);
   AddGeneralLine(h1);
   tab->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h2);
   AddGeneralText(h2);
   TGVerticalFrame *v = new TGVerticalFrame(h2);
   fTrashListFrame->AddFirst(v);
   AddGeneralMarker(v);
   TGHorizontalFrame *h3 = new TGHorizontalFrame(v);
   fTrashListFrame->AddFirst(h3);
   fScreenFactor = AddNumberEntry(h3, 0, 0, 0, kGeneralScreenFactor,
                        "Screen factor:", 0, 6, TGNumberFormat::kNESRealOne,
                        TGNumberFormat::kNEAPositive,
                        TGNumberFormat::kNELLimitMinMax, 0.2, 5);
   v->AddFrame(h3, layout);
   h2->AddFrame(v, fLayoutExpandXY);
   tab->AddFrame(h2, fLayoutExpandX);

   fScreenFactor->GetNumberEntry()->SetToolTipText("Coefficient for different screen's resolutions");
}

//______________________________________________________________________________
void TStyleManager::AddGeneralFill(TGCompositeFrame *f)
{
   // Add the 'Fill' group frame to the 'General' tab.

   TGLayoutHints *layout2 = new TGLayoutHints(kLHintsExpandX, 5, 0, 5, 5);
   fTrashListLayout->Add(layout2);

   TGGroupFrame *gf = new TGGroupFrame(f, "Fill");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fFillColor = AddColorEntry(h1, kGeneralFillColor);
   fFillStyle = AddFillStyleEntry(h1, kGeneralFillStyle);
   gf->AddFrame(h1, fLayoutExpandX);
   AddTitle(gf, "Hatchings");
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fHatchesLineWidth = AddLineWidthEntry(h2, kGeneralHatchesLineWidth);
   fHatchesSpacing = AddNumberEntry(h2, 0, 5, 0, kGeneralHatchesSpacing,
                        "", 0, 5, TGNumberFormat::kNESRealOne,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0.1, 5);
   gf->AddFrame(h2, layout2);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fFillColor->SetToolTipText("General fill color");
//   fFillStyle->SetToolTipText("General fill pattern");
   fHatchesSpacing->GetNumberEntry()->SetToolTipText("Spacing between the hatching's lines");
}

//______________________________________________________________________________
void TStyleManager::AddGeneralLine(TGCompositeFrame *f)
{
   // Add the 'Line' group frame to the 'General' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Line");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fLineColor = AddColorEntry(h, kGeneralLineColor);
   fLineWidth = AddLineWidthEntry(h, kGeneralLineWidth);
   gf->AddFrame(h, fLayoutExpandX);
   fLineStyle = AddLineStyleEntry(gf, kGeneralLineStyle);
   fLineStyleEdit = AddTextButton(gf, "Lines' Style Editor...", kGeneralLineStyleEdit);
   fLineStyleEdit->SetEnabled(kFALSE);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fLineColor->SetToolTipText("General line color");
}

//______________________________________________________________________________
void TStyleManager::AddGeneralText(TGCompositeFrame *f)
{
   // Add the 'Text' group frame to the 'General' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Text");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fTextColor = AddColorEntry(h1, kGeneralTextColor);
   fTextFont = AddFontTypeEntry(h1, kGeneralTextFont);
   gf->AddFrame(h1, fLayoutExpandX);
   fTextAlign = AddTextAlignEntry(gf, kGeneralTextAlign);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fTextSizeInPixels = AddCheckButton(h2, "Pixels", kGeneralTextSizeInPixels);
   fTextSize = AddNumberEntry(h2, 21, 10, 0, kGeneralTextSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   fTextAngle = AddNumberEntry(gf, 0, 0, 0, kGeneralTextAngle, "Angle:",
                        0, 5, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, -180, 180);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fTextColor->SetToolTipText("General text color");
   fTextSizeInPixels->SetToolTipText("Set the text size in pixels if selected, otherwise - in % of pad.");
   fTextSize->GetNumberEntry()->SetToolTipText("General text size (in pixels or in % of pad)");
   fTextAngle->GetNumberEntry()->SetToolTipText("General text angle");
}

//______________________________________________________________________________
void TStyleManager::AddGeneralMarker(TGCompositeFrame *f)
{
   // Add the 'Marker' group frame to the 'General' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Marker");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fMarkerColor = AddColorEntry(h, kGeneralMarkerColor);
   fMarkerStyle = AddMarkerStyleEntry(h, kGeneralMarkerStyle);
   fMarkerSize = AddMarkerSizeEntry(h, kGeneralMarkerSize);
   gf->AddFrame(h, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fMarkerColor->SetToolTipText("Marker color");
//   fMarkerStyle->SetToolTipText("Marker shape");
}

//______________________________________________________________________________
void TStyleManager::CreateTabCanvas(TGCompositeFrame *tab)
{
   // Add the tab 'Canvas' to the editor.

   TGHorizontalFrame *h = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h);
   TGVerticalFrame *v1 = new TGVerticalFrame(h);
   fTrashListFrame->AddFirst(v1);
   AddCanvasFill(v1);
   AddCanvasGeometry(v1);
   AddCanvasBorder(v1);
   h->AddFrame(v1, fLayoutExpandXY);
   TGVerticalFrame *v2 = new TGVerticalFrame(h);
   fTrashListFrame->AddFirst(v2);
   AddCanvasDate(v2);
   h->AddFrame(v2, fLayoutExpandXY);
   tab->AddFrame(h, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::AddCanvasFill(TGCompositeFrame *f)
{
   // Add the 'Fill' group frame to the 'Canvas' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Fill");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fCanvasColor = AddColorEntry(h, kCanvasColor);
   gf->AddFrame(h, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fCanvasColor->SetToolTipText("Color used to fill canvases");
}

//______________________________________________________________________________
void TStyleManager::AddCanvasGeometry(TGCompositeFrame *f)
{
   // Add the 'Geometry' group frame to the 'Canvas' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Geometry");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fCanvasDefX = AddNumberEntry(h1, 0, 9, 0, kCanvasDefX, "X:",
                        0, 5, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAPositive,
                        TGNumberFormat::kNELLimitMinMax, 0, 5000);
   fCanvasDefY = AddNumberEntry(h1, 7, 8, 0, kCanvasDefY, "Y:",
                        0, 5, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAPositive,
                        TGNumberFormat::kNELLimitMinMax, 0, 5000);
   gf->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fCanvasDefW = AddNumberEntry(h2, 0, 7, 0, kCanvasDefW, "W:",
                        0, 5, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAPositive,
                        TGNumberFormat::kNELLimitMinMax, 0, 5000);
   fCanvasDefH = AddNumberEntry(h2, 7, 8, 0, kCanvasDefH, "H:",
                        0, 5, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAPositive,
                        TGNumberFormat::kNELLimitMinMax, 0, 5000);
   gf->AddFrame(h2, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

   fCanvasDefX->GetNumberEntry()->SetToolTipText("Canvases' default abscissa");
   fCanvasDefY->GetNumberEntry()->SetToolTipText("Canvases' default ordinate");
   fCanvasDefW->GetNumberEntry()->SetToolTipText("Canvases' default width");
   fCanvasDefH->GetNumberEntry()->SetToolTipText("Canvases' default height");
}

//______________________________________________________________________________
void TStyleManager::AddCanvasBorder(TGCompositeFrame *f)
{
   // Add the 'Border' group frame to the 'Canvas' tab.

   fCanvasBorderMode = AddBorderModeEntry(f, kCanvasBorderModeSunken, kCanvasBorderModeNone, kCanvasBorderModeRaised);
   fCanvasBorderSize = AddLineWidthEntry(fCanvasBorderMode, kCanvasBorderSize);
}

//______________________________________________________________________________
void TStyleManager::AddCanvasDate(TGCompositeFrame *f)
{
   // Add the 'Date' group frame to the 'Canvas' tab.

   TGLayoutHints *layout2 = new TGLayoutHints(kLHintsExpandX, 10);
   fTrashListLayout->Add(layout2);

   TGGroupFrame *gf = new TGGroupFrame(f, "Date");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fOptDateBool = AddCheckButton(h1, "Show", kCanvasOptDateBool, 23);
   fAttDateTextColor = AddColorEntry(h1, kCanvasAttDateTextColor);
   gf->AddFrame(h1, fLayoutExpandX);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fAttDateTextSizeInPixels = AddCheckButton(h2, "Pixels", kCanvasAttDateTextSizeInPixels);
   fAttDateTextSize = AddNumberEntry(h2, 22, 10, 0, kCanvasAttDateTextSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   fOptDateFormat = AddDateFormatEntry(gf, kCanvasOptDateFormat);
   fAttDateTextFont = AddFontTypeEntry(gf, kCanvasAttDateTextFont);
   fAttDateTextAlign = AddTextAlignEntry(gf, kCanvasAttDateTextAlign);
   fAttDateTextAngle = AddNumberEntry(gf, 0, 0, 0, kCanvasAttDateTextAngle,
                        "Angle:", 0, 6, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, -180, 180);
   AddTitle(gf, "Position");
   TGVerticalFrame *h3 = new TGVerticalFrame(gf);
   fTrashListFrame->AddFirst(h3);
   fDateX = AddNumberEntry(h3, 0, 0, 0, kCanvasDateX, "X (% of Pad):",
                        0, 6, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 100);
   fDateY = AddNumberEntry(h3, 0, 0, 0, kCanvasDateY, "Y (% of Pad):",
                        0, 6, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 100);
   gf->AddFrame(h3, layout2);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fOptDateBool->SetToolTipText("Show / Hide the date in canvases");
// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fAttDateTextColor->SetToolTipText("Color of the date text");
   fAttDateTextSizeInPixels->SetToolTipText("Set the date text size in pixels if selected, otherwise - in % of pad");
   fAttDateTextSize->GetNumberEntry()->SetToolTipText("Date text size (in pixels or in % of pad)");
   fAttDateTextAngle->GetNumberEntry()->SetToolTipText("Date text angle");
   fDateX->GetNumberEntry()->SetToolTipText("Date abscissa in percent of pad");
   fDateY->GetNumberEntry()->SetToolTipText("Date ordinate in percent of pad");
}

//______________________________________________________________________________
void TStyleManager::CreateTabPad(TGCompositeFrame *tab)
{
   // Add the tab 'Pad' to the editor.

   TGHorizontalFrame *h1 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h1);
   AddPadMargin(h1);
   TGVerticalFrame *v = new TGVerticalFrame(h1);
   fTrashListFrame->AddFirst(v);
   AddPadFill(v);
   AddPadTicks(v);
   h1->AddFrame(v, fLayoutExpandXY);
   tab->AddFrame(h1, fLayoutExpandX);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h2);
   AddPadBorder(h2);
   AddPadGrid(h2);
   tab->AddFrame(h2, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::AddPadMargin(TGCompositeFrame *f)
{
   // Add the 'Margin' group frame to the 'Pad' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Margin (% of Pad)");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fPadLeftMargin = AddNumberEntry(h1, 0, 5, 0, kPadLeftMargin, "Left:",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   fPadRightMargin = AddNumberEntry(h1, 0, 0, 0, kPadRightMargin, "Right:",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   gf->AddFrame(h1, fLayoutExpandXY);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fPadTopMargin = AddNumberEntry(h2, 0, 5, 0, kPadTopMargin, "Top:",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   fPadBottomMargin = AddNumberEntry(h2, 0, 0, 0, kPadBottomMargin, "Bottom:",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   gf->AddFrame(h2, fLayoutExpandXY);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fPadLeftMargin->GetNumberEntry()->SetToolTipText("Pads' left margin");
   fPadRightMargin->GetNumberEntry()->SetToolTipText("Pads' right margin");
   fPadTopMargin->GetNumberEntry()->SetToolTipText("Pads' top margin");
   fPadBottomMargin->GetNumberEntry()->SetToolTipText("Pads' bottom margin");
}

//______________________________________________________________________________
void TStyleManager::AddPadBorder(TGCompositeFrame *f)
{
   // Add the 'Border' group frame to the 'Pad' tab.

   fPadBorderMode = AddBorderModeEntry(f, kPadBorderModeSunken, kPadBorderModeNone, kPadBorderModeRaised);
   fPadBorderSize = AddLineWidthEntry(fPadBorderMode, kPadBorderSize);
}

//______________________________________________________________________________
void TStyleManager::AddPadFill(TGCompositeFrame *f)
{
   // Add the 'Fill' group frame to the 'Pad' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Fill");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fPadColor = AddColorEntry(h, kPadColor);
   gf->AddFrame(h, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fPadColor->SetToolTipText("Color used to fill pads");
}

//______________________________________________________________________________
void TStyleManager::AddPadTicks(TGCompositeFrame *f)
{
   // Add the 'Ticks' group frame to the 'Pad' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Ticks");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(h);
   fTrashListFrame->AddFirst(h1);
   fPadTickX = AddCheckButton(h1, "Along X", kPadTickX);
   h->AddFrame(h1, fLayoutExpandX);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(h);
   fTrashListFrame->AddFirst(h2);
   fPadTickY = AddCheckButton(h2, "Along Y", kPadTickY);
   h->AddFrame(h2, fLayoutExpandX);
   gf->AddFrame(h, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fPadTickX->SetToolTipText("Show / Hide the ticks along X");
   fPadTickY->SetToolTipText("Show / Hide the ticks along Y");
}

//______________________________________________________________________________
void TStyleManager::AddPadGrid(TGCompositeFrame *f)
{
   // Add the 'Grid' group frame to the 'Pad' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Grid");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   TGHorizontalFrame *h10 = new TGHorizontalFrame(h1);
   fTrashListFrame->AddFirst(h10);
   fPadGridX = AddCheckButton(h10, "Along X", kPadGridX);
   h1->AddFrame(h10, fLayoutExpandX);
   TGHorizontalFrame *h20 = new TGHorizontalFrame(h1);
   fTrashListFrame->AddFirst(h20);
   fPadGridY = AddCheckButton(h20, "Along Y", kPadGridY);
   h1->AddFrame(h20, fLayoutExpandX);
   gf->AddFrame(h1, fLayoutExpandX);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fGridColor = AddColorEntry(h2, kPadGridColor);
   fGridWidth = AddLineWidthEntry(h2, kPadGridWidth);
   gf->AddFrame(h2, fLayoutExpandX);
   fGridStyle = AddLineStyleEntry(gf, kPadGridStyle);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fGridColor->SetToolTipText("Line color for the grid");
   fPadGridX->SetToolTipText("Show / Hide the grid along X");
   fPadGridY->SetToolTipText("Show / Hide the grid along Y");
}

//______________________________________________________________________________
void TStyleManager::CreateTabHistos(TGCompositeFrame *tab)
{
   // Add the tab 'Histos' to the editor.

   fHistosTab = new TGTab(tab, 1, 1);
   fHistosTab->Associate(this);
   CreateTabHistosHistos(fHistosTab->AddTab("Histos"));
   CreateTabHistosFrames(fHistosTab->AddTab("Frames"));
   CreateTabHistosGraphs(fHistosTab->AddTab("Graphs"));
   tab->AddFrame(fHistosTab, fLayoutExpandXY);
}

//______________________________________________________________________________
void TStyleManager::CreateTabHistosHistos(TGCompositeFrame *tab)
{
   // Add the sub-tab 'Histos' to the tab 'Histos'.

   TGHorizontalFrame *h1 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h1);
   AddHistosHistosFill(h1);
   AddHistosHistosContours(h1);
   tab->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h2);
   AddHistosHistosLine(h2);
   AddHistosHistosAxis(h2);
   tab->AddFrame(h2, fLayoutExpandX);

   TGHorizontalFrame *h3 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h3);
   AddHistosHistosBar(h3);
   AddHistosHistosLegoInnerR(h3);
   tab->AddFrame(h3, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::AddHistosHistosFill(TGCompositeFrame *f)
{
   // Add the 'Fill' group frame to the 'Histos - Histos' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Fill");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fHistFillColor = AddColorEntry(h1, kHistFillColor);
   fHistFillStyle = AddFillStyleEntry(h1, kHistFillStyle);
   gf->AddFrame(h1, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fHistFillColor->SetToolTipText("Color used to fill histograms");
//   fHistFillStyle->SetToolTipText("Pattern used to fill histograms");
}

//______________________________________________________________________________
void TStyleManager::AddHistosHistosLine(TGCompositeFrame *f)
{
    // Add the 'Line' group frame to the 'Histos - Histos' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Line");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fHistLineColor = AddColorEntry(h, kHistLineColor);
   fHistLineWidth = AddLineWidthEntry(h, kHistLineWidth);
   gf->AddFrame(h, fLayoutExpandX);
   fHistLineStyle = AddLineStyleEntry(gf, kHistLineStyle);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fHistLineColor->SetToolTipText("Color used for histograms' lines");
}

//______________________________________________________________________________
void TStyleManager::AddHistosHistosBar(TGCompositeFrame *f)
{
   // Add the 'Bar' group frame to the 'Histos - Histos' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Bar");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fBarWidth = AddNumberEntry(h, 0, 5, 0, kHistBarWidth, "W:",
                        0, 5, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 5);
   fBarOffset = AddNumberEntry(h, 8, 5, 0, kHistBarOffset, "O:",
                        0, 5, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 5);
   gf->AddFrame(h, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fBarWidth->GetNumberEntry()->SetToolTipText("Width of bars");
   fBarOffset->GetNumberEntry()->SetToolTipText("Offset of bars");
}

//______________________________________________________________________________
void TStyleManager::AddHistosHistosContours(TGCompositeFrame *f)
{
   // Add the 'Contours' group frame to the 'Histos - Histos' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Contours");
   fTrashListFrame->AddFirst(gf);
   fNumberContours = AddNumberEntry(gf, 0, 0, 0, kHistNumberContours, "Number:",
                        0, 5, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fNumberContours->GetNumberEntry()->SetToolTipText("Number of level lines to draw");
}

//______________________________________________________________________________
void TStyleManager::AddHistosHistosAxis(TGCompositeFrame *f)
{
   // Add the 'Axis' group frame to the 'Histos - Histos' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Axis");
   fTrashListFrame->AddFirst(gf);
   fHistMinimumZero = AddCheckButton(gf, "Minimum zero", kHistMinimumZero);
   fPaintTextFormat = AddTextEntry(gf, "Paint format:", kHistPaintTextFormat);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fHistMinimumZero->SetToolTipText("Set to zero / Compute the minimum of axis range");
   fPaintTextFormat->SetToolTipText("Paint format of the axis labels in histograms");
}

//______________________________________________________________________________
void TStyleManager::AddHistosHistosLegoInnerR(TGCompositeFrame *f)
{
   // Add the '3D Cylindrical' group frame to the 'Histos - Histos' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "3D Cylindrical (%)");
   fTrashListFrame->AddFirst(gf);
   fLegoInnerR = AddNumberEntry(gf, 0, 0, 0, kHistLegoInnerR, "Inner radius:",
                        0, 5, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 100);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fLegoInnerR->GetNumberEntry()->SetToolTipText("Percent of radius allocated to the tube");
}

//______________________________________________________________________________
void TStyleManager::CreateTabHistosFrames(TGCompositeFrame *tab)
{
   // Add the sub-tab 'Frames' to the tab 'Histos'.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 10, 10, 0, 13);
   fTrashListLayout->Add(layout);

   TGHorizontalFrame *h1 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h1);

   TGVerticalFrame *v1 = new TGVerticalFrame(h1);
   fTrashListFrame->AddFirst(v1);
   AddHistosFramesFill(v1);
   AddHistosFramesLine(v1);
   h1->AddFrame(v1, fLayoutExpandXY);

   TGVerticalFrame *v2 = new TGVerticalFrame(h1);
   fTrashListFrame->AddFirst(v2);
   AddHistosFramesBorder(v2);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(v2);
   fTrashListFrame->AddFirst(h2);
   fPaletteEdit = AddTextButton(h2, "Palette Editor...", kFramePaletteEdit);
   fPaletteEdit->SetEnabled(kFALSE);
   v2->AddFrame(h2, layout);
   h1->AddFrame(v2, fLayoutExpandXY);

   tab->AddFrame(h1, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::AddHistosFramesFill(TGCompositeFrame *f)
{
   // Add the 'Fill' group frame to the 'Histos - Frames' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Fill");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fFrameFillColor = AddColorEntry(h1, kFrameFillColor);
   fFrameFillStyle = AddFillStyleEntry(h1, kFrameFillStyle);
   gf->AddFrame(h1, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fFrameFillColor->SetToolTipText("Color used to fill frames");
//   fFrameFillStyle->SetToolTipText("Pattern used to fill frames");
}

//______________________________________________________________________________
void TStyleManager::AddHistosFramesLine(TGCompositeFrame *f)
{
   // Add the 'Line' group frame to the 'Histos - Frames' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Line");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fFrameLineColor = AddColorEntry(h, kFrameLineColor);
   fFrameLineWidth = AddLineWidthEntry(h, kFrameLineWidth);
   gf->AddFrame(h, fLayoutExpandX);
   fFrameLineStyle = AddLineStyleEntry(gf, kFrameLineStyle);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fFrameLineColor->SetToolTipText("Color of lines in frames");
}

//______________________________________________________________________________
void TStyleManager::AddHistosFramesBorder(TGCompositeFrame *f)
{
   // Add the 'Border' group frame to the 'Histos - Frames' tab.

   fFrameBorderMode = AddBorderModeEntry(f, kFrameBorderModeSunken, kFrameBorderModeNone, kFrameBorderModeRaised);
   fFrameBorderSize = AddLineWidthEntry(fFrameBorderMode, kFrameBorderSize);
}

//______________________________________________________________________________
void TStyleManager::CreateTabHistosGraphs(TGCompositeFrame *tab)
{
   // Add the sub-tab 'Graphs' to the tab 'Histos'.

   TGHorizontalFrame *h = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h);
   AddHistosGraphsLine(h);
   AddHistosGraphsErrors(h);
   tab->AddFrame(h, fLayoutExpandX);
   AddHistosGraphsBorder(tab);
}

//______________________________________________________________________________
void TStyleManager::AddHistosGraphsLine(TGCompositeFrame *f)
{
   // Add the 'Line' group frame to the 'Histos - Graphs' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Line");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fFuncColor = AddColorEntry(h, kGraphsFuncColor);
   fFuncWidth = AddLineWidthEntry(h, kGraphsFuncWidth);
   gf->AddFrame(h, fLayoutExpandX);
   fFuncStyle = AddLineStyleEntry(gf, kGraphsFuncStyle);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fFuncColor->SetToolTipText("Color of curves in graphs");
}

//______________________________________________________________________________
void TStyleManager::AddHistosGraphsBorder(TGCompositeFrame *f)
{
   // Add the 'Draw Border' check button to the 'Histos - Graphs' tab.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 10, 21, 5, 5);
   fTrashListLayout->Add(layout);

   TGHorizontalFrame *h = new TGHorizontalFrame(f);
   fTrashListFrame->AddFirst(h);
   fDrawBorder = AddCheckButton(h, "Draw Border (for Filled Function)", kGraphsDrawBorder);
   f->AddFrame(h, layout);

   fDrawBorder->SetToolTipText("Show / Hide the border of filled functions");
}

//______________________________________________________________________________
void TStyleManager::AddHistosGraphsErrors(TGCompositeFrame *f)
{
   // Add the 'Errors' group frame to the 'Histos - Graphs' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Errors");
   fTrashListFrame->AddFirst(gf);
   fEndErrorSize = AddNumberEntry(gf, 0, 0, 0, kGraphsEndErrorSize,
                        "End error size:", 0, 4, TGNumberFormat::kNESRealOne,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 5);
   fErrorX = AddNumberEntry(gf, 0, 0, 0, kGraphsErrorX, "Error X (% of bin):",
                        0, 4, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 100);
   f->AddFrame(gf, fLayoutExpandXMargin);

   fEndErrorSize->GetNumberEntry()->SetToolTipText("Size of lines drawn at the end of error bars");
   fErrorX->GetNumberEntry()->SetToolTipText("Percent of the bin width to use for errors along X");
}

//______________________________________________________________________________
void TStyleManager::CreateTabAxis(TGCompositeFrame *tab)
{
   // Add the tab 'Axis' to the editor.

   TGLayoutHints *layout =
                  new TGLayoutHints(kLHintsNormal, 10, 13, 3);
   fTrashListLayout->Add(layout);

   TGHorizontalFrame *h = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h);

   TGVerticalFrame *h3 = new TGVerticalFrame(h);
   fTrashListFrame->AddFirst(h3);
   fStripDecimals = AddCheckButton(h3, "Decimal labels' part", kAxisStripDecimals, 0, 8);
   TGVerticalFrame *space = new TGVerticalFrame(h3);
   fTrashListFrame->AddFirst(space);
   h3->AddFrame(space, fLayoutExpandXY);
   fApplyOnXYZ = AddTextButton(h3, "Apply on XYZ", kAxisApplyOnXYZ);
   h->AddFrame(h3, layout);

   TGGroupFrame *gf = new TGGroupFrame(h, "Date/Time Offset");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fTimeOffsetDate = AddNumberEntry(h2, 0, 13, 10, kAxisTimeOffsetDate, "",
                        0, 10, TGNumberFormat::kNESDayMYear,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELNoLimits, 0, 0);
   fTimeOffsetTime = AddNumberEntry(h2, 0, 15, 0, kAxisTimeOffsetTime, "",
                        0, 8, TGNumberFormat::kNESHourMinSec,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELNoLimits, 0, 0);
   gf->AddFrame(h2, fLayoutExpandX);
   h->AddFrame(gf, fLayoutExpandXMargin);
   tab->AddFrame(h, fLayoutExpandX);

   fAxisTab = new TGTab(tab);
   fAxisTab->Associate(this);
   CreateTabAxisX(fAxisTab->AddTab("X axis"));
   CreateTabAxisY(fAxisTab->AddTab("Y axis"));
   CreateTabAxisZ(fAxisTab->AddTab("Z axis"));
   tab->AddFrame(fAxisTab, fLayoutExpandXY);

   fStripDecimals->SetToolTipText("Draw / Hide the decimal part of labels");
   fApplyOnXYZ->SetToolTipText("Apply settings of the currently selected axis on XYZ");
   fTimeOffsetDate->GetNumberEntry()->SetToolTipText("Date offset for axis (dd/mm/yyyy)");
   fTimeOffsetTime->GetNumberEntry()->SetToolTipText("Time offset for axis (hh/mm/ss)");
}

//______________________________________________________________________________
void TStyleManager::CreateTabAxisX(TGCompositeFrame *tab)
{
   // Add the sub-tab 'X Axis' to the tab 'Axis'.

   TGHorizontalFrame *h1 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h1);
   AddAxisXLine(h1);
   AddAxisXDivisions(h1);
   tab->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h2);
   AddAxisXTitle(h2);
   AddAxisXLabels(h2);
   tab->AddFrame(h2, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::AddAxisXLine(TGCompositeFrame *f)
{
   // Add the 'Line' group frame to the 'Axis - X Axis' tab.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 20);
   fTrashListLayout->Add(layout);

   TGGroupFrame *gf = new TGGroupFrame(f, "Line");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fXAxisColor = AddColorEntry(h, kAxisXAxisColor);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(h);
   fTrashListFrame->AddFirst(h2);
   fXTickLength = AddNumberEntry(h2, 3, 8, 0, kAxisXTickLength, "Ticks:",
                        0, 5, TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 5);
   h->AddFrame(h2, layout);
   gf->AddFrame(h, fLayoutExpandX);
   fOptLogx = AddCheckButton(gf, "Logarithmic scale", kAxisOptLogx);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fXAxisColor->SetToolTipText("Color of axis' line");
   fXTickLength->GetNumberEntry()->SetToolTipText("Set the ticks' length");
   fOptLogx->SetToolTipText("Draw logarithmic scale");
}

//______________________________________________________________________________
void TStyleManager::AddAxisXTitle(TGCompositeFrame *f)
{
   // Add the 'Title' group frame to the 'Axis - X Axis' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Title");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fXTitleColor = AddColorEntry(h1, kAxisXTitleColor);
   fXTitleFont = AddFontTypeEntry(h1, kAxisXTitleFont);
   gf->AddFrame(h1, fLayoutExpandX);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fXTitleSizeInPixels = AddCheckButton(h2, "Pixels", kAxisXTitleSizeInPixels);
   fXTitleSize = AddNumberEntry(h2, 21, 8, 0, kAxisXTitleSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   fXTitleOffset = AddNumberEntry(gf, 68, 8, 0, kAxisXTitleOffset, "Offset:",
                        0, 5, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 1);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fXTitleColor->SetToolTipText("Color of axis' title");
   fXTitleSizeInPixels->SetToolTipText("Set the title size in pixels if selected, otherwise - in % of pad");
   fXTitleSize->GetNumberEntry()->SetToolTipText("Title size (in pixels or in % of pad)");
   fXTitleOffset->GetNumberEntry()->SetToolTipText("Offset between axis and title");
}

//______________________________________________________________________________
void TStyleManager::AddAxisXDivisions(TGCompositeFrame *f)
{
   // Add the 'Divisions' group frame to the 'Axis - X Axis' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Divisions");
   fTrashListFrame->AddFirst(gf);

   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fXNdivSubSub = AddNumberEntry(h1, 0, 0, 0, kAxisXNdivSubSub, "",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   fXNdivSub = AddNumberEntry(h1, 0, 18, 0, kAxisXNdivSub, "",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   fXNdivMain = AddNumberEntry(h1, 0, 18, 0, kAxisXNdivMain, "",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   gf->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fXNdivisionsOptimize = AddCheckButton(h2, "Optimize", kAxisXNdivisionsOptimize);
   gf->AddFrame(h2, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

   fXNdivMain->GetNumberEntry()->SetToolTipText("Primary axis divisions");
   fXNdivSub->GetNumberEntry()->SetToolTipText("Secondary axis divisions");
   fXNdivSubSub->GetNumberEntry()->SetToolTipText("Tertiary axis divisions");
   fXNdivisionsOptimize->SetToolTipText("Optimize the number of axis divisions if selected");
}

//______________________________________________________________________________
void TStyleManager::AddAxisXLabels(TGCompositeFrame *f)
{
   // Add the 'Labels' group frame to the 'Axis - X Axis' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Labels");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fXLabelColor = AddColorEntry(h1, kAxisXLabelColor);
   fXLabelFont = AddFontTypeEntry(h1, kAxisXLabelFont);
   gf->AddFrame(h1, fLayoutExpandX);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fXLabelSizeInPixels = AddCheckButton(h2, "Pixels", kAxisXLabelSizeInPixels);
   fXLabelSize = AddNumberEntry(h2, 22, 8, 0, kAxisXLabelSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   fXLabelOffset = AddNumberEntry(gf, 69, 8, 0, kAxisXTitleOffset, "Offset:",
                        0, 5, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 1);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fXLabelColor->SetToolTipText("Color of axis' labels");
   fXLabelSizeInPixels->SetToolTipText("Set the labels size in pixels if selected, otherwise - in % of pad");
   fXLabelSize->GetNumberEntry()->SetToolTipText("Label size (in pixels or in % of pad)");
   fXLabelOffset->GetNumberEntry()->SetToolTipText("Offset between axis and labels");
}

//______________________________________________________________________________
void TStyleManager::CreateTabAxisY(TGCompositeFrame *tab)
{
   // Add the sub-tab 'Y Axis' to the tab 'Axis'.

   TGHorizontalFrame *h1 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h1);
   AddAxisYLine(h1);
   AddAxisYDivisions(h1);
   tab->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h2);
   AddAxisYTitle(h2);
   AddAxisYLabels(h2);
   tab->AddFrame(h2, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::AddAxisYLine(TGCompositeFrame *f)
{
   // Add the 'Line' group frame to the 'Axis - Y Axis' tab.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 20);
   fTrashListLayout->Add(layout);

   TGGroupFrame *gf = new TGGroupFrame(f, "Line");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fYAxisColor = AddColorEntry(h, kAxisYAxisColor);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(h);
   fTrashListFrame->AddFirst(h2);
   fYTickLength = AddNumberEntry(h2, 3, 8, 0, kAxisYTickLength, "Ticks:",
                        0, 5, TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 5);
   h->AddFrame(h2, layout);
   gf->AddFrame(h, fLayoutExpandX);
   fOptLogy = AddCheckButton(gf, "Logarithmic scale", kAxisOptLogy);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fYAxisColor->SetToolTipText("Color of axis' line");
   fYTickLength->GetNumberEntry()->SetToolTipText("Set the ticks' length");
   fOptLogy->SetToolTipText("Draw logarithmic scale");
}

//______________________________________________________________________________
void TStyleManager::AddAxisYTitle(TGCompositeFrame *f)
{
   // Add the 'Title' group frame to the 'Axis - Y Axis' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Title");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fYTitleColor = AddColorEntry(h1, kAxisYTitleColor);
   fYTitleFont = AddFontTypeEntry(h1, kAxisYTitleFont);
   gf->AddFrame(h1, fLayoutExpandX);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fYTitleSizeInPixels = AddCheckButton(h2, "Pixels", kAxisYTitleSizeInPixels);
   fYTitleSize = AddNumberEntry(h2, 21, 8, 0, kAxisYTitleSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   fYTitleOffset = AddNumberEntry(gf, 68, 8, 0, kAxisYTitleOffset, "Offset:",
                        0, 5, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 1);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fYTitleColor->SetToolTipText("Color of axis' title");
   fYTitleSizeInPixels->SetToolTipText("Set the title size in pixels if selected, otherwise - in % of pad");
   fYTitleSize->GetNumberEntry()->SetToolTipText("Title size (in pixels or in % of pad)");
   fYTitleOffset->GetNumberEntry()->SetToolTipText("Offset between axis and title");
}

//______________________________________________________________________________
void TStyleManager::AddAxisYDivisions(TGCompositeFrame *f)
{
   // Add the 'Divisions' group frame to the 'Axis - Y Axis' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Divisions");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fYNdivSubSub = AddNumberEntry(h1, 0, 0, 0, kAxisYNdivSubSub, "",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   fYNdivSub = AddNumberEntry(h1, 0, 18, 0, kAxisYNdivSub, "",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   fYNdivMain = AddNumberEntry(h1, 0, 18, 0, kAxisYNdivMain, "",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   gf->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fYNdivisionsOptimize = AddCheckButton(h2, "Optimize", kAxisYNdivisionsOptimize);
   gf->AddFrame(h2, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

   fYNdivMain->GetNumberEntry()->SetToolTipText("Primary axis divisions");
   fYNdivSub->GetNumberEntry()->SetToolTipText("Secondary axis divisions");
   fYNdivSubSub->GetNumberEntry()->SetToolTipText("Tertiary axis divisions");
   fYNdivisionsOptimize->SetToolTipText("Optimize the number of axis divisions");
}

//______________________________________________________________________________
void TStyleManager::AddAxisYLabels(TGCompositeFrame *f)
{
   // Add the 'Labels' group frame to the 'Axis - Y Axis' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Labels");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fYLabelColor = AddColorEntry(h1, kAxisYLabelColor);
   fYLabelFont = AddFontTypeEntry(h1, kAxisYLabelFont);
   gf->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fYLabelSizeInPixels = AddCheckButton(h2, "Pixels", kAxisYLabelSizeInPixels);
   fYLabelSize = AddNumberEntry(h2, 22, 8, 0, kAxisYLabelSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   fYLabelOffset = AddNumberEntry(gf, 69, 8, 0, kAxisYTitleOffset, "Offset:",
                        0, 5, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 1);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fYLabelColor->SetToolTipText("Color of axis' labels");
   fYLabelSizeInPixels->SetToolTipText("Set the labels size in pixels if selected, otherwise - in % of pad");
   fYLabelSize->GetNumberEntry()->SetToolTipText("Label size (in pixels or in % of pad)");
   fYLabelOffset->GetNumberEntry()->SetToolTipText("Offset between axis and labels");
}

//______________________________________________________________________________
void TStyleManager::CreateTabAxisZ(TGCompositeFrame *tab)
{
   // Add the sub-tab 'Z Axis' to the tab 'Axis'.

   TGHorizontalFrame *h1 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h1);
   AddAxisZLine(h1);
   AddAxisZDivisions(h1);
   tab->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h2);
   AddAxisZTitle(h2);
   AddAxisZLabels(h2);
   tab->AddFrame(h2, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::AddAxisZLine(TGCompositeFrame *f)
{
   // Add the 'Line' group frame to the 'Axis - Z Axis' tab.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 20);
   fTrashListLayout->Add(layout);

   TGGroupFrame *gf = new TGGroupFrame(f, "Line");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fZAxisColor = AddColorEntry(h, kAxisZAxisColor);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(h);
   fTrashListFrame->AddFirst(h2);
   fZTickLength = AddNumberEntry(h2, 3, 8, 0, kAxisZTickLength, "Ticks:",
                        0, 5, TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 5);
   h->AddFrame(h2, layout);
   gf->AddFrame(h, fLayoutExpandX);
   fOptLogz = AddCheckButton(gf, "Logarithmic scale", kAxisOptLogz);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fZAxisColor->SetToolTipText("Color of axis' line");
   fZTickLength->GetNumberEntry()->SetToolTipText("Set the ticks' length");
   fOptLogz->SetToolTipText("Draw logarithmic scale");
}

//______________________________________________________________________________
void TStyleManager::AddAxisZTitle(TGCompositeFrame *f)
{
   // Add the 'Title' group frame to the 'Axis - Z Axis' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Title");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fZTitleColor = AddColorEntry(h1, kAxisZTitleColor);
   fZTitleFont = AddFontTypeEntry(h1, kAxisZTitleFont);
   gf->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fZTitleSizeInPixels = AddCheckButton(h2, "Pixels", kAxisZTitleSizeInPixels);
   fZTitleSize = AddNumberEntry(h2, 21, 8, 0, kAxisZTitleSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   fZTitleOffset = AddNumberEntry(gf, 68, 8, 0, kAxisZTitleOffset, "Offset:",
                        0, 5, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 1);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fZTitleColor->SetToolTipText("Color of axis' title");
   fZTitleSizeInPixels->SetToolTipText("Set the title size in pixels if selected, otherwise - in % of pad");
   fZTitleSize->GetNumberEntry()->SetToolTipText("Title size (in pixels or in % of pad)");
   fZTitleOffset->GetNumberEntry()->SetToolTipText("Offset between axis and title");
}

//______________________________________________________________________________
void TStyleManager::AddAxisZDivisions(TGCompositeFrame *f)
{
   // Add the 'Divisions' group frame to the 'Axis - Z Axis' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Divisions");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fZNdivSubSub = AddNumberEntry(h1, 0, 0, 0, kAxisZNdivSubSub, "",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   fZNdivSub = AddNumberEntry(h1, 0, 18, 0, kAxisZNdivSub, "",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   fZNdivMain = AddNumberEntry(h1, 0, 18, 0, kAxisZNdivMain, "",
                        0, 3, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 99);
   gf->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fZNdivisionsOptimize = AddCheckButton(h2, "Optimize", kAxisZNdivisionsOptimize);
   gf->AddFrame(h2, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

   fZNdivMain->GetNumberEntry()->SetToolTipText("Primary axis divisions");
   fZNdivSub->GetNumberEntry()->SetToolTipText("Secondary axis divisions");
   fZNdivSubSub->GetNumberEntry()->SetToolTipText("Tertiary axis divisions");
   fZNdivisionsOptimize->SetToolTipText("Optimize the number of axis divisions");
}

//______________________________________________________________________________
void TStyleManager::AddAxisZLabels(TGCompositeFrame *f)
{
   // Add the 'Labels' group frame to the 'Axis - Z Axis' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Labels");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fZLabelColor = AddColorEntry(h1, kAxisZLabelColor);
   fZLabelFont = AddFontTypeEntry(h1, kAxisZLabelFont);
   gf->AddFrame(h1, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fZLabelSizeInPixels = AddCheckButton(h2, "Pixels", kAxisZLabelSizeInPixels);
   fZLabelSize = AddNumberEntry(h2, 22, 8, 0, kAxisZLabelSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   fZLabelOffset = AddNumberEntry(gf, 69, 8, 0, kAxisZTitleOffset, "Offset:",
                        0, 5, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 1);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fZLabelColor->SetToolTipText("Color of axis' labels");
   fZLabelSizeInPixels->SetToolTipText("Set the labels size in pixels if selected, otherwise - in % of pad");
   fZLabelSize->GetNumberEntry()->SetToolTipText("Label size (in pixels or in % of pad)");
   fZLabelOffset->GetNumberEntry()->SetToolTipText("Offset between axis and labels");
}

//______________________________________________________________________________
void TStyleManager::CreateTabTitle(TGCompositeFrame *tab)
{
   // Add the tab 'Title' to the editor.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 10, 20, 5, 5);
   fTrashListLayout->Add(layout);

   TGHorizontalFrame *h1 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h1);
   fOptTitle = AddCheckButton(h1, "Show title", kTitleOptTitle);
   tab->AddFrame(h1, layout);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h2);
   TGVerticalFrame *v1 = new TGVerticalFrame(h2);
   fTrashListFrame->AddFirst(v1);
   AddTitleFill(v1);
   AddTitleText(v1);
   h2->AddFrame(v1, fLayoutExpandXY);
   TGVerticalFrame *v2 = new TGVerticalFrame(h2);
   fTrashListFrame->AddFirst(v2);
   AddTitleBorderSize(v2);
   AddTitleGeometry(v2);
   h2->AddFrame(v2, fLayoutExpandXY);
   tab->AddFrame(h2, fLayoutExpandX);

   fOptTitle->SetToolTipText("Show / Hide the title pave");
}

//______________________________________________________________________________
void TStyleManager::AddTitleFill(TGCompositeFrame *f)
{
   // Add the 'Fill' group frame to the 'Title' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Fill");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fTitleColor = AddColorEntry(h1, kTitleFillColor);
   fTitleStyle = AddFillStyleEntry(h1, kTitleStyle);
   gf->AddFrame(h1, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fTitleColor->SetToolTipText("Color used to fill the title pave");
//   fTitleStyle->SetToolTipText("Pattern used to fill the title pave");
}

//______________________________________________________________________________
void TStyleManager::AddTitleBorderSize(TGCompositeFrame *f)
{
   // Add the 'Shadow' group frame to the 'Title' tab.

   TGLayoutHints *layout1 = new TGLayoutHints(kLHintsNormal, 0, 24, 6);
   fTrashListLayout->Add(layout1);
   TGLayoutHints *layout2 = new TGLayoutHints(kLHintsNormal, 0, 5, 6);
   fTrashListLayout->Add(layout2);
   TGLayoutHints *layout3 = new TGLayoutHints(kLHintsExpandX, 0, 0, 3, 3);
   fTrashListLayout->Add(layout3);

   TGGroupFrame *gf = new TGGroupFrame(f, "Shadow");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fTitleBorderSizeLabel = new TGLabel(h1, "Title's:");
   h1->AddFrame(fTitleBorderSizeLabel, layout1);
   fTitleBorderSize = AddLineWidthEntry(h1, kTitleBorderSize);
   gf->AddFrame(h1, layout3);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fLegendBorderSizeLabel = new TGLabel(h2, "Legend's:");
   h2->AddFrame(fLegendBorderSizeLabel, layout2);
   fLegendBorderSize = AddLineWidthEntry(h2, kTitleLegendBorderSize);
   gf->AddFrame(h2, layout3);
   f->AddFrame(gf, fLayoutExpandXMargin);
}

//______________________________________________________________________________
void TStyleManager::AddTitleText(TGCompositeFrame *f)
{
   // Add the 'Text' group frame to the 'Title' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Text");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fTitleTextColor = AddColorEntry(h1, kTitleTextColor);
   fTitleFont = AddFontTypeEntry(h1, kTitleFont);
   gf->AddFrame(h1, fLayoutExpandX);
   fTitleAlign = AddTextAlignEntry(gf, kTitleAlign);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fTitleFontSizeInPixels = AddCheckButton(h2, "Pixels", kTitleFontSizeInPixels);
   fTitleFontSize = AddNumberEntry(h2, 21, 10, 0, kTitleFontSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fTitleTextColor->SetToolTipText("Color of the title's text");
   fTitleFontSizeInPixels->SetToolTipText("Set the title's text size in pixels if selected, otherwise - in % of pad");
   fTitleFontSize->GetNumberEntry()->SetToolTipText("Title's text size (in pixels or in % of pad)");
}

//______________________________________________________________________________
void TStyleManager::AddTitleGeometry(TGCompositeFrame *f)
{
   // Add the 'Geometry' group frame to the 'Title' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Geometry (% of Pad)");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fTitleX = AddNumberEntry(h1, 0, 8, 0, kTitleX, "X:",
                        0, 4, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 100);
   fTitleY = AddNumberEntry(h1, 8, 8, 0, kTitleY, "Y:",
                           0, 4, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 100);
   gf->AddFrame(h1, fLayoutExpandXY);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fTitleW = AddNumberEntry(h2, 0, 6, 0, kTitleW, "W:",
                        0, 4, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 100);
   fTitleH = AddNumberEntry(h2, 8, 8, 0, kTitleH, "H:",
                        0, 4, TGNumberFormat::kNESInteger,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 100);
   gf->AddFrame(h2, fLayoutExpandXY);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fTitleX->GetNumberEntry()->SetToolTipText("Title' default abscissa");
   fTitleY->GetNumberEntry()->SetToolTipText("Title' default ordinate");
   fTitleW->GetNumberEntry()->SetToolTipText("Title' default width");
   fTitleH->GetNumberEntry()->SetToolTipText("Title' default height");
}

//______________________________________________________________________________
void TStyleManager::CreateTabStats(TGCompositeFrame *tab)
{
   // Add the tab 'Stats' to the editor.

   TGLayoutHints *layout1 = new TGLayoutHints(kLHintsNormal, 0, 5, 6);
   fTrashListLayout->Add(layout1);
   TGLayoutHints *layout2 = new TGLayoutHints(kLHintsExpandX, 10, 21, 5, 5);
   fTrashListLayout->Add(layout2);

   TGHorizontalFrame *h1 = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h1);

   TGVerticalFrame *v1 = new TGVerticalFrame(h1);
   fTrashListFrame->AddFirst(v1);
   AddStatsFill(v1);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(v1);
   fTrashListFrame->AddFirst(h2);
   fStatBorderSizeLabel = new TGLabel(h2, "Stats' shadow:");
   h2->AddFrame(fStatBorderSizeLabel, layout1);
   fStatBorderSize = AddLineWidthEntry(h2, kStatBorderSize);
   v1->AddFrame(h2, layout2);
   AddStatsText(v1);
   AddStatsGeometry(v1);
   h1->AddFrame(v1, fLayoutExpandXY);

   TGVerticalFrame *v2 = new TGVerticalFrame(h1);
   fTrashListFrame->AddFirst(v2);
   AddStatsStats(v2);
   AddStatsFit(v2);
   h1->AddFrame(v2, fLayoutExpandXY);

   tab->AddFrame(h1, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::AddStatsFill(TGCompositeFrame *f)
{
   // Add the 'Fill' group frame to the 'Stats' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Fill");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   fStatColor = AddColorEntry(h, kStatColor);
   fStatStyle = AddFillStyleEntry(h, kStatStyle);
   gf->AddFrame(h, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fStatColor->SetToolTipText("Color used to fill the stats pave");
//   fStatStyle->SetToolTipText("Pattern used to fill the stats pave");
}

//______________________________________________________________________________
void TStyleManager::AddStatsText(TGCompositeFrame *f)
{
   // Add the 'Text' group frame to the 'Stats' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Text");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fStatTextColor = AddColorEntry(h1, kStatTextColor);
   fStatFont = AddFontTypeEntry(h1, kStatFont);
   gf->AddFrame(h1, fLayoutExpandX);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fStatFontSizeInPixels = AddCheckButton(h2, "Pixels", kStatFontSizeInPixels);
   fStatFontSize = AddNumberEntry(h2, 21, 10, 0, kStatFontSize, "Size:", 0, 5,
                        TGNumberFormat::kNESRealThree,
                        TGNumberFormat::kNEAAnyNumber,
                        TGNumberFormat::kNELLimitMinMax, 0, 0.3);
   gf->AddFrame(h2, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXYMargin);

// TODO Delete the // when the selectColor and selectPattern tooltips are OK.
//   fStatTextColor->SetToolTipText("Color of the stats's text");
   fStatFontSizeInPixels->SetToolTipText("Set the stats's text size in pixels if selected, otherwise - in % of pad");
   fStatFontSize->GetNumberEntry()->SetToolTipText("Stats's text size (in pixels or in % of pad)");
}

//______________________________________________________________________________
void TStyleManager::AddStatsGeometry(TGCompositeFrame *f)
{
   // Add the 'Geometry' group frame to the 'Stats' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Geometry");
   fTrashListFrame->AddFirst(gf);

   TGHorizontalFrame *h1 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h1);
   fStatX = AddNumberEntry(h1, 0, 7, 0, kStatX, "X:",
                        0., 4, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEANonNegative,
                        TGNumberFormat::kNELLimitMinMax, 0., 1.);
   fStatY = AddNumberEntry(h1, 8, 7, 0, kStatY, "Y:",
                        0., 4, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEANonNegative,
                        TGNumberFormat::kNELLimitMinMax, 0., 1.);
   gf->AddFrame(h1, fLayoutExpandXY);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   fStatW = AddNumberEntry(h2, 0, 5, 0, kStatW, "W:",
                        0., 4, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEANonNegative,
                        TGNumberFormat::kNELLimitMinMax, 0., 1.);
   fStatH = AddNumberEntry(h2, 8, 7, 0, kStatH, "H:",
                        0., 4, TGNumberFormat::kNESRealTwo,
                        TGNumberFormat::kNEANonNegative,
                        TGNumberFormat::kNELLimitMinMax, 0., 1.);
   gf->AddFrame(h2, fLayoutExpandXY);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fStatX->GetNumberEntry()->SetToolTipText("X position of top right corner of stat box.");
   fStatY->GetNumberEntry()->SetToolTipText("Y position of top right corner of stat box.");
   fStatW->GetNumberEntry()->SetToolTipText("Width of stat box.");
   fStatH->GetNumberEntry()->SetToolTipText("Height of stat box.");
}

//______________________________________________________________________________
void TStyleManager::AddStatsStats(TGCompositeFrame *f)
{
   // Add the 'Stat Options' group frame to the 'Stats' tab.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsNormal, 0, 0, 5);
   fTrashListLayout->Add(layout);

   TGGroupFrame *gf = new TGGroupFrame(f, "Stat Options");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   TGVerticalFrame *v1 = new TGVerticalFrame(h);
   fTrashListFrame->AddFirst(v1);
   fOptStatName = AddCheckButton(v1, "Name", kStatOptStatName);
   fOptStatOverflow = AddCheckButton(v1, "Overflow", kStatOptStatOverflow);
   fOptStatUnderflow = AddCheckButton(v1, "Underflow", kStatOptStatUnderflow);
   fOptStatSkewness = AddCheckButton(v1, "Skewness", kStatOptStatSkewness);
   fOptStatKurtosis = AddCheckButton(v1, "Kurtosis", kStatOptStatKurtosis);
   h->AddFrame(v1, fLayoutExpandXY);
   TGVerticalFrame *v2 = new TGVerticalFrame(h);
   fTrashListFrame->AddFirst(v2);
   fOptStatEntries = AddCheckButton(v2, "Entries", kStatOptStatEntries);
   fOptStatMean = AddCheckButton(v2, "Mean", kStatOptStatMean);
   fOptStatRMS = AddCheckButton(v2, "RMS", kStatOptStatRMS);
   fOptStatIntegral = AddCheckButton(v2, "Integral", kStatOptStatIntegral);
   fOptStatErrors = AddCheckButton(v2, "Errors", kStatOptStatErrors);
   h->AddFrame(v2, fLayoutExpandXY);
   gf->AddFrame(h, fLayoutExpandX);

   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   TGHorizontalFrame *h3 = new TGHorizontalFrame(h2);
   fTrashListFrame->AddFirst(h3);
   fStatFormatLabel = new TGLabel(h3, "Paint format:");
   h3->AddFrame(fStatFormatLabel, layout);
   h2->AddFrame(h3, fLayoutExpandX);
   fStatFormat = AddTextEntry(h2, "", kStatFormat);
   gf->AddFrame(h2, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXYMargin);

   fOptStatName->SetToolTipText("Show / Hide the histogram name");
   fOptStatOverflow->SetToolTipText("Show / Hide the number of overflows");
   fOptStatUnderflow->SetToolTipText("Show / Hide the number of underflows");
   fOptStatSkewness->SetToolTipText("Show / Hide the skewness");
   fOptStatKurtosis->SetToolTipText("Show / Hide the kurtosis");
   fOptStatEntries->SetToolTipText("Show / Hide the number of entries");
   fOptStatMean->SetToolTipText("Show / Hide the mean value");
   fOptStatRMS->SetToolTipText("Show / Hide root-mean-square (RMS)");
   fOptStatIntegral->SetToolTipText("Show / Hide the integral of bins");
   fOptStatErrors->SetToolTipText("Show / Hide the errors");
   fStatFormat->SetToolTipText("Paint format of stat options");
}

//______________________________________________________________________________
void TStyleManager::AddStatsFit(TGCompositeFrame *f)
{
   // Add the 'Fit Options' group frame to the 'Stats' tab.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsNormal, 0, 0, 5);
   fTrashListLayout->Add(layout);

   TGGroupFrame *gf = new TGGroupFrame(f, "Fit Options");
   fTrashListFrame->AddFirst(gf);
   TGHorizontalFrame *h = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h);
   TGVerticalFrame *v1 = new TGVerticalFrame(h);
   fTrashListFrame->AddFirst(v1);
   fOptFitValues = AddCheckButton(v1, "Values", kStatOptFitValues);
   fOptFitProbability = AddCheckButton(v1, "Probability",
                                       kStatOptFitProbability);
   h->AddFrame(v1, fLayoutExpandXY);
   TGVerticalFrame *v2 = new TGVerticalFrame(h);
   fTrashListFrame->AddFirst(v2);
   fOptFitErrors = AddCheckButton(v2, "Errors", kStatOptFitErrors);
   fOptFitChi = AddCheckButton(v2, "Chi", kStatOptFitChi);
   h->AddFrame(v2, fLayoutExpandXY);
   gf->AddFrame(h, fLayoutExpandX);
   TGHorizontalFrame *h2 = new TGHorizontalFrame(gf);
   fTrashListFrame->AddFirst(h2);
   TGHorizontalFrame *h3 = new TGHorizontalFrame(h2);
   fTrashListFrame->AddFirst(h3);
   fFitFormatLabel = new TGLabel(h3, "Paint format:");
   h3->AddFrame(fFitFormatLabel, layout);
   h2->AddFrame(h3, fLayoutExpandX);
   fFitFormat = AddTextEntry(h2, "", kStatFitFormat);
   gf->AddFrame(h2, fLayoutExpandX);
   f->AddFrame(gf, fLayoutExpandXMargin);

   fOptFitValues->SetToolTipText("Show / Hide the parameter name and value");
   fOptFitProbability->SetToolTipText("Show / Hide probability)");
   fOptFitErrors->SetToolTipText("Show / Hide the errors");
   fOptFitChi->SetToolTipText("Show / Hide Chisquare");
   fFitFormat->SetToolTipText("Paint format of fit options");
}

//______________________________________________________________________________
void TStyleManager::CreateTabPsPdf(TGCompositeFrame *tab)
{
   // Add the tab 'PS / PDF' to the editor.

   AddPsPdfHeader(tab);
   AddPsPdfTitle(tab);
   TGHorizontalFrame *h = new TGHorizontalFrame(tab);
   fTrashListFrame->AddFirst(h);
   AddPsPdfPaperSize(h);
   TGVerticalFrame *v = new TGVerticalFrame(h);
   fTrashListFrame->AddFirst(v);
   AddPsPdfLineScale(v);
   AddPsPdfColorModel(v);
   h->AddFrame(v, fLayoutExpandXY);
   tab->AddFrame(h, fLayoutExpandX);
}

//______________________________________________________________________________
void TStyleManager::AddPsPdfHeader(TGCompositeFrame *f)
{
   // Add the 'Header' group frame to the 'PS / PDF' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Header");
   fTrashListFrame->AddFirst(gf);
   fHeaderPS = AddTextEntry(gf, "", kPSPDFHeaderPS);
   f->AddFrame(gf, fLayoutExpandXMargin);

   fHeaderPS->SetToolTipText("PostScript header");
}

//______________________________________________________________________________
void TStyleManager::AddPsPdfTitle(TGCompositeFrame *f)
{
   // Add the 'Title' group frame to the 'PS / PDF' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Title");
   fTrashListFrame->AddFirst(gf);
   fTitlePS = AddTextEntry(gf, "", kPSPDFTitlePS);
   f->AddFrame(gf, fLayoutExpandXMargin);

   fTitlePS->SetToolTipText("PostScript title");
}

//______________________________________________________________________________
void TStyleManager::AddPsPdfColorModel(TGCompositeFrame *f)
{
   // Add the 'Color Model' group frame to the 'PS / PDF' tab.

   fColorModelPS = new TGButtonGroup(f, "Color Model",
                                    kChildFrame | kHorizontalFrame | kFitWidth);

   fColorModelPS->SetLayoutManager(new TGMatrixLayout(fColorModelPS, 1, 2, 15));
   fColorModelPSRGB = new TGRadioButton(fColorModelPS, "RGB",
                                          kPSPDFColorModelPSRGB);
   fColorModelPSRGB->Associate(this);
   fColorModelPSCMYK = new TGRadioButton(fColorModelPS, "CMYK",
                                          kPSPDFColorModelPSCMYK);
   fColorModelPSCMYK->Associate(this);
   fColorModelPS->Show();
   TGLayoutHints *layout2 =
                new TGLayoutHints(kLHintsExpandX | kLHintsExpandY, 5, 5, 5, 12);
   fTrashListLayout->Add(layout2);
   f->AddFrame(fColorModelPS, layout2);
}

//______________________________________________________________________________
void TStyleManager::AddPsPdfPaperSize(TGCompositeFrame *f)
{
   // Add the 'Paper Size' group frame to the 'PS / PDF' tab.

   TGGroupFrame *gf = new TGGroupFrame(f, "Paper Size");
   fTrashListFrame->AddFirst(gf);
   fPaperSizePredef = AddPaperSizeEntry(gf, kPSPDFPaperSizePredef);
   fPaperSizeX = AddNumberEntry(gf, 0, 0, 0, kPSPDFPaperSizeX, "Width:",
                        0, 6, TGNumberFormat::kNESRealOne,
                        TGNumberFormat::kNEAPositive,
                        TGNumberFormat::kNELLimitMinMax, 1, 40);
   fPaperSizeY = AddNumberEntry(gf, 0, 0, 0, kPSPDFPaperSizeY, "Height:",
                        0, 6, TGNumberFormat::kNESRealOne,
                        TGNumberFormat::kNEAPositive,
                        TGNumberFormat::kNELLimitMinMax, 1, 40);
   f->AddFrame(gf, fLayoutExpandXMargin);

   fPaperSizeX->GetNumberEntry()->SetToolTipText("Width of the printing area");
   fPaperSizeY->GetNumberEntry()->SetToolTipText("Height of the printing area");
}

//______________________________________________________________________________
void TStyleManager::AddPsPdfLineScale(TGCompositeFrame *f)
{
   // Add the 'Line scale' number entry to the 'PS / PDF' tab.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 10, 20, 5, 5);
   fTrashListLayout->Add(layout);

   TGHorizontalFrame *gf = new TGHorizontalFrame(f);
   fTrashListFrame->AddFirst(gf);
   fLineScalePS = AddNumberEntry(gf, 0, 0, 0, kPSPDFLineScalePS, "Line scale:",
                        0, 6, TGNumberFormat::kNESRealOne,
                        TGNumberFormat::kNEAPositive,
                        TGNumberFormat::kNELLimitMinMax, 0.1, 10);
   f->AddFrame(gf, layout);

   fLineScalePS->GetNumberEntry()->SetToolTipText("Line scale factor when drawing lines on PostScript");
}

//______________________________________________________________________________
void TStyleManager::AddTitle(TGCompositeFrame *f, const char *s)
{
   // Add a title to the frame f.

   TGLayoutHints *layout1 = new TGLayoutHints(kLHintsExpandX, 5, 0, 7);
   fTrashListLayout->Add(layout1);
   TGLayoutHints *layout2 = new TGLayoutHints(kLHintsExpandX, 0, 0, 6, 6);
   fTrashListLayout->Add(layout2);

   TGHorizontalFrame *h = new TGHorizontalFrame(f);
   fTrashListFrame->AddFirst(h);

   TGLabel *lab = new TGLabel(h, s);
   fTrashListFrame->AddFirst(lab);
   h->AddFrame(lab);

   TGHorizontal3DLine *line = new TGHorizontal3DLine(h, 4, 2, kFALSE);
   fTrashListFrame->AddFirst(line);
   h->AddFrame(line, layout1);

   f->AddFrame(h, layout2);
}

//______________________________________________________________________________
TGColorSelect *TStyleManager::AddColorEntry(TGCompositeFrame *f, Int_t id)
{
   // Add a color entry to the frame f.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsBottom, 0, 5, 3, 3);
   fTrashListLayout->Add(layout);

   TGColorSelect *cs = new TGColorSelect(f, 0, id);
   cs->Associate(this);
   f->AddFrame(cs, layout);
   return cs;
}

//______________________________________________________________________________
TGedPatternSelect *TStyleManager::AddFillStyleEntry(TGCompositeFrame *f,
                                                    Int_t id)
{
   // Add a fill style entry to the frame f.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsBottom, 0, 0, 3, 3);
   fTrashListLayout->Add(layout);

   TGedPatternSelect *gps = new TGedPatternSelect(f, 0, id);
   gps->Associate(this);
   f->AddFrame(gps, layout);
   return gps;
}

//______________________________________________________________________________
TGedMarkerSelect *TStyleManager::AddMarkerStyleEntry(TGCompositeFrame *f,
                                                     Int_t id)
{
   // Add a marker style entry to the frame f.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsCenterY, 0, 5, 3, 3);
   fTrashListLayout->Add(layout);

   TGedMarkerSelect *gms = new TGedMarkerSelect(f, 0, id);
   gms->Associate(this);
   f->AddFrame(gms, layout);
   return gms;
}

//______________________________________________________________________________
TGComboBox *TStyleManager::AddMarkerSizeEntry(TGCompositeFrame *f, Int_t id)
{
   // Add a marker size entry to the frame f.

   char *a = new char[10 * sizeof(char)];
   TGComboBox *cb = new TGComboBox(f, id);
   cb->Associate(this);
   for (Int_t i = 1; i <= 15; i++) {
      sprintf(a, "%.1f", 0.2 * i);
      cb->AddEntry(a, i);
   }
   delete [] a;
   cb->Resize(1, 22);
   f->AddFrame(cb, fLayoutExpandXCenterYMargin);
   return cb;
}

//______________________________________________________________________________
TGNumberEntry *TStyleManager::AddNumberEntry(TGCompositeFrame *f, Int_t e1,
         Int_t e2, Int_t e3, Int_t id, const char *s, Double_t init, Int_t digits,
         TGNumberFormat::EStyle nfS, TGNumberFormat::EAttribute nfA,
         TGNumberFormat::ELimit nfL, Double_t min, Double_t max)
{
   // Add a number entry to the frame f. A caption can be added.

   TGHorizontalFrame *h = new TGHorizontalFrame(f);
   fTrashListFrame->AddFirst(h);
   if (strlen(s)) {
      TGLabel *lab = new TGLabel(h, s);
      fTrashListFrame->AddFirst(lab);
      TGLayoutHints *layout = new TGLayoutHints(kLHintsNormal, e1, 0, 3);
      fTrashListLayout->Add(layout);
      h->AddFrame(lab, layout);
   }
   TGNumberEntry *ne = new TGNumberEntry(h, init, digits, id,
                                         nfS, nfA, nfL, min, max);
   ne->Associate(this);
   if ((e1 == 0) && (e2 == 0) && (e3 == 0)) {
      TGLayoutHints *layout1 = new TGLayoutHints(kLHintsRight);
      fTrashListLayout->Add(layout1);
      h->AddFrame(ne, layout1);
   } else {
      TGLayoutHints *layout2 = new TGLayoutHints(kLHintsNormal, e2, e3);
      fTrashListLayout->Add(layout2);
      h->AddFrame(ne, layout2);
   }
   if (strlen(s)) {
      TGLayoutHints *layout3 =
                 new TGLayoutHints(kLHintsExpandX | kLHintsCenterY, 0, 2, 3, 3);
      fTrashListLayout->Add(layout3);
      f->AddFrame(h, layout3);
   } else {
      TGLayoutHints *layout4 =
                 new TGLayoutHints(kLHintsNormal | kLHintsCenterY, 0, 2, 3, 3);
      fTrashListLayout->Add(layout4);
      f->AddFrame(h, layout4);
   }
   return ne;
}

//______________________________________________________________________________
TGLineWidthComboBox *TStyleManager::AddLineWidthEntry(TGCompositeFrame *f,
                                                      Int_t id)
{
   // Add a line width entry to the frame f.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 0, 0, 3, 3);
   fTrashListLayout->Add(layout);

   TGHorizontalFrame *h = new TGHorizontalFrame(f);
   fTrashListFrame->AddFirst(h);
   TGLineWidthComboBox *lwcb = new TGLineWidthComboBox(h, id);
   lwcb->Associate(this);
   lwcb->Resize(1, 22);
   h->AddFrame(lwcb, fLayoutExpandX);
   f->AddFrame(h, layout);
   return lwcb;
}

//______________________________________________________________________________
TGLineStyleComboBox *TStyleManager::AddLineStyleEntry(TGCompositeFrame *f,
                                                      Int_t id)
{
   // Add a line style entry to the frame f.

   TGLineStyleComboBox *lscb = new TGLineStyleComboBox(f, id);
   lscb->Associate(this);
   lscb->Resize(1, 22);
   f->AddFrame(lscb, fLayoutExpandXCenterYMargin);
   return lscb;
}

//______________________________________________________________________________
TGTextButton *TStyleManager::AddTextButton(TGCompositeFrame *f,
                                           const char *s, Int_t id)
{
   // Add a text button to the frame f.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsExpandX, 0, 0, 3, 3);
   fTrashListLayout->Add(layout);

   TGTextButton *tb = new TGTextButton(f, s, id);
   tb->Associate(this);
   f->AddFrame(tb, layout);
   return tb;
}

//______________________________________________________________________________
TGFontTypeComboBox *TStyleManager::AddFontTypeEntry(TGCompositeFrame *f,
                                                    Int_t id)
{
   // Add a font type combo box to the frame f.

   TGFontTypeComboBox *ftcb = new TGFontTypeComboBox(f, id);
   ftcb->Associate(this);
   ftcb->Resize(1, 22);
   f->AddFrame(ftcb, fLayoutExpandXCenterYMargin);
   return ftcb;
}

//______________________________________________________________________________
TGComboBox *TStyleManager::AddTextAlignEntry(TGCompositeFrame *f, Int_t id)
{
   // Add a text align combo box to the frame f.

   TGComboBox *cb = new TGComboBox(f, id);
   cb->Associate(this);
   cb->AddEntry("11 Bottom, Left",   11);
   cb->AddEntry("21 Bottom, Middle", 21);
   cb->AddEntry("31 Bottom, Right",  31);
   cb->AddEntry("12 Middle, Left",   12);
   cb->AddEntry("22 Middle, Middle", 22);
   cb->AddEntry("32 Middle, Right",  32);
   cb->AddEntry("13 Top, Left",      13);
   cb->AddEntry("23 Top, Middle",    23);
   cb->AddEntry("33 Top, Right",     33);
   cb->Resize(1, 22);
   f->AddFrame(cb, fLayoutExpandXCenterYMargin);
   return cb;
}

//______________________________________________________________________________
TGButtonGroup *TStyleManager::AddBorderModeEntry(TGCompositeFrame *f,
                                                Int_t id1, Int_t id2, Int_t id3)
{
   // Add a border mode button group to the frame f.

   TGButtonGroup *bg = new TGButtonGroup(f, "Border");
   TGRadioButton *sunk = new TGRadioButton(bg, "Sunken", id1);
   sunk->Associate(this);
   fTrashListFrame->AddFirst(sunk);
   TGRadioButton *none = new TGRadioButton(bg, "None"  , id2);
   none->Associate(this);
   fTrashListFrame->AddFirst(none);
   TGRadioButton *rais = new TGRadioButton(bg, "Raised", id3);
   rais->Associate(this);
   fTrashListFrame->AddFirst(rais);
   bg->Show();
   f->AddFrame(bg, fLayoutExpandXYMargin);
   return bg;
}

//______________________________________________________________________________
TGComboBox *TStyleManager::AddDateFormatEntry(TGCompositeFrame *f, Int_t id)
{
   // Add a date format combo box to the frame f.

   TGComboBox *cb = new TGComboBox(f, id);
   cb->Associate(this);
   cb->AddEntry("Wed Sep 25 17:10:35 2002", 1);
   cb->AddEntry("2002-09-25",               2);
   cb->AddEntry("2002-09-25 17:10:35",      3);
   cb->Resize(1, 22);
   cb->GetListBox()->Resize(cb->GetListBox()->GetDefaultSize().fWidth, 55);
   f->AddFrame(cb, fLayoutExpandXCenterYMargin);
   return cb;
}

//______________________________________________________________________________
TGCheckButton *TStyleManager::AddCheckButton(TGCompositeFrame *f, const char *s,
                                             Int_t id, Int_t e1, Int_t e2)
{
   // Add a check button to the frame f.

   TGLayoutHints *layout = new TGLayoutHints(kLHintsNormal, 0, e1, 4, e2);
   fTrashListLayout->Add(layout);

   TGHorizontalFrame *h = new TGHorizontalFrame(f);
   fTrashListFrame->AddFirst(h);
   TGCheckButton *cb = new TGCheckButton(h, s, id);
   cb->Associate(this);
   h->AddFrame(cb, layout);
   f->AddFrame(h);
   return cb;
}

//______________________________________________________________________________
TGTextEntry *TStyleManager::AddTextEntry(TGCompositeFrame *f,
                                         const char *s, Int_t id)
{
   // Add a text entry to the frame f. A caption can be added.

   TGHorizontalFrame *h = new TGHorizontalFrame(f);
   fTrashListFrame->AddFirst(h);
   if (strlen(s)) {
      TGLabel *lab = new TGLabel(h, s);
      fTrashListFrame->AddFirst(lab);
      TGLayoutHints *layout1 = new TGLayoutHints(kLHintsNormal, 0, 0, 3);
      fTrashListLayout->Add(layout1);
      h->AddFrame(lab, layout1);
   }
   TGTextEntry *te = new TGTextEntry(h, "", id);
   te->Associate(this);
   te->Resize(57, 22);
   if (strlen(s)) {
      TGLayoutHints *layout2 = new TGLayoutHints(kLHintsRight, 20);
      fTrashListLayout->Add(layout2);
      h->AddFrame(te, layout2);
   } else
      h->AddFrame(te, fLayoutExpandX);
   TGLayoutHints *layout3 =
                 new TGLayoutHints(kLHintsExpandX | kLHintsCenterY, 0, 2, 3, 3);
   fTrashListLayout->Add(layout3);
   f->AddFrame(h, layout3);
   return te;
}

//______________________________________________________________________________
TGComboBox *TStyleManager::AddPaperSizeEntry(TGCompositeFrame *f, Int_t id)
{
   // Add a prefered paper size combo box to the frame f.

   TGComboBox *cb = new TGComboBox(f, id);
   cb->Associate(this);
   cb->AddEntry("Custom size (cm)",   1);
   cb->AddEntry("Custom size (inch)", 2);
   cb->AddEntry("A4 (cm)",            3);
   cb->AddEntry("US Letter (inch)",   4);
   cb->AddEntry("US Letter (cm)",   4);
   cb->Resize(1, 22);
   cb->GetListBox()->Resize(cb->GetListBox()->GetDefaultSize().fWidth, 70);
   f->AddFrame(cb, fLayoutExpandXCenterYMargin);
   return cb;
}

//______________________________________________________________________________
void TStyleManager::DoMenu(Int_t menuID)
{
   // Slot called when an item of the menu is selected.

   switch (menuID) {
      case kMenuNew:          DoNew();              break;
      case kMenuDelete:       DoDelete();           break;
      case kMenuRename:       DoRename();           break;
      case kMenuImportCanvas: DoImportCanvas();     break;
      case kMenuImportMacro:  DoImportMacro(kTRUE); break;
      case kMenuExport:       DoExport();           break;
      case kMenuExit:         DoExit();             break;
      case kMenuHelp:         DoHelp(42);           break;
      case kMenuHelpEditor:   DoHelp(fCurTabNum);   break;
      case kMenuHelpGeneral:  DoHelp(0);            break;
      case kMenuHelpCanvas:   DoHelp(1);            break;
      case kMenuHelpPad:      DoHelp(2);            break;
      case kMenuHelpHistos:   DoHelp(3);            break;
      case kMenuHelpAxis:     DoHelp(4);            break;
      case kMenuHelpTitle:    DoHelp(5);            break;
      case kMenuHelpStats:    DoHelp(6);            break;
      case kMenuHelpPSPDF:    DoHelp(7);            break;
   }
}

//______________________________________________________________________________
void TStyleManager::DoImportMacro(Bool_t create)
{
   // Slot called to import a style from a C++ macro file. If create=kTRUE,
   // a new style is created. Otherwise, the current style is reseted.

   // Import a style from a macro.
   // If create = kTRUE, a new style is created.
   // Otherwise, the selected style is:
   //             - reseted with the macro's values.
   //             - recreated (if it is one of the 5 basic styles).

   if ((!create) && (!strcmp(fCurSelStyle->GetName(), "Default"))) {
      if ((!strcmp(fCurSelStyle->GetName(),gStyle->GetName()))) 
         gStyle->Reset("Default");
      else {
         delete gROOT->GetStyle("Default");
         new TStyle("Default", "Default Style");
      }
   } else if ((!create) && (!strcmp(fCurSelStyle->GetName(), "Plain"))) {
      if ((!strcmp(fCurSelStyle->GetName(),gStyle->GetName()))) 
         gStyle->Reset("Plain");
      else {
         delete gROOT->GetStyle("Plain");
         new TStyle("Plain",   "Plain Style (no colors/fill areas)");
      }
   } else if ((!create) && (!strcmp(fCurSelStyle->GetName(), "Bold"))) {
      if ((!strcmp(fCurSelStyle->GetName(),gStyle->GetName()))) 
         gStyle->Reset("Bold");
      else {
         delete gROOT->GetStyle("Bold");
         new TStyle("Bold",    "Bold Style");
      }
   } else if ((!create) && (!strcmp(fCurSelStyle->GetName(), "Video"))) {
      if ((!strcmp(fCurSelStyle->GetName(),gStyle->GetName()))) 
         gStyle->Reset("Video");
      else {
         delete gROOT->GetStyle("Video");
         new TStyle("Video",   "Style for video presentation histograms");
      }
   } else if ((!create) && (!strcmp(fCurSelStyle->GetName(), "Pub"))) {
      if ((!strcmp(fCurSelStyle->GetName(),gStyle->GetName()))) 
         gStyle->Reset("Pub");
      else {
         delete gROOT->GetStyle("Pub");
         new TStyle("Pub",     "Style for Publications");
      }
   } else {
      CreateMacro();
      if (!create) {
         char* newName = new char[(10 + strlen(fCurSelStyle->GetName())) * sizeof(char)];
         sprintf(newName, "Style_%s.C", fCurSelStyle->GetName());
         fCurMacro->fFilename = StrDup(newName);
         delete [] newName;
      }
      new TGFileDialog(gClient->GetRoot(), this, kFDOpen, fCurMacro);
      if (fCurMacro->fFilename != 0) {
         gROOT->ProcessLine(Form(".x %s", fCurMacro->fFilename));
         fCurMacro->fFilename = StrDup(gSystem->BaseName(fCurMacro->fFilename));
      }
   }

   BuildList();
}

//______________________________________________________________________________
void TStyleManager::DoListSelect()
{
   //  Slot called when the user select an item in the available styles' list.
   // Update the preview, the editor, the status bar. The current selected
   // style is changed.

   // Select the new style and update the state of the style manager.
   fCurSelStyle = gROOT->GetStyle(((TGTextLBEntry*) fListComboBox->
                                    GetSelectedEntry())->GetText()->GetString());

   fStyleChanged = kFALSE;

   // Update the status bar.
   UpdateStatusBar();

   // Update the editor (if opened).
   if (fMoreAndNotLess) {
      DisconnectEditor(fCurTabNum);
      UpdateEditor(fCurTabNum);
      ConnectEditor(fCurTabNum);
   }

   // Update the preview, if it exists and is visible.
   if (fPreviewWindow && fPreviewWindow->IsMapped())
      DoEditionUpdatePreview();

   // Refresh the tooltip of the fMakeDefault's button.
   Int_t length = strlen(fCurSelStyle->GetName());
   char *newTip = new char[(25 + length) * sizeof(char)];
   sprintf(newTip, "'%s'", fCurSelStyle->GetName());
   sprintf(newTip + length + 2, " become current style");
   fMakeDefault->SetToolTipText(newTip);
   delete [] newTip;

   // Refresh.
   fListComboBox->MapSubwindows();
   fListComboBox->Layout();
}

//______________________________________________________________________________
void TStyleManager::DoRealTime(Bool_t b)
{
   //  Slot called when the user click on the run time update check button.
   // If b=kTRUE, the user asks for a real time preview.

   if (b) {
      fEditionUpdatePreview->SetEnabled(kFALSE);
      fRealTimePreview = kTRUE;
      DoEditionUpdatePreview();
   } else {
      fEditionUpdatePreview->SetEnabled(kTRUE);
      fRealTimePreview = kFALSE;
   }
}

//______________________________________________________________________________
void TStyleManager::DoPreview(Bool_t b)
{
   //  Slot called when the user click on the preview check button. If b=kTRUE,
   // the user asks for a preview, otherwise he wants to close it.

   if (b) {
      fPreviewButton->SetState(kButtonDown, kFALSE);
      if (fPreviewWindow) {
         DoEditionUpdatePreview();
         fPreviewWindow->MapTheWindow();
      } else {
         if (fCurPad && fCurObj) {
            TQObject::Disconnect("TCanvas", "Closed()");
            fPreviewWindow = new TStylePreview(GetMainFrame(), fCurSelStyle, fCurPad);
            TQObject::Connect("TCanvas", "Closed()", "TStyleManager", this, "DoSelectNoCanvas()");
         }
      }
      fPreviewWindow->Connect("CloseWindow()", "TStyleManager", this, "DoPreviewClosed()");
      fPreviewRealTime->SetEnabled(kTRUE);
      if (fRealTimePreview) {
         fPreviewRealTime->SetState(kButtonDown, kFALSE);
         fEditionUpdatePreview->SetEnabled(kFALSE);
      } else {
         fPreviewRealTime->SetState(kButtonUp, kFALSE);
         fEditionUpdatePreview->SetEnabled(kTRUE);
      }
   } else DoPreviewClosed();
}

//______________________________________________________________________________
void TStyleManager::DoPreviewClosed()
{
   //  Slot called to close the preview, via the preview check button, or
   // when the preview window is closed via the window manager.

   fPreviewWindow->Disconnect("CloseWindow()");
   fPreviewButton->SetState(kButtonUp, kFALSE);
   fPreviewRealTime->SetEnabled(kFALSE);
   fEditionUpdatePreview->SetEnabled(kFALSE);
   fPreviewWindow->UnmapWindow();
}

//______________________________________________________________________________
void TStyleManager::DoMakeDefault()
{
   //  Slot called to make the current selected style (in the ComboBox)
   // become gStyle.

   gROOT->SetStyle(fCurSelStyle->GetName());
   fCurStyle->SetText(gStyle->GetName());
}

//______________________________________________________________________________
void TStyleManager::DoApplyOnSelect(Int_t i)
{
   //  Slot called to choose on which object(s) the 'Apply' button will
   // have an effect.

   fAllAndNotCurrent = (i == kTopApplyOnAll);
}

//______________________________________________________________________________
void TStyleManager::DoApplyOn()
{
   //  Slot called when the user clicks on the 'Apply' button. Apply the
   // current selected style to the specified object(s)

   TStyle *tmp = gStyle;
   gStyle = fCurSelStyle;

   if (fAllAndNotCurrent) {
      // Apply on all canvases, excluding the preview.
      TCanvas *tmpCanvas = (TCanvas *) (gROOT->GetListOfCanvases()->First());
      while (tmpCanvas) {
         if ((!fPreviewWindow) || (tmpCanvas != fPreviewWindow->GetMainCanvas())) {
            tmpCanvas->UseCurrentStyle();
            tmpCanvas->Modified();
            tmpCanvas->Update();
         }
         tmpCanvas = (TCanvas *) (gROOT->GetListOfCanvases()->After(tmpCanvas));
      }
   } else
      if (fCurPad && fCurObj) {
         // Apply on selected object and refresh all canvases containing the object.
         fCurObj->UseCurrentStyle();
         TCanvas *tmpCanvas = (TCanvas *) (gROOT->GetListOfCanvases()->First());
         while (tmpCanvas) {
            if (((!fPreviewWindow) || (tmpCanvas != fPreviewWindow->GetMainCanvas()))
             && ((tmpCanvas == fCurObj) || tmpCanvas->FindObject(fCurObj))) {
               tmpCanvas->Modified();
               tmpCanvas->Update();
            }
            tmpCanvas = (TCanvas *) (gROOT->GetListOfCanvases()->After(tmpCanvas));
         }
      }

   gStyle = tmp;
}

//______________________________________________________________________________
void TStyleManager::DoMoreLess()
{
   //  Slot called when the user try to show or hide the editor part of the
   // style manager.

   fMoreAndNotLess = !fMoreAndNotLess;
   if (fMoreAndNotLess) {
      // Redraw the tabs.
      SetWMSizeHints(fSMWidth, fSMHeight, fSMWidth, fSMHeight, 0, 0);
      fEditionFrame->ShowFrame(fEditionTab);
      fEditionFrame->ShowFrame(fEditionButtonFrame);
      fMoreLess->SetText("&Close <<");
      Resize(fSMWidth, fSMHeight);

      // Update Editor's values.
      DisconnectEditor(fCurTabNum);
      UpdateEditor(fCurTabNum);
      ConnectEditor(fCurTabNum);
      fMoreLess->SetToolTipText("Close the editor");
   } else {
      // Hide the tabs.
      SetWMSizeHints(fSMWidth, 319, fSMWidth, 319, 0, 0);
      fEditionFrame->HideFrame(fEditionTab);
      fEditionFrame->HideFrame(fEditionButtonFrame);
      fMoreLess->SetText("&Edit >>");
      Resize(fSMWidth, 317);
      fMoreLess->SetToolTipText("Open the editor");
   }
}

//______________________________________________________________________________
void TStyleManager::DoEditionUpdatePreview()
{
   // Slot called when the user clicks on the 'Update preview' button.

   if ((!fCurPad) || (!fCurObj)) return;

   if (fPreviewWindow) {
      TQObject::Disconnect("TCanvas", "Closed()");
      fPreviewWindow->Update(fCurSelStyle, fCurPad);
      TQObject::Connect("TCanvas", "Closed()", "TStyleManager", this, "DoSelectNoCanvas()");
   }
}

//______________________________________________________________________________
void TStyleManager::DoChangeTab(Int_t i)
{
   // Slot called when the user changes the current tab.

   //  Disconnect the signal/slots communication mechanism from the previous
   // tab and connect them onto the new one.
   DisconnectEditor(fCurTabNum);
   fCurTabNum = i;
   UpdateEditor(fCurTabNum);
   ConnectEditor(fCurTabNum);
}

//______________________________________________________________________________
void TStyleManager::DoChangeAxisTab(Int_t i)
{
   // Slot called when the user changes the current axis tab.

   fCurTabAxisNum = i;
}

//______________________________________________________________________________
void TStyleManager::DoSelectNoCanvas()
{
   //  Slot called when the user close a TCanvas. Update the labels and the
   // pointers to the current pad and the current object.

   fCurPad = 0;
   fCurObj = 0;

   if (fPreviewWindow && fPreviewWindow->IsMapped())
      DoPreview(kFALSE);

   fCurPadTextEntry->SetText("No pad selected");
   fCurObjTextEntry->SetText("No object selected");
   fImportCascade->DisableEntry(kMenuImportCanvas);
   fApplyOnButton->SetEnabled(kFALSE);
   fToolBarImportCanvas->SetEnabled(kFALSE);
   fPreviewButton->SetEnabled(kFALSE);
   fPreviewRealTime->SetEnabled(kFALSE);
   fEditionUpdatePreview->SetEnabled(kFALSE);
}

//______________________________________________________________________________
void TStyleManager::DoSelectCanvas(TVirtualPad *pad, TObject *obj, Int_t mouseButton)
{
   //  Slot called when the user clicks on a TCanvas or on any object inside
   // a TCanvas. Update the pointers to the current pad and the current object.

   if (mouseButton != kButton2Down) return;

   if (!pad || !obj) {
      DoSelectNoCanvas();
      return;
   }

   // Disable the selection of the preview.
   if (fPreviewWindow && (pad->GetCanvas() == fPreviewWindow->GetMainCanvas()))
      return;

   // Did the user select the same canvas as before ?
   Bool_t samePad = (fCurPad && (pad->GetCanvas() == fCurPad->GetCanvas()));

   fCurPad = pad;
   fCurObj = obj;
   Bool_t preview = (fPreviewWindow && fPreviewWindow->IsMapped());

   if ((!samePad) && preview) DoPreview(kFALSE);

   // Update the informations' label about the selected objects.
   TString sPad;
   if (strlen(fCurPad->GetName())) sPad.Append(fCurPad->GetName());
                              else sPad.Append("[no name]");
   sPad.Append(" - '");
   if (strlen(fCurPad->GetTitle())) 
      sPad.Append(fCurPad->GetTitle());
   else 
      sPad.Append("[no title]");
   sPad.Append("'::");
   sPad.Append(fCurPad->ClassName());
   fCurPadTextEntry->SetText(sPad);
   TString sObj;
   if (strlen(fCurObj->GetName())) 
      sObj.Append(fCurObj->GetName());
   else 
      sObj.Append("[no name]");
   sObj.Append("::");
   sObj.Append(fCurObj->ClassName());
   fCurObjTextEntry->SetText(sObj);

   if (!samePad) {
      fImportCascade->EnableEntry(kMenuImportCanvas);
      fApplyOnButton->SetEnabled(kTRUE);
      fToolBarImportCanvas->SetEnabled(kTRUE);
      if (preview) {
         DoPreview(kTRUE);
      } else {
         fPreviewButton->SetEnabled(kTRUE);
         fPreviewRealTime->SetEnabled(kFALSE);
         fEditionUpdatePreview->SetEnabled(kFALSE);
      }
   }
}

//______________________________________________________________________________
void TStyleManager::CloseWindow()
{
   // Slot called to close the style manager via the window manager.

   Hide();
}

//______________________________________________________________________________
void TStyleManager::ModFillColor()
{
   // Slot called whenever the fill color is modified by the user.

   fCurSelStyle->SetFillColor(TColor::GetColor(fFillColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFillStyle()
{
   // Slot called whenever the fill style is modified by the user.

   fCurSelStyle->SetFillStyle(fFillStyle->GetPattern());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModHatchesLineWidth()
{
   // Slot called whenever the hatches line width is modified by the user.

   fCurSelStyle->SetHatchesLineWidth(fHatchesLineWidth->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModHatchesSpacing()
{
   // Slot called whenever the hatches spacing is modified by the user.

   fCurSelStyle->SetHatchesSpacing(fHatchesSpacing->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModMarkerColor()
{
   // Slot called whenever the marker color is modified by the user.

   fCurSelStyle->SetMarkerColor(TColor::GetColor(fMarkerColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModMarkerStyle()
{
   // Slot called whenever the marker style is modified by the user.

   fCurSelStyle->SetMarkerStyle(fMarkerStyle->GetMarkerStyle());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModMarkerSize()
{
   // Slot called whenever the marker size is modified by the user.

   fCurSelStyle->SetMarkerSize(fMarkerSize->GetSelected() * 0.2);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModScreenFactor()
{
   // Slot called whenever the screen factor is modified by the user.

   fCurSelStyle->SetScreenFactor(fScreenFactor->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModLineColor()
{
   // Slot called whenever the line color is modified by the user.

   fCurSelStyle->SetLineColor(TColor::GetColor(fLineColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModLineWidth()
{
   // Slot called whenever the line width is modified by the user.

   fCurSelStyle->SetLineWidth(fLineWidth->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModLineStyle()
{
   // Slot called whenever the line style is modified by the user.

   fCurSelStyle->SetLineStyle(fLineStyle->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModLineStyleEdit()
{
   // Slot called whenever the line style editor is opened by the user.

   // TODO Open a LineStyle editor
}

//______________________________________________________________________________
void TStyleManager::ModTextColor()
{
   // Slot called whenever the text color is modified by the user.

   fCurSelStyle->SetTextColor(TColor::GetColor(fTextColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTextSize()
{
   // Slot called whenever the text size is modified by the user.

   fCurSelStyle->SetTextSize(fTextSize->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTextSizeInPixels(Bool_t b)
{
   // Slot called whenever the text size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetTextFont() / 10;
   Int_t mod = fCurSelStyle->GetTextFont() % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);
   if (b) {
      fCurSelStyle->SetTextFont(tmp * 10 + 3);
      fTextSize->SetFormat(TGNumberFormat::kNESInteger,
                           TGNumberFormat::kNEAPositive);
      fTextSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->SetTextSize(fCurSelStyle->GetTextSize() * h);
   } else {
      fCurSelStyle->SetTextFont(tmp * 10 + 2);
      fTextSize->SetFormat(TGNumberFormat::kNESRealThree,
                           TGNumberFormat::kNEAPositive);
      fTextSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, 1);
      if (mod == 3)
         fCurSelStyle->SetTextSize(fCurSelStyle->GetTextSize() / h);
   }
   fTextSize->SetNumber(fCurSelStyle->GetTextSize());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTextFont()
{
   // Slot called whenever the text font is modified by the user.

   Int_t tmp = fCurSelStyle->GetTextFont() % 10;
   fCurSelStyle->SetTextFont(fTextFont->GetSelected() * 10 + tmp);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTextAlign()
{
   // Slot called whenever the text align is modified by the user.

   fCurSelStyle->SetTextAlign(fTextAlign->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTextAngle()
{
   // Slot called whenever the text angle is modified by the user.

   fCurSelStyle->SetTextAngle(fTextAngle->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModCanvasColor()
{
   // Slot called whenever the canvas color is modified by the user.

   fCurSelStyle->SetCanvasColor(TColor::GetColor(fCanvasColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModCanvasDefX()
{
   // Slot called whenever the canvas default abscissa is modified by the user.

   fCurSelStyle->SetCanvasDefX(fCanvasDefX->GetIntNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModCanvasDefY()
{
   // Slot called whenever the canvas default ordinate is modified by the user.

   fCurSelStyle->SetCanvasDefY(fCanvasDefY->GetIntNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModCanvasDefW()
{
   // Slot called whenever the canvas default width is modified by the user.

   fCurSelStyle->SetCanvasDefW(fCanvasDefW->GetIntNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModCanvasDefH()
{
   // Slot called whenever the canvas default height is modified by the user.

   fCurSelStyle->SetCanvasDefH(fCanvasDefH->GetIntNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModCanvasBorderMode()
{
   // Slot called whenever the canvas border mode is modified by the user.

   Int_t i = kCanvasBorderModeSunken;
   while (!fCanvasBorderMode->Find(i)->IsDown()) 
      i++;
   fCurSelStyle->SetCanvasBorderMode(i - 1 - kCanvasBorderModeSunken);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModCanvasBorderSize()
{
   // Slot called whenever the canvas border size is modified by the user.

   fCurSelStyle->SetCanvasBorderSize(fCanvasBorderSize->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModOptDateBool()
{
   // Slot called whenever the OptDate boolean is modified by the user.

   if (fOptDateBool->IsDown()) 
      fCurSelStyle->SetOptDate(4);
   else 
      fCurSelStyle->SetOptDate(0);
   DisconnectEditor(fCurTabNum);
   UpdateEditor(fCurTabNum);
   ConnectEditor(fCurTabNum);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModAttDateTextColor()
{
   // Slot called whenever the date text color is modified by the user.

   // To modify this entry, the user must have check 'Show'
   fCurSelStyle->GetAttDate()->SetTextColor(TColor::GetColor(fAttDateTextColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModAttDateTextSize()
{
   // Slot called whenever the date text size is modified by the user.

   fCurSelStyle->GetAttDate()->SetTextSize(fAttDateTextSize->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModAttDateTextSizeInPixels(Bool_t b)
{
   // Slot called whenever the date text size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetAttDate()->GetTextFont() / 10;
   Int_t mod = fCurSelStyle->GetAttDate()->GetTextFont() % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);

   if (b) {
      fCurSelStyle->GetAttDate()->SetTextFont(tmp * 10 + 3);
      fAttDateTextSize->SetFormat(TGNumberFormat::kNESInteger,
                           TGNumberFormat::kNEAPositive);
      fAttDateTextSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->GetAttDate()->SetTextSize(fCurSelStyle->GetAttDate()->GetTextSize() * h);
   } else {
      fCurSelStyle->GetAttDate()->SetTextFont(tmp * 10 + 2);
      fAttDateTextSize->SetFormat(TGNumberFormat::kNESRealThree,
                           TGNumberFormat::kNEAPositive);
      fAttDateTextSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, 1);
      if (mod == 3)
         fCurSelStyle->GetAttDate()->SetTextSize(fCurSelStyle->GetAttDate()->GetTextSize() / h);
   }
   fAttDateTextSize->SetNumber(fCurSelStyle->GetAttDate()->GetTextSize());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModOptDateFormat()
{
   // Slot called whenever the date text format is modified by the user.

   Int_t formatPrec = fCurSelStyle->GetOptDate() % 10;
   fCurSelStyle->SetOptDate((fOptDateFormat->GetSelected() - 1) * 10
                              + formatPrec);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModAttDateTextFont()
{
   // Slot called whenever the date text font is modified by the user.

   Int_t fontPrec = fCurSelStyle->GetAttDate()->GetTextFont() % 10;
   fCurSelStyle->GetAttDate()->SetTextFont(fAttDateTextFont->GetSelected() * 10
                                          + fontPrec);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModAttDateTextAlign()
{
   // Slot called whenever the date text align is modified by the user.

   fCurSelStyle->GetAttDate()->SetTextAlign(fAttDateTextAlign->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModAttDateTextAngle()
{
   // Slot called whenever the date text angle is modified by the user.

   fCurSelStyle->GetAttDate()->SetTextAngle(fAttDateTextAngle->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModDateX()
{
   // Slot called whenever the date abscissa is modified by the user.

   fCurSelStyle->SetDateX(fDateX->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModDateY()
{
   // Slot called whenever the date ordinate is modified by the user.

   fCurSelStyle->SetDateY(fDateY->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadLeftMargin()
{
   // Slot called whenever the pad left margin is modified by the user.

   fCurSelStyle->SetPadLeftMargin(fPadLeftMargin->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadRightMargin()
{
   // Slot called whenever the pad right margin is modified by the user.

   fCurSelStyle->SetPadRightMargin(fPadRightMargin->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadTopMargin()
{
   // Slot called whenever the pad top margin is modified by the user.

   fCurSelStyle->SetPadTopMargin(fPadTopMargin->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadBottomMargin()
{
   // Slot called whenever the pad bottom margin is modified by the user.

   fCurSelStyle->SetPadBottomMargin(fPadBottomMargin->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadBorderMode()
{
   // Slot called whenever the pad border mode is modified by the user.

   Int_t i = kPadBorderModeSunken;
   while (!fPadBorderMode->Find(i)->IsDown()) 
      i++;
   fCurSelStyle->SetPadBorderMode(i - 1 - kPadBorderModeSunken);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadBorderSize()
{
   // Slot called whenever the pad border size is modified by the user.

   fCurSelStyle->SetPadBorderSize(fPadBorderSize->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadColor()
{
   // Slot called whenever the pad color is modified by the user.

   fCurSelStyle->SetPadColor(TColor::GetColor(fPadColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadTickX()
{
   // Slot called whenever the pad tick X boolean is modified by the user.

   fCurSelStyle->SetPadTickX(fPadTickX->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadTickY()
{
   // Slot called whenever the pad tick Y boolean is modified by the user.

   fCurSelStyle->SetPadTickY(fPadTickY->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadGridX()
{
   // Slot called whenever the pad grid X boolean is modified by the user.

   fCurSelStyle->SetPadGridX(fPadGridX->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPadGridY()
{
   // Slot called whenever the pad grid Y boolean is modified by the user.

   fCurSelStyle->SetPadGridY(fPadGridY->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModGridColor()
{
   // Slot called whenever the grid line color is modified by the user.

   fCurSelStyle->SetGridColor(TColor::GetColor(fGridColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModGridWidth()
{
   // Slot called whenever the grid line width is modified by the user.

   fCurSelStyle->SetGridWidth(fGridWidth->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModGridStyle()
{
   // Slot called whenever the grid line style is modified by the user.

   fCurSelStyle->SetGridStyle(fGridStyle->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModHistFillColor()
{
   // Slot called whenever the histos fill color is modified by the user.

   fCurSelStyle->SetHistFillColor(TColor::GetColor(fHistFillColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModHistFillStyle()
{
   // Slot called whenever the histos fill style is modified by the user.

   fCurSelStyle->SetHistFillStyle(fHistFillStyle->GetPattern());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModHistLineColor()
{
   // Slot called whenever the histos line color is modified by the user.

   fCurSelStyle->SetHistLineColor(TColor::GetColor(fHistLineColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModHistLineWidth()
{
   // Slot called whenever the histos line width is modified by the user.

   fCurSelStyle->SetHistLineWidth(fHistLineWidth->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModHistLineStyle()
{
   // Slot called whenever the histos line style is modified by the user.

   fCurSelStyle->SetHistLineStyle(fHistLineStyle->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModBarWidth()
{
   // Slot called whenever the histos bar width is modified by the user.

   fCurSelStyle->SetBarWidth(fBarWidth->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModBarOffset()
{
   // Slot called whenever the histos bar offset is modified by the user.

   fCurSelStyle->SetBarOffset(fBarOffset->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModHistMinimumZero()
{
   //  Slot called whenever the histos minimum zero boolean is modified
   // by the user.

   fCurSelStyle->SetHistMinimumZero(fHistMinimumZero->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPaintTextFormat()
{
   // Slot called whenever the paint text format is modified by the user.

   fCurSelStyle->SetPaintTextFormat(fPaintTextFormat->GetText());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModNumberContours()
{
   // Slot called whenever the number of contours is modified by the user.

   fCurSelStyle->SetNumberContours(fNumberContours->GetIntNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModLegoInnerR()
{
   // Slot called whenever the lego inner radius is modified by the user.

   fCurSelStyle->SetLegoInnerR(fLegoInnerR->GetIntNumber() *0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFrameFillColor()
{
   // Slot called whenever the frame fill color is modified by the user.

   fCurSelStyle->SetFrameFillColor(TColor::GetColor(fFrameFillColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFrameFillStyle()
{
   // Slot called whenever the frame fill style is modified by the user.

   fCurSelStyle->SetFrameFillStyle(fFrameFillStyle->GetPattern());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFrameLineColor()
{
   // Slot called whenever the frame line color is modified by the user.

   fCurSelStyle->SetFrameLineColor(TColor::GetColor(fFrameLineColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFrameLineWidth()
{
   // Slot called whenever the frame line width is modified by the user.

   fCurSelStyle->SetFrameLineWidth(fFrameLineWidth->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFrameLineStyle()
{
   // Slot called whenever the frame line style is modified by the user.

   fCurSelStyle->SetFrameLineStyle(fFrameLineStyle->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPaletteEdit()
{
   // Slot called whenever the palette editor is opened by the user.

   // TODO Open a palette editor
}

//______________________________________________________________________________
void TStyleManager::ModFrameBorderMode()
{
   // Slot called whenever the frame border mode is modified by the user.

   Int_t i = kFrameBorderModeSunken;
   while (!fFrameBorderMode->Find(i)->IsDown()) 
      i++;
   fCurSelStyle->SetFrameBorderMode(i - 1 - kFrameBorderModeSunken);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFrameBorderSize()
{
   // Slot called whenever the frame border size is modified by the user.

   fCurSelStyle->SetFrameBorderSize(fFrameBorderSize->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFuncColor()
{
   // Slot called whenever the function line color is modified by the user.

   fCurSelStyle->SetFuncColor(TColor::GetColor(fFuncColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFuncWidth()
{
   // Slot called whenever the function line width is modified by the user.

   fCurSelStyle->SetFuncWidth(fFuncWidth->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFuncStyle()
{
   // Slot called whenever the function line style is modified by the user.

   fCurSelStyle->SetFuncStyle(fFuncStyle->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModDrawBorder()
{
   // Slot called whenever the draw border boolean is modified by the user.

   fCurSelStyle->SetDrawBorder(fDrawBorder->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModEndErrorSize()
{
   // Slot called whenever the end error size is modified by the user.

   fCurSelStyle->SetEndErrorSize(fEndErrorSize->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModErrorX()
{
   // Slot called whenever the error along X is modified by the user.

   fCurSelStyle->SetErrorX(fErrorX->GetIntNumber() * 0.001);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTimeOffset()
{
   // Slot called whenever the time offset is modified by the user.

   Double_t offset = 0;
   Int_t year  =  ((Int_t) fTimeOffsetDate->GetNumber())/10000;
   Int_t month = (((Int_t) fTimeOffsetDate->GetNumber())/100) % 100;
   Int_t day   =  ((Int_t) fTimeOffsetDate->GetNumber()) % 100;

   while (day > 1) {
      day--;
      offset += 3600 * 24;
   }

   Int_t oneMonthInSecs;
   while (month > 1) {
      month--;
      switch (month) {
         case 2:
            if (year % 4) oneMonthInSecs = 3600 * 24 * 28;
                     else oneMonthInSecs = 3600 * 24 * 29;
            break;
         case 1: case 3: case 5: case 7: case 8: case 10: case 12:
            oneMonthInSecs = 3600 * 24 * 31;
            break;
         default:
            oneMonthInSecs = 3600 * 24 * 30;
      }
      offset += oneMonthInSecs;
   }

   Int_t oneYearInSecs;
   while (year < 1995) {
      if (year % 4) oneYearInSecs = 3600 * 24 * 365;
               else oneYearInSecs = 3600 * 24 * 366;
      offset -= oneYearInSecs;
      year++;
   }
   while (year > 1995) {
      year--;
      if (year % 4) oneYearInSecs = 3600 * 24 * 365;
               else oneYearInSecs = 3600 * 24 * 366;
      offset += oneYearInSecs;
   }

   offset += 788918400 + fTimeOffsetTime->GetNumber();

   fCurSelStyle->SetTimeOffset(offset);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStripDecimals()
{
   // Slot called whenever the strip decimal boolean is modified by the user.

   fCurSelStyle->SetStripDecimals(!fStripDecimals->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModApplyOnXYZ()
{
   //  Slot called whenever the apply on XYZ button is clicked. The settings of
   // the current selected axis pad are applyed on all axis.
   // NB: The logarithmic scale option isn't modified by this method.

   switch (fCurTabAxisNum) {
      case 0: // X axis
         fCurSelStyle->SetAxisColor(fCurSelStyle->GetAxisColor("x"), "yz");
         fCurSelStyle->SetTickLength(fCurSelStyle->GetTickLength("x"), "yz");
         fCurSelStyle->SetTitleColor(fCurSelStyle->GetTitleColor("x"), "yz");
         fCurSelStyle->SetTitleFont(fCurSelStyle->GetTitleFont("x"), "yz");
         fCurSelStyle->SetTitleSize(fCurSelStyle->GetTitleSize("x"), "yz");
         fCurSelStyle->SetTitleOffset(fCurSelStyle->GetTitleOffset("x"), "yz");
         fCurSelStyle->SetNdivisions(fCurSelStyle->GetNdivisions("x"), "yz");
         fCurSelStyle->SetLabelColor(fCurSelStyle->GetLabelColor("x"), "yz");
         fCurSelStyle->SetLabelFont(fCurSelStyle->GetLabelFont("x"), "yz");
         fCurSelStyle->SetLabelSize(fCurSelStyle->GetLabelSize("x"), "yz");
         fCurSelStyle->SetLabelOffset(fCurSelStyle->GetLabelOffset("x"), "yz");
         break;
      case 1: // Y axis
         fCurSelStyle->SetAxisColor(fCurSelStyle->GetAxisColor("y"), "xz");
         fCurSelStyle->SetTickLength(fCurSelStyle->GetTickLength("y"), "xz");
         fCurSelStyle->SetTitleColor(fCurSelStyle->GetTitleColor("y"), "xz");
         fCurSelStyle->SetTitleFont(fCurSelStyle->GetTitleFont("y"), "xz");
         fCurSelStyle->SetTitleSize(fCurSelStyle->GetTitleSize("y"), "xz");
         fCurSelStyle->SetTitleOffset(fCurSelStyle->GetTitleOffset("y"), "xz");
         fCurSelStyle->SetNdivisions(fCurSelStyle->GetNdivisions("y"), "xz");
         fCurSelStyle->SetLabelColor(fCurSelStyle->GetLabelColor("y"), "xz");
         fCurSelStyle->SetLabelFont(fCurSelStyle->GetLabelFont("y"), "xz");
         fCurSelStyle->SetLabelSize(fCurSelStyle->GetLabelSize("y"), "xz");
         fCurSelStyle->SetLabelOffset(fCurSelStyle->GetLabelOffset("y"), "xz");
         break;

      case 2: // Z axis
         fCurSelStyle->SetAxisColor(fCurSelStyle->GetAxisColor("z"), "xy");
         fCurSelStyle->SetTickLength(fCurSelStyle->GetTickLength("z"), "xy");
         fCurSelStyle->SetTitleColor(fCurSelStyle->GetTitleColor("z"), "xy");
         fCurSelStyle->SetTitleFont(fCurSelStyle->GetTitleFont("z"), "xy");
         fCurSelStyle->SetTitleSize(fCurSelStyle->GetTitleSize("z"), "xy");
         fCurSelStyle->SetTitleOffset(fCurSelStyle->GetTitleOffset("z"), "xy");
         fCurSelStyle->SetNdivisions(fCurSelStyle->GetNdivisions("z"), "xy");
         fCurSelStyle->SetLabelColor(fCurSelStyle->GetLabelColor("z"), "xy");
         fCurSelStyle->SetLabelFont(fCurSelStyle->GetLabelFont("z"), "xy");
         fCurSelStyle->SetLabelSize(fCurSelStyle->GetLabelSize("z"), "xy");
         fCurSelStyle->SetLabelOffset(fCurSelStyle->GetLabelOffset("z"), "xy");
         break;
   }

   DisconnectEditor(fCurTabNum);
   UpdateEditor(fCurTabNum);
   ConnectEditor(fCurTabNum);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXTitleSize()
{
   // Slot called whenever the X axis title size is modified by the user.

   fCurSelStyle->SetTitleSize(fXTitleSize->GetNumber(), "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXTitleSizeInPixels(Bool_t b)
{
   // Slot called whenever the X axis title size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetTitleFont("X") / 10;
   Int_t mod = fCurSelStyle->GetTitleFont("X") % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);
   if (b) {
      fCurSelStyle->SetTitleFont(tmp * 10 + 3, "X");
      fXTitleSize->SetFormat(TGNumberFormat::kNESInteger,
                           TGNumberFormat::kNEAPositive);
      fXTitleSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->SetTitleSize(fCurSelStyle->GetTitleSize("X") * h, "X");
   } else {
      fCurSelStyle->SetTitleFont(tmp * 10 + 2, "X");
      fXTitleSize->SetFormat(TGNumberFormat::kNESRealThree,
                           TGNumberFormat::kNEAPositive);
      fXTitleSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, 1);
      if (mod == 3)
         fCurSelStyle->SetTitleSize(fCurSelStyle->GetTitleSize("X") / h, "X");
   }
   fXTitleSize->SetNumber(fCurSelStyle->GetTitleSize("X"));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXTitleColor()
{
   // Slot called whenever the X axis title color is modified by the user.

   fCurSelStyle->SetTitleColor(TColor::GetColor(fXTitleColor->GetColor()), "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXTitleOffset()
{
   // Slot called whenever the X axis title offset is modified by the user.

   fCurSelStyle->SetTitleOffset(fXTitleOffset->GetNumber(), "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXTitleFont()
{
   // Slot called whenever the X axis title font is modified by the user.

   Int_t fontPrec = fCurSelStyle->GetTitleFont("X") % 10;
   fCurSelStyle->SetTitleFont(fXTitleFont->GetSelected() * 10 + fontPrec, "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXLabelSize()
{
   // Slot called whenever the X axis label size is modified by the user.

   fCurSelStyle->SetLabelSize(fXLabelSize->GetNumber(), "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXLabelSizeInPixels(Bool_t b)
{
   // Slot called whenever the X axis label size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetLabelFont("X") / 10;
   Int_t mod = fCurSelStyle->GetLabelFont("X") % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);
   if (b) {
      fCurSelStyle->SetLabelFont(tmp * 10 + 3, "X");
      fXLabelSize->SetFormat(TGNumberFormat::kNESInteger,
                           TGNumberFormat::kNEAPositive);
      fXLabelSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->SetLabelSize(fCurSelStyle->GetLabelSize("X") * h, "X");
   } else {
      fCurSelStyle->SetLabelFont(tmp * 10 + 2, "X");
      fXLabelSize->SetFormat(TGNumberFormat::kNESRealThree,
                           TGNumberFormat::kNEAPositive);
      fXLabelSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, 1);
      if (mod == 3)
         fCurSelStyle->SetLabelSize(fCurSelStyle->GetLabelSize("X") / h, "X");
   }
   fXLabelSize->SetNumber(fCurSelStyle->GetLabelSize("X"));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXLabelColor()
{
   // Slot called whenever the X axis label color is modified by the user.

   fCurSelStyle->SetLabelColor(TColor::GetColor(fXLabelColor->GetColor()), "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXLabelOffset()
{
   // Slot called whenever the X axis label offset is modified by the user.

   fCurSelStyle->SetLabelOffset(fXLabelOffset->GetNumber(), "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXLabelFont()
{
   // Slot called whenever the X axis label font is modified by the user.

   Int_t fontPrec = fCurSelStyle->GetLabelFont("X") % 10;
   fCurSelStyle->SetLabelFont(fXLabelFont->GetSelected() * 10 + fontPrec, "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXAxisColor()
{
   // Slot called whenever the X axis color is modified by the user.

   fCurSelStyle->SetAxisColor(TColor::GetColor(fXAxisColor->GetColor()), "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXTickLength()
{
   // Slot called whenever the X axis tick length is modified by the user.

   fCurSelStyle->SetTickLength(fXTickLength->GetNumber(), "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModOptLogx()
{
   //  Slot called whenever the X axis log scale boolean is modified
   // by the user.

   fCurSelStyle->SetOptLogx(fOptLogx->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModXNdivisions()
{
   //  Slot called whenever the X axis Number of divisions is modified
   // by the user.

   Int_t sgn = -1;
   if (fXNdivisionsOptimize->IsDown()) sgn = 1;
   fCurSelStyle->SetNdivisions(sgn * (fXNdivMain->GetIntNumber()
                               + 100 * fXNdivSub->GetIntNumber()
                               + 10000 * fXNdivSubSub->GetIntNumber()), "X");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYTitleSize()
{
   // Slot called whenever the Y axis title size is modified by the user.

   fCurSelStyle->SetTitleSize(fYTitleSize->GetNumber(), "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYTitleSizeInPixels(Bool_t b)
{
   // Slot called whenever the Y axis title size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetTitleFont("Y") / 10;
   Int_t mod = fCurSelStyle->GetTitleFont("Y") % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);
   if (b) {
      fCurSelStyle->SetTitleFont(tmp * 10 + 3, "Y");
      fYTitleSize->SetFormat(TGNumberFormat::kNESInteger,
                             TGNumberFormat::kNEAPositive);
      fYTitleSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->SetTitleSize(fCurSelStyle->GetTitleSize("Y") * h, "Y");
   } else {
      fCurSelStyle->SetTitleFont(tmp * 10 + 2, "Y");
      fYTitleSize->SetFormat(TGNumberFormat::kNESRealThree,
                             TGNumberFormat::kNEAPositive);
      fYTitleSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, 1);
      if (mod == 3)
         fCurSelStyle->SetTitleSize(fCurSelStyle->GetTitleSize("Y") / h, "Y");
   }
   fYTitleSize->SetNumber(fCurSelStyle->GetTitleSize("Y"));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYTitleColor()
{
   // Slot called whenever the Y axis title color is modified by the user.

   fCurSelStyle->SetTitleColor(TColor::GetColor(fYTitleColor->GetColor()), "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYTitleOffset()
{
   // Slot called whenever the Y axis title offset is modified by the user.

   fCurSelStyle->SetTitleOffset(fYTitleOffset->GetNumber(), "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYTitleFont()
{
   // Slot called whenever the Y axis title font is modified by the user.

   Int_t fontPrec = fCurSelStyle->GetTitleFont("Y") % 10;
   fCurSelStyle->SetTitleFont(fYTitleFont->GetSelected() * 10 + fontPrec, "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYLabelSize()
{
   // Slot called whenever the Y axis label size is modified by the user.

   fCurSelStyle->SetLabelSize(fYLabelSize->GetNumber(), "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYLabelSizeInPixels(Bool_t b)
{
   // Slot called whenever the Y axis label size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetLabelFont("Y") / 10;
   Int_t mod = fCurSelStyle->GetLabelFont("Y") % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);
   if (b) {
      fCurSelStyle->SetLabelFont(tmp * 10 + 3, "Y");
      fYLabelSize->SetFormat(TGNumberFormat::kNESInteger,
                             TGNumberFormat::kNEAPositive);
      fYLabelSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->SetLabelSize(fCurSelStyle->GetLabelSize("Y") * h, "Y");
   } else {
      fCurSelStyle->SetLabelFont(tmp * 10 + 2, "Y");
      fYLabelSize->SetFormat(TGNumberFormat::kNESRealThree,
                             TGNumberFormat::kNEAPositive);
      fYLabelSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, 1);
      if (mod == 3)
         fCurSelStyle->SetLabelSize(fCurSelStyle->GetLabelSize("Y") / h, "Y");
   }
   fYLabelSize->SetNumber(fCurSelStyle->GetLabelSize("Y"));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYLabelColor()
{
   // Slot called whenever the Y axis label color is modified by the user.

   fCurSelStyle->SetLabelColor(TColor::GetColor(fYLabelColor->GetColor()), "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYLabelOffset()
{
   // Slot called whenever the Y axis label offset is modified by the user.

   fCurSelStyle->SetLabelOffset(fYLabelOffset->GetNumber(), "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYLabelFont()
{
   // Slot called whenever the Y axis label font is modified by the user.

   Int_t fontPrec = fCurSelStyle->GetLabelFont("Y") % 10;
   fCurSelStyle->SetLabelFont(fYLabelFont->GetSelected() * 10 + fontPrec, "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYAxisColor()
{
   // Slot called whenever the Y axis color is modified by the user.

   fCurSelStyle->SetAxisColor(TColor::GetColor(fYAxisColor->GetColor()), "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYTickLength()
{
   // Slot called whenever the Y axis tick length is modified by the user.

   fCurSelStyle->SetTickLength(fYTickLength->GetNumber(), "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModOptLogy()
{
   // Slot called whenever the Y axis log scale boolean is modified by the user.

   fCurSelStyle->SetOptLogy(fOptLogy->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModYNdivisions()
{
   //  Slot called whenever the Y axis Number of divisions is modified
   // by the user.

   Int_t sgn = -1;
   if (fYNdivisionsOptimize->IsDown()) sgn = 1;
   fCurSelStyle->SetNdivisions(sgn * (fYNdivMain->GetIntNumber()
                               + 100 * fYNdivSub->GetIntNumber()
                               + 10000 * fYNdivSubSub->GetIntNumber()), "Y");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZTitleSize()
{
   // Slot called whenever the Z axis title size is modified by the user.

   fCurSelStyle->SetTitleSize(fZTitleSize->GetNumber(), "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZTitleSizeInPixels(Bool_t b)
{
   // Slot called whenever the Z axis title size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetTitleFont("Z") / 10;
   Int_t mod = fCurSelStyle->GetTitleFont("Z") % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);
   if (b) {
      fCurSelStyle->SetTitleFont(tmp * 10 + 3, "Z");
      fZTitleSize->SetFormat(TGNumberFormat::kNESInteger,
                             TGNumberFormat::kNEAPositive);
      fZTitleSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->SetTitleSize(fCurSelStyle->GetTitleSize("Z") * h, "Z");
   } else {
      fCurSelStyle->SetTitleFont(tmp * 10 + 2, "Z");
      fZTitleSize->SetFormat(TGNumberFormat::kNESRealThree,
                             TGNumberFormat::kNEAPositive);
      fZTitleSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, 1);
      if (mod == 3)
         fCurSelStyle->SetTitleSize(fCurSelStyle->GetTitleSize("Z") / h, "Z");
   }
   fZTitleSize->SetNumber(fCurSelStyle->GetTitleSize("Z"));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZTitleColor()
{
   // Slot called whenever the Z axis title color is modified by the user.

   fCurSelStyle->SetTitleColor(TColor::GetColor(fZTitleColor->GetColor()), "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZTitleOffset()
{
   // Slot called whenever the Z axis title offset is modified by the user.

   fCurSelStyle->SetTitleOffset(fZTitleOffset->GetNumber(), "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZTitleFont()
{
   // Slot called whenever the Z axis title font is modified by the user.

   Int_t fontPrec = fCurSelStyle->GetTitleFont("Z") % 10;
   fCurSelStyle->SetTitleFont(fZTitleFont->GetSelected() * 10 + fontPrec, "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZLabelSize()
{
   // Slot called whenever the Z axis label size is modified by the user.

   fCurSelStyle->SetLabelSize(fZLabelSize->GetNumber(), "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZLabelSizeInPixels(Bool_t b)
{
   // Slot called whenever the Z axis Label size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetLabelFont("Z") / 10;
   Int_t mod = fCurSelStyle->GetLabelFont("Z") % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);
   if (b) {
      fCurSelStyle->SetLabelFont(tmp * 10 + 3, "Z");
      fZLabelSize->SetFormat(TGNumberFormat::kNESInteger,
                             TGNumberFormat::kNEAPositive);
      fZLabelSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->SetLabelSize(fCurSelStyle->GetLabelSize("Z") * h, "Z");
   } else {
      fCurSelStyle->SetLabelFont(tmp * 10 + 2, "Z");
      fZLabelSize->SetFormat(TGNumberFormat::kNESRealThree,
                             TGNumberFormat::kNEAPositive);
      fZLabelSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, 1);
      if (mod == 3)
         fCurSelStyle->SetLabelSize(fCurSelStyle->GetLabelSize("Z") / h, "Z");
   }
   fZLabelSize->SetNumber(fCurSelStyle->GetLabelSize("Z"));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZLabelColor()
{
   // Slot called whenever the Z axis label color is modified by the user.

   fCurSelStyle->SetLabelColor(TColor::GetColor(fZLabelColor->GetColor()), "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZLabelOffset()
{
   // Slot called whenever the Z axis label offset is modified by the user.

   fCurSelStyle->SetLabelOffset(fZLabelOffset->GetNumber(), "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZLabelFont()
{
   // Slot called whenever the Z axis label font is modified by the user.

   Int_t fontPrec = fCurSelStyle->GetLabelFont("Z") % 10;
   fCurSelStyle->SetLabelFont(fZLabelFont->GetSelected() * 10 + fontPrec, "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZAxisColor()
{
   // Slot called whenever the Z axis color is modified by the user.

   fCurSelStyle->SetAxisColor(TColor::GetColor(fZAxisColor->GetColor()), "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZTickLength()
{
   // Slot called whenever the Z axis tick length is modified by the user.

   fCurSelStyle->SetTickLength(fZTickLength->GetNumber(), "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModOptLogz()
{
   // Slot called whenever the Z axis log scale boolean is modified by the user.

   fCurSelStyle->SetOptLogz(fOptLogz->IsDown());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModZNdivisions()
{
   //  Slot called whenever the Z axis Number of divisions is modified
   // by the user.

   Int_t sgn = -1;
   if (fZNdivisionsOptimize->IsDown()) sgn = 1;
   fCurSelStyle->SetNdivisions(sgn * (fZNdivMain->GetIntNumber()
                               + 100 * fZNdivSub->GetIntNumber()
                               + 10000 * fZNdivSubSub->GetIntNumber()), "Z");
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModOptTitle()
{
   // Slot called whenever the OptTitle boolean is modified by the user.

   fCurSelStyle->SetOptTitle(fOptTitle->IsDown());
   DisconnectEditor(fCurTabNum);
   UpdateEditor(fCurTabNum);
   ConnectEditor(fCurTabNum);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleFillColor()
{
   // Slot called whenever the title fill color is modified by the user.

   fCurSelStyle->SetTitleFillColor(TColor::GetColor(fTitleColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleStyle()
{
   // Slot called whenever the title fill style is modified by the user.

   fCurSelStyle->SetTitleStyle(fTitleStyle->GetPattern());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleTextColor()
{
   // Slot called whenever the title text color is modified by the user.

   fCurSelStyle->SetTitleTextColor(TColor::GetColor(fTitleTextColor->GetColor()));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleFontSize()
{
   // Slot called whenever the text size is modified by the user.

   fCurSelStyle->SetTitleFontSize(fTitleFontSize->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleFontSizeInPixels(Bool_t b)
{
   // Slot called whenever the text size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetTitleFont() / 10;
   Int_t mod = fCurSelStyle->GetTitleFont() % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);
   if (b) {
      fCurSelStyle->SetTitleFont(tmp * 10 + 3);
      fTitleFontSize->SetFormat(TGNumberFormat::kNESInteger,
                                TGNumberFormat::kNEAPositive);
      fTitleFontSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->SetTitleFontSize(fCurSelStyle->GetTitleFontSize() * h);
   } else {
      fCurSelStyle->SetTitleFont(tmp * 10 + 2);
      fTitleFontSize->SetFormat(TGNumberFormat::kNESRealThree,
                                TGNumberFormat::kNEAPositive);
      fTitleFontSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, 1);
      if (mod == 3)
         fCurSelStyle->SetTitleFontSize(fCurSelStyle->GetTitleFontSize() / h);
   }
   fTitleFontSize->SetNumber(fCurSelStyle->GetTitleFontSize());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleFont()
{
   // Slot called whenever the title text font is modified by the user.

   Int_t tmp = fCurSelStyle->GetTitleFont() % 10;
   fCurSelStyle->SetTitleFont(fTitleFont->GetSelected() * 10 + tmp);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleAlign()
{
   // Slot called whenever the title text align is modified by the user.

   fCurSelStyle->SetTitleAlign(fTitleAlign->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleBorderSize()
{
   // Slot called whenever the title border size is modified by the user.

   fCurSelStyle->SetTitleBorderSize(fTitleBorderSize->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModLegendBorderSize()
{
   // Slot called whenever the legend border size is modified by the user.

   fCurSelStyle->SetLegendBorderSize(fLegendBorderSize->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleX()
{
   // Slot called whenever the title abscissa is modified by the user.

   fCurSelStyle->SetTitleX(fTitleX->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleY()
{
   // Slot called whenever the title ordinate is modified by the user.

   fCurSelStyle->SetTitleY(fTitleY->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleW()
{
   // Slot called whenever the title width is modified by the user.

   fCurSelStyle->SetTitleW(fTitleW->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitleH()
{
   // Slot called whenever the title height is modified by the user.

   fCurSelStyle->SetTitleH(fTitleH->GetIntNumber() * 0.01);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatColor(Pixel_t color)
{
   // Slot called whenever the stats fill color is modified by the user.

   fCurSelStyle->SetStatColor(TColor::GetColor(color));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatStyle(Style_t pattern)
{
   // Slot called whenever the stats fill style is modified by the user.

   fCurSelStyle->SetStatStyle(pattern);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatTextColor(Pixel_t color)
{
   // Slot called whenever the stats text color is modified by the user.

   fCurSelStyle->SetStatTextColor(TColor::GetColor(color));
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatFontSize()
{
   // Slot called whenever the text size is modified by the user.
   fCurSelStyle->SetStatFontSize(fStatFontSize->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatFontSizeInPixels(Bool_t b)
{
   // Slot called whenever the text size mode is modified by the user.

   Int_t tmp = fCurSelStyle->GetStatFont() / 10;
   Int_t mod = fCurSelStyle->GetStatFont() % 10;
   Double_t h = TMath::Max(fCurSelStyle->GetCanvasDefH(), 100);
   if (b) {
      fCurSelStyle->SetStatFont(tmp * 10 + 3);
      fStatFontSize->SetFormat(TGNumberFormat::kNESInteger,
                               TGNumberFormat::kNEANonNegative);
      fStatFontSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0, h);
      if (mod == 2)
         fCurSelStyle->SetStatFontSize(fCurSelStyle->GetStatFontSize() * h);
      fStatFontSize->SetNumber(fCurSelStyle->GetStatFontSize());
   } else {
      fCurSelStyle->SetStatFont(tmp * 10 + 2);
      fStatFontSize->SetFormat(TGNumberFormat::kNESRealThree,
                               TGNumberFormat::kNEANonNegative);
      fStatFontSize->SetLimits(TGNumberFormat::kNELLimitMinMax, 0., 1.);
      if (mod == 3)
         fCurSelStyle->SetStatFontSize(fCurSelStyle->GetStatFontSize() / h);
      fStatFontSize->SetNumber(fCurSelStyle->GetStatFontSize());
   }
   fStatFontSize->SetNumber(fCurSelStyle->GetStatFontSize());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatFont()
{
   // Slot called whenever the stats text font is modified by the user.

   Int_t tmp = fCurSelStyle->GetStatFont() % 10;
   fCurSelStyle->SetStatFont(fStatFont->GetSelected() * 10 + tmp);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatX()
{
   // Slot called whenever the stats abscissa is modified by the user.

   fCurSelStyle->SetStatX((Float_t)fStatX->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatY()
{
   // Slot called whenever the stats ordinate is modified by the user.

   fCurSelStyle->SetStatY((Float_t)fStatY->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatW()
{
   // Slot called whenever the stats width is modified by the user.

   fCurSelStyle->SetStatW((Float_t)fStatW->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatH()
{
   // Slot called whenever the stats height is modified by the user.

   fCurSelStyle->SetStatH((Float_t)fStatH->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatBorderSize()
{
   // Slot called whenever the stats border size is modified by the user.

   fCurSelStyle->SetStatBorderSize(fStatBorderSize->GetSelected());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModOptStat()
{
   // Slot called whenever one of the stats options is modified by the user.

   Int_t stat = 0;
   if (fOptStatName->IsDown())        stat +=1;
   if (fOptStatEntries->IsDown())     stat +=10;
   if (fOptStatMean->IsDown())        stat +=100;
   if (fOptStatRMS->IsDown())         stat +=1000;
   if (fOptStatUnderflow->IsDown())   stat +=10000;
   if (fOptStatOverflow->IsDown())    stat +=100000;
   if (fOptStatIntegral->IsDown())    stat +=1000000;
   if (fOptStatSkewness->IsDown())    stat +=10000000;
   if (fOptStatKurtosis->IsDown())    stat +=100000000;
   if (fOptStatErrors->IsDown()) {
      if (fOptStatMean->IsDown())     stat +=100;
      if (fOptStatRMS->IsDown())      stat +=1000;
      if (fOptStatSkewness->IsDown()) stat +=10000000;
      if (fOptStatKurtosis->IsDown()) stat +=100000000;
   }
   if (stat == 1) stat = 1000000001;
   fCurSelStyle->SetOptStat(stat);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModStatFormat(const char *sformat)
{
   // Slot called whenever the stats paint format is modified by the user.

   fCurSelStyle->SetStatFormat(sformat);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModOptFit()
{
   // Slot called whenever one of the fit options is modified by the user.

   Int_t fit = 0;
   if (fOptFitValues->IsDown())      fit +=1;
   if (fOptFitErrors->IsDown())      fit +=10;
   if (fOptFitChi->IsDown())         fit +=100;
   if (fOptFitProbability->IsDown()) fit +=1000;
   if (fit == 1) fit = 10001;
   fCurSelStyle->SetOptFit(fit);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModFitFormat(const char *fitformat)
{
   // Slot called whenever the fit paint format is modified by the user.

   fCurSelStyle->SetFitFormat(fitformat);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModHeaderPS()
{
   // Slot called whenever the PS header is modified by the user.

   fCurSelStyle->SetHeaderPS(fHeaderPS->GetText());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModTitlePS()
{
   // Slot called whenever the PS title is modified by the user.

   fCurSelStyle->SetTitlePS(fTitlePS->GetText());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModColorModelPS()
{
   // Slot called whenever the PS color model is modified by the user.

   Int_t i = kPSPDFColorModelPSRGB;
   while (!fColorModelPS->Find(i)->IsDown()) i++;
   fCurSelStyle->SetColorModelPS(i - kPSPDFColorModelPSRGB);
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModLineScalePS()
{
   // Slot called whenever the PS line scale is modified by the user.

   fCurSelStyle->SetLineScalePS(fLineScalePS->GetNumber());
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPaperSizePredef()
{
   // Slot called whenever the PS paper size is modified by the user.

   Float_t papSizeX;
   Float_t papSizeY;
   fCurSelStyle->GetPaperSize(papSizeX, papSizeY);

   if (fPaperSizePredef->GetSelected() == 1) {
      if (!fPaperSizeEnCm) {
         fPaperSizeEnCm = kTRUE;
         fPaperSizeX->SetNumber(papSizeX);
         fPaperSizeY->SetNumber(papSizeY);
      }
   } else if (fPaperSizePredef->GetSelected() == 2) {
      if (fPaperSizeEnCm) {
         fPaperSizeEnCm = kFALSE;
         fPaperSizeX->SetNumber(papSizeX * 0.394);
         fPaperSizeY->SetNumber(papSizeY * 0.394);
      }
   } else if (fPaperSizePredef->GetSelected() == 3) {
      fPaperSizeEnCm = kTRUE;
      fPaperSizeX->SetNumber(20);
      fPaperSizeY->SetNumber(26);
      fCurSelStyle->SetPaperSize(20, 26);
   } else if (fPaperSizePredef->GetSelected() == 4) {
      fPaperSizeEnCm = kFALSE;
      fPaperSizeX->SetNumber(20 * 0.394);
      fPaperSizeY->SetNumber(24 * 0.394);
      fCurSelStyle->SetPaperSize(20, 24);
   }
   DoEditor();
}

//______________________________________________________________________________
void TStyleManager::ModPaperSizeXY()
{
   // Slot called whenever the PS paper size is modified by the user.

   if (fPaperSizeEnCm) {
      fCurSelStyle->SetPaperSize(fPaperSizeX->GetNumber(),
                                 fPaperSizeY->GetNumber());
      fPaperSizePredef->Select(1);
   } else {
      fCurSelStyle->SetPaperSize(fPaperSizeX->GetNumber() * 2.54,
                                 fPaperSizeY->GetNumber() * 2.54);
      fPaperSizePredef->Select(2);
   }
   DoEditor();
}
 TStyleManager.cxx:1
 TStyleManager.cxx:2
 TStyleManager.cxx:3
 TStyleManager.cxx:4
 TStyleManager.cxx:5
 TStyleManager.cxx:6
 TStyleManager.cxx:7
 TStyleManager.cxx:8
 TStyleManager.cxx:9
 TStyleManager.cxx:10
 TStyleManager.cxx:11
 TStyleManager.cxx:12
 TStyleManager.cxx:13
 TStyleManager.cxx:14
 TStyleManager.cxx:15
 TStyleManager.cxx:16
 TStyleManager.cxx:17
 TStyleManager.cxx:18
 TStyleManager.cxx:19
 TStyleManager.cxx:20
 TStyleManager.cxx:21
 TStyleManager.cxx:22
 TStyleManager.cxx:23
 TStyleManager.cxx:24
 TStyleManager.cxx:25
 TStyleManager.cxx:26
 TStyleManager.cxx:27
 TStyleManager.cxx:28
 TStyleManager.cxx:29
 TStyleManager.cxx:30
 TStyleManager.cxx:31
 TStyleManager.cxx:32
 TStyleManager.cxx:33
 TStyleManager.cxx:34
 TStyleManager.cxx:35
 TStyleManager.cxx:36
 TStyleManager.cxx:37
 TStyleManager.cxx:38
 TStyleManager.cxx:39
 TStyleManager.cxx:40
 TStyleManager.cxx:41
 TStyleManager.cxx:42
 TStyleManager.cxx:43
 TStyleManager.cxx:44
 TStyleManager.cxx:45
 TStyleManager.cxx:46
 TStyleManager.cxx:47
 TStyleManager.cxx:48
 TStyleManager.cxx:49
 TStyleManager.cxx:50
 TStyleManager.cxx:51
 TStyleManager.cxx:52
 TStyleManager.cxx:53
 TStyleManager.cxx:54
 TStyleManager.cxx:55
 TStyleManager.cxx:56
 TStyleManager.cxx:57
 TStyleManager.cxx:58
 TStyleManager.cxx:59
 TStyleManager.cxx:60
 TStyleManager.cxx:61
 TStyleManager.cxx:62
 TStyleManager.cxx:63
 TStyleManager.cxx:64
 TStyleManager.cxx:65
 TStyleManager.cxx:66
 TStyleManager.cxx:67
 TStyleManager.cxx:68
 TStyleManager.cxx:69
 TStyleManager.cxx:70
 TStyleManager.cxx:71
 TStyleManager.cxx:72
 TStyleManager.cxx:73
 TStyleManager.cxx:74
 TStyleManager.cxx:75
 TStyleManager.cxx:76
 TStyleManager.cxx:77
 TStyleManager.cxx:78
 TStyleManager.cxx:79
 TStyleManager.cxx:80
 TStyleManager.cxx:81
 TStyleManager.cxx:82
 TStyleManager.cxx:83
 TStyleManager.cxx:84
 TStyleManager.cxx:85
 TStyleManager.cxx:86
 TStyleManager.cxx:87
 TStyleManager.cxx:88
 TStyleManager.cxx:89
 TStyleManager.cxx:90
 TStyleManager.cxx:91
 TStyleManager.cxx:92
 TStyleManager.cxx:93
 TStyleManager.cxx:94
 TStyleManager.cxx:95
 TStyleManager.cxx:96
 TStyleManager.cxx:97
 TStyleManager.cxx:98
 TStyleManager.cxx:99
 TStyleManager.cxx:100
 TStyleManager.cxx:101
 TStyleManager.cxx:102
 TStyleManager.cxx:103
 TStyleManager.cxx:104
 TStyleManager.cxx:105
 TStyleManager.cxx:106
 TStyleManager.cxx:107
 TStyleManager.cxx:108
 TStyleManager.cxx:109
 TStyleManager.cxx:110
 TStyleManager.cxx:111
 TStyleManager.cxx:112
 TStyleManager.cxx:113
 TStyleManager.cxx:114
 TStyleManager.cxx:115
 TStyleManager.cxx:116
 TStyleManager.cxx:117
 TStyleManager.cxx:118
 TStyleManager.cxx:119
 TStyleManager.cxx:120
 TStyleManager.cxx:121
 TStyleManager.cxx:122
 TStyleManager.cxx:123
 TStyleManager.cxx:124
 TStyleManager.cxx:125
 TStyleManager.cxx:126
 TStyleManager.cxx:127
 TStyleManager.cxx:128
 TStyleManager.cxx:129
 TStyleManager.cxx:130
 TStyleManager.cxx:131
 TStyleManager.cxx:132
 TStyleManager.cxx:133
 TStyleManager.cxx:134
 TStyleManager.cxx:135
 TStyleManager.cxx:136
 TStyleManager.cxx:137
 TStyleManager.cxx:138
 TStyleManager.cxx:139
 TStyleManager.cxx:140
 TStyleManager.cxx:141
 TStyleManager.cxx:142
 TStyleManager.cxx:143
 TStyleManager.cxx:144
 TStyleManager.cxx:145
 TStyleManager.cxx:146
 TStyleManager.cxx:147
 TStyleManager.cxx:148
 TStyleManager.cxx:149
 TStyleManager.cxx:150
 TStyleManager.cxx:151
 TStyleManager.cxx:152
 TStyleManager.cxx:153
 TStyleManager.cxx:154
 TStyleManager.cxx:155
 TStyleManager.cxx:156
 TStyleManager.cxx:157
 TStyleManager.cxx:158
 TStyleManager.cxx:159
 TStyleManager.cxx:160
 TStyleManager.cxx:161
 TStyleManager.cxx:162
 TStyleManager.cxx:163
 TStyleManager.cxx:164
 TStyleManager.cxx:165
 TStyleManager.cxx:166
 TStyleManager.cxx:167
 TStyleManager.cxx:168
 TStyleManager.cxx:169
 TStyleManager.cxx:170
 TStyleManager.cxx:171
 TStyleManager.cxx:172
 TStyleManager.cxx:173
 TStyleManager.cxx:174
 TStyleManager.cxx:175
 TStyleManager.cxx:176
 TStyleManager.cxx:177
 TStyleManager.cxx:178
 TStyleManager.cxx:179
 TStyleManager.cxx:180
 TStyleManager.cxx:181
 TStyleManager.cxx:182
 TStyleManager.cxx:183
 TStyleManager.cxx:184
 TStyleManager.cxx:185
 TStyleManager.cxx:186
 TStyleManager.cxx:187
 TStyleManager.cxx:188
 TStyleManager.cxx:189
 TStyleManager.cxx:190
 TStyleManager.cxx:191
 TStyleManager.cxx:192
 TStyleManager.cxx:193
 TStyleManager.cxx:194
 TStyleManager.cxx:195
 TStyleManager.cxx:196
 TStyleManager.cxx:197
 TStyleManager.cxx:198
 TStyleManager.cxx:199
 TStyleManager.cxx:200
 TStyleManager.cxx:201
 TStyleManager.cxx:202
 TStyleManager.cxx:203
 TStyleManager.cxx:204
 TStyleManager.cxx:205
 TStyleManager.cxx:206
 TStyleManager.cxx:207
 TStyleManager.cxx:208
 TStyleManager.cxx:209
 TStyleManager.cxx:210
 TStyleManager.cxx:211
 TStyleManager.cxx:212
 TStyleManager.cxx:213
 TStyleManager.cxx:214
 TStyleManager.cxx:215
 TStyleManager.cxx:216
 TStyleManager.cxx:217
 TStyleManager.cxx:218
 TStyleManager.cxx:219
 TStyleManager.cxx:220
 TStyleManager.cxx:221
 TStyleManager.cxx:222
 TStyleManager.cxx:223
 TStyleManager.cxx:224
 TStyleManager.cxx:225
 TStyleManager.cxx:226
 TStyleManager.cxx:227
 TStyleManager.cxx:228
 TStyleManager.cxx:229
 TStyleManager.cxx:230
 TStyleManager.cxx:231
 TStyleManager.cxx:232
 TStyleManager.cxx:233
 TStyleManager.cxx:234
 TStyleManager.cxx:235
 TStyleManager.cxx:236
 TStyleManager.cxx:237
 TStyleManager.cxx:238
 TStyleManager.cxx:239
 TStyleManager.cxx:240
 TStyleManager.cxx:241
 TStyleManager.cxx:242
 TStyleManager.cxx:243
 TStyleManager.cxx:244
 TStyleManager.cxx:245
 TStyleManager.cxx:246
 TStyleManager.cxx:247
 TStyleManager.cxx:248
 TStyleManager.cxx:249
 TStyleManager.cxx:250
 TStyleManager.cxx:251
 TStyleManager.cxx:252
 TStyleManager.cxx:253
 TStyleManager.cxx:254
 TStyleManager.cxx:255
 TStyleManager.cxx:256
 TStyleManager.cxx:257
 TStyleManager.cxx:258
 TStyleManager.cxx:259
 TStyleManager.cxx:260
 TStyleManager.cxx:261
 TStyleManager.cxx:262
 TStyleManager.cxx:263
 TStyleManager.cxx:264
 TStyleManager.cxx:265
 TStyleManager.cxx:266
 TStyleManager.cxx:267
 TStyleManager.cxx:268
 TStyleManager.cxx:269
 TStyleManager.cxx:270
 TStyleManager.cxx:271
 TStyleManager.cxx:272
 TStyleManager.cxx:273
 TStyleManager.cxx:274
 TStyleManager.cxx:275
 TStyleManager.cxx:276
 TStyleManager.cxx:277
 TStyleManager.cxx:278
 TStyleManager.cxx:279
 TStyleManager.cxx:280
 TStyleManager.cxx:281
 TStyleManager.cxx:282
 TStyleManager.cxx:283
 TStyleManager.cxx:284
 TStyleManager.cxx:285
 TStyleManager.cxx:286
 TStyleManager.cxx:287
 TStyleManager.cxx:288
 TStyleManager.cxx:289
 TStyleManager.cxx:290
 TStyleManager.cxx:291
 TStyleManager.cxx:292
 TStyleManager.cxx:293
 TStyleManager.cxx:294
 TStyleManager.cxx:295
 TStyleManager.cxx:296
 TStyleManager.cxx:297
 TStyleManager.cxx:298
 TStyleManager.cxx:299
 TStyleManager.cxx:300
 TStyleManager.cxx:301
 TStyleManager.cxx:302
 TStyleManager.cxx:303
 TStyleManager.cxx:304
 TStyleManager.cxx:305
 TStyleManager.cxx:306
 TStyleManager.cxx:307
 TStyleManager.cxx:308
 TStyleManager.cxx:309
 TStyleManager.cxx:310
 TStyleManager.cxx:311
 TStyleManager.cxx:312
 TStyleManager.cxx:313
 TStyleManager.cxx:314
 TStyleManager.cxx:315
 TStyleManager.cxx:316
 TStyleManager.cxx:317
 TStyleManager.cxx:318
 TStyleManager.cxx:319
 TStyleManager.cxx:320
 TStyleManager.cxx:321
 TStyleManager.cxx:322
 TStyleManager.cxx:323
 TStyleManager.cxx:324
 TStyleManager.cxx:325
 TStyleManager.cxx:326
 TStyleManager.cxx:327
 TStyleManager.cxx:328
 TStyleManager.cxx:329
 TStyleManager.cxx:330
 TStyleManager.cxx:331
 TStyleManager.cxx:332
 TStyleManager.cxx:333
 TStyleManager.cxx:334
 TStyleManager.cxx:335
 TStyleManager.cxx:336
 TStyleManager.cxx:337
 TStyleManager.cxx:338
 TStyleManager.cxx:339
 TStyleManager.cxx:340
 TStyleManager.cxx:341
 TStyleManager.cxx:342
 TStyleManager.cxx:343
 TStyleManager.cxx:344
 TStyleManager.cxx:345
 TStyleManager.cxx:346
 TStyleManager.cxx:347
 TStyleManager.cxx:348
 TStyleManager.cxx:349
 TStyleManager.cxx:350
 TStyleManager.cxx:351
 TStyleManager.cxx:352
 TStyleManager.cxx:353
 TStyleManager.cxx:354
 TStyleManager.cxx:355
 TStyleManager.cxx:356
 TStyleManager.cxx:357
 TStyleManager.cxx:358
 TStyleManager.cxx:359
 TStyleManager.cxx:360
 TStyleManager.cxx:361
 TStyleManager.cxx:362
 TStyleManager.cxx:363
 TStyleManager.cxx:364
 TStyleManager.cxx:365
 TStyleManager.cxx:366
 TStyleManager.cxx:367
 TStyleManager.cxx:368
 TStyleManager.cxx:369
 TStyleManager.cxx:370
 TStyleManager.cxx:371
 TStyleManager.cxx:372
 TStyleManager.cxx:373
 TStyleManager.cxx:374
 TStyleManager.cxx:375
 TStyleManager.cxx:376
 TStyleManager.cxx:377
 TStyleManager.cxx:378
 TStyleManager.cxx:379
 TStyleManager.cxx:380
 TStyleManager.cxx:381
 TStyleManager.cxx:382
 TStyleManager.cxx:383
 TStyleManager.cxx:384
 TStyleManager.cxx:385
 TStyleManager.cxx:386
 TStyleManager.cxx:387
 TStyleManager.cxx:388
 TStyleManager.cxx:389
 TStyleManager.cxx:390
 TStyleManager.cxx:391
 TStyleManager.cxx:392
 TStyleManager.cxx:393
 TStyleManager.cxx:394
 TStyleManager.cxx:395
 TStyleManager.cxx:396
 TStyleManager.cxx:397
 TStyleManager.cxx:398
 TStyleManager.cxx:399
 TStyleManager.cxx:400
 TStyleManager.cxx:401
 TStyleManager.cxx:402
 TStyleManager.cxx:403
 TStyleManager.cxx:404
 TStyleManager.cxx:405
 TStyleManager.cxx:406
 TStyleManager.cxx:407
 TStyleManager.cxx:408
 TStyleManager.cxx:409
 TStyleManager.cxx:410
 TStyleManager.cxx:411
 TStyleManager.cxx:412
 TStyleManager.cxx:413
 TStyleManager.cxx:414
 TStyleManager.cxx:415
 TStyleManager.cxx:416
 TStyleManager.cxx:417
 TStyleManager.cxx:418
 TStyleManager.cxx:419
 TStyleManager.cxx:420
 TStyleManager.cxx:421
 TStyleManager.cxx:422
 TStyleManager.cxx:423
 TStyleManager.cxx:424
 TStyleManager.cxx:425
 TStyleManager.cxx:426
 TStyleManager.cxx:427
 TStyleManager.cxx:428
 TStyleManager.cxx:429
 TStyleManager.cxx:430
 TStyleManager.cxx:431
 TStyleManager.cxx:432
 TStyleManager.cxx:433
 TStyleManager.cxx:434
 TStyleManager.cxx:435
 TStyleManager.cxx:436
 TStyleManager.cxx:437
 TStyleManager.cxx:438
 TStyleManager.cxx:439
 TStyleManager.cxx:440
 TStyleManager.cxx:441
 TStyleManager.cxx:442
 TStyleManager.cxx:443
 TStyleManager.cxx:444
 TStyleManager.cxx:445
 TStyleManager.cxx:446
 TStyleManager.cxx:447
 TStyleManager.cxx:448
 TStyleManager.cxx:449
 TStyleManager.cxx:450
 TStyleManager.cxx:451
 TStyleManager.cxx:452
 TStyleManager.cxx:453
 TStyleManager.cxx:454
 TStyleManager.cxx:455
 TStyleManager.cxx:456
 TStyleManager.cxx:457
 TStyleManager.cxx:458
 TStyleManager.cxx:459
 TStyleManager.cxx:460
 TStyleManager.cxx:461
 TStyleManager.cxx:462
 TStyleManager.cxx:463
 TStyleManager.cxx:464
 TStyleManager.cxx:465
 TStyleManager.cxx:466
 TStyleManager.cxx:467
 TStyleManager.cxx:468
 TStyleManager.cxx:469
 TStyleManager.cxx:470
 TStyleManager.cxx:471
 TStyleManager.cxx:472
 TStyleManager.cxx:473
 TStyleManager.cxx:474
 TStyleManager.cxx:475
 TStyleManager.cxx:476
 TStyleManager.cxx:477
 TStyleManager.cxx:478
 TStyleManager.cxx:479
 TStyleManager.cxx:480
 TStyleManager.cxx:481
 TStyleManager.cxx:482
 TStyleManager.cxx:483
 TStyleManager.cxx:484
 TStyleManager.cxx:485
 TStyleManager.cxx:486
 TStyleManager.cxx:487
 TStyleManager.cxx:488
 TStyleManager.cxx:489
 TStyleManager.cxx:490
 TStyleManager.cxx:491
 TStyleManager.cxx:492
 TStyleManager.cxx:493
 TStyleManager.cxx:494
 TStyleManager.cxx:495
 TStyleManager.cxx:496
 TStyleManager.cxx:497
 TStyleManager.cxx:498
 TStyleManager.cxx:499
 TStyleManager.cxx:500
 TStyleManager.cxx:501
 TStyleManager.cxx:502
 TStyleManager.cxx:503
 TStyleManager.cxx:504
 TStyleManager.cxx:505
 TStyleManager.cxx:506
 TStyleManager.cxx:507
 TStyleManager.cxx:508
 TStyleManager.cxx:509
 TStyleManager.cxx:510
 TStyleManager.cxx:511
 TStyleManager.cxx:512
 TStyleManager.cxx:513
 TStyleManager.cxx:514
 TStyleManager.cxx:515
 TStyleManager.cxx:516
 TStyleManager.cxx:517
 TStyleManager.cxx:518
 TStyleManager.cxx:519
 TStyleManager.cxx:520
 TStyleManager.cxx:521
 TStyleManager.cxx:522
 TStyleManager.cxx:523
 TStyleManager.cxx:524
 TStyleManager.cxx:525
 TStyleManager.cxx:526
 TStyleManager.cxx:527
 TStyleManager.cxx:528
 TStyleManager.cxx:529
 TStyleManager.cxx:530
 TStyleManager.cxx:531
 TStyleManager.cxx:532
 TStyleManager.cxx:533
 TStyleManager.cxx:534
 TStyleManager.cxx:535
 TStyleManager.cxx:536
 TStyleManager.cxx:537
 TStyleManager.cxx:538
 TStyleManager.cxx:539
 TStyleManager.cxx:540
 TStyleManager.cxx:541
 TStyleManager.cxx:542
 TStyleManager.cxx:543
 TStyleManager.cxx:544
 TStyleManager.cxx:545
 TStyleManager.cxx:546
 TStyleManager.cxx:547
 TStyleManager.cxx:548
 TStyleManager.cxx:549
 TStyleManager.cxx:550
 TStyleManager.cxx:551
 TStyleManager.cxx:552
 TStyleManager.cxx:553
 TStyleManager.cxx:554
 TStyleManager.cxx:555
 TStyleManager.cxx:556
 TStyleManager.cxx:557
 TStyleManager.cxx:558
 TStyleManager.cxx:559
 TStyleManager.cxx:560
 TStyleManager.cxx:561
 TStyleManager.cxx:562
 TStyleManager.cxx:563
 TStyleManager.cxx:564
 TStyleManager.cxx:565
 TStyleManager.cxx:566
 TStyleManager.cxx:567
 TStyleManager.cxx:568
 TStyleManager.cxx:569
 TStyleManager.cxx:570
 TStyleManager.cxx:571
 TStyleManager.cxx:572
 TStyleManager.cxx:573
 TStyleManager.cxx:574
 TStyleManager.cxx:575
 TStyleManager.cxx:576
 TStyleManager.cxx:577
 TStyleManager.cxx:578
 TStyleManager.cxx:579
 TStyleManager.cxx:580
 TStyleManager.cxx:581
 TStyleManager.cxx:582
 TStyleManager.cxx:583
 TStyleManager.cxx:584
 TStyleManager.cxx:585
 TStyleManager.cxx:586
 TStyleManager.cxx:587
 TStyleManager.cxx:588
 TStyleManager.cxx:589
 TStyleManager.cxx:590
 TStyleManager.cxx:591
 TStyleManager.cxx:592
 TStyleManager.cxx:593
 TStyleManager.cxx:594
 TStyleManager.cxx:595
 TStyleManager.cxx:596
 TStyleManager.cxx:597
 TStyleManager.cxx:598
 TStyleManager.cxx:599
 TStyleManager.cxx:600
 TStyleManager.cxx:601
 TStyleManager.cxx:602
 TStyleManager.cxx:603
 TStyleManager.cxx:604
 TStyleManager.cxx:605
 TStyleManager.cxx:606
 TStyleManager.cxx:607
 TStyleManager.cxx:608
 TStyleManager.cxx:609
 TStyleManager.cxx:610
 TStyleManager.cxx:611
 TStyleManager.cxx:612
 TStyleManager.cxx:613
 TStyleManager.cxx:614
 TStyleManager.cxx:615
 TStyleManager.cxx:616
 TStyleManager.cxx:617
 TStyleManager.cxx:618
 TStyleManager.cxx:619
 TStyleManager.cxx:620
 TStyleManager.cxx:621
 TStyleManager.cxx:622
 TStyleManager.cxx:623
 TStyleManager.cxx:624
 TStyleManager.cxx:625
 TStyleManager.cxx:626
 TStyleManager.cxx:627
 TStyleManager.cxx:628
 TStyleManager.cxx:629
 TStyleManager.cxx:630
 TStyleManager.cxx:631
 TStyleManager.cxx:632
 TStyleManager.cxx:633
 TStyleManager.cxx:634
 TStyleManager.cxx:635
 TStyleManager.cxx:636
 TStyleManager.cxx:637
 TStyleManager.cxx:638
 TStyleManager.cxx:639
 TStyleManager.cxx:640
 TStyleManager.cxx:641
 TStyleManager.cxx:642
 TStyleManager.cxx:643
 TStyleManager.cxx:644
 TStyleManager.cxx:645
 TStyleManager.cxx:646
 TStyleManager.cxx:647
 TStyleManager.cxx:648
 TStyleManager.cxx:649
 TStyleManager.cxx:650
 TStyleManager.cxx:651
 TStyleManager.cxx:652
 TStyleManager.cxx:653
 TStyleManager.cxx:654
 TStyleManager.cxx:655
 TStyleManager.cxx:656
 TStyleManager.cxx:657
 TStyleManager.cxx:658
 TStyleManager.cxx:659
 TStyleManager.cxx:660
 TStyleManager.cxx:661
 TStyleManager.cxx:662
 TStyleManager.cxx:663
 TStyleManager.cxx:664
 TStyleManager.cxx:665
 TStyleManager.cxx:666
 TStyleManager.cxx:667
 TStyleManager.cxx:668
 TStyleManager.cxx:669
 TStyleManager.cxx:670
 TStyleManager.cxx:671
 TStyleManager.cxx:672
 TStyleManager.cxx:673
 TStyleManager.cxx:674
 TStyleManager.cxx:675
 TStyleManager.cxx:676
 TStyleManager.cxx:677
 TStyleManager.cxx:678
 TStyleManager.cxx:679
 TStyleManager.cxx:680
 TStyleManager.cxx:681
 TStyleManager.cxx:682
 TStyleManager.cxx:683
 TStyleManager.cxx:684
 TStyleManager.cxx:685
 TStyleManager.cxx:686
 TStyleManager.cxx:687
 TStyleManager.cxx:688
 TStyleManager.cxx:689
 TStyleManager.cxx:690
 TStyleManager.cxx:691
 TStyleManager.cxx:692
 TStyleManager.cxx:693
 TStyleManager.cxx:694
 TStyleManager.cxx:695
 TStyleManager.cxx:696
 TStyleManager.cxx:697
 TStyleManager.cxx:698
 TStyleManager.cxx:699
 TStyleManager.cxx:700
 TStyleManager.cxx:701
 TStyleManager.cxx:702
 TStyleManager.cxx:703
 TStyleManager.cxx:704
 TStyleManager.cxx:705
 TStyleManager.cxx:706
 TStyleManager.cxx:707
 TStyleManager.cxx:708
 TStyleManager.cxx:709
 TStyleManager.cxx:710
 TStyleManager.cxx:711
 TStyleManager.cxx:712
 TStyleManager.cxx:713
 TStyleManager.cxx:714
 TStyleManager.cxx:715
 TStyleManager.cxx:716
 TStyleManager.cxx:717
 TStyleManager.cxx:718
 TStyleManager.cxx:719
 TStyleManager.cxx:720
 TStyleManager.cxx:721
 TStyleManager.cxx:722
 TStyleManager.cxx:723
 TStyleManager.cxx:724
 TStyleManager.cxx:725
 TStyleManager.cxx:726
 TStyleManager.cxx:727
 TStyleManager.cxx:728
 TStyleManager.cxx:729
 TStyleManager.cxx:730
 TStyleManager.cxx:731
 TStyleManager.cxx:732
 TStyleManager.cxx:733
 TStyleManager.cxx:734
 TStyleManager.cxx:735
 TStyleManager.cxx:736
 TStyleManager.cxx:737
 TStyleManager.cxx:738
 TStyleManager.cxx:739
 TStyleManager.cxx:740
 TStyleManager.cxx:741
 TStyleManager.cxx:742
 TStyleManager.cxx:743
 TStyleManager.cxx:744
 TStyleManager.cxx:745
 TStyleManager.cxx:746
 TStyleManager.cxx:747
 TStyleManager.cxx:748
 TStyleManager.cxx:749
 TStyleManager.cxx:750
 TStyleManager.cxx:751
 TStyleManager.cxx:752
 TStyleManager.cxx:753
 TStyleManager.cxx:754
 TStyleManager.cxx:755
 TStyleManager.cxx:756
 TStyleManager.cxx:757
 TStyleManager.cxx:758
 TStyleManager.cxx:759
 TStyleManager.cxx:760
 TStyleManager.cxx:761
 TStyleManager.cxx:762
 TStyleManager.cxx:763
 TStyleManager.cxx:764
 TStyleManager.cxx:765
 TStyleManager.cxx:766
 TStyleManager.cxx:767
 TStyleManager.cxx:768
 TStyleManager.cxx:769
 TStyleManager.cxx:770
 TStyleManager.cxx:771
 TStyleManager.cxx:772
 TStyleManager.cxx:773
 TStyleManager.cxx:774
 TStyleManager.cxx:775
 TStyleManager.cxx:776
 TStyleManager.cxx:777
 TStyleManager.cxx:778
 TStyleManager.cxx:779
 TStyleManager.cxx:780
 TStyleManager.cxx:781
 TStyleManager.cxx:782
 TStyleManager.cxx:783
 TStyleManager.cxx:784
 TStyleManager.cxx:785
 TStyleManager.cxx:786
 TStyleManager.cxx:787
 TStyleManager.cxx:788
 TStyleManager.cxx:789
 TStyleManager.cxx:790
 TStyleManager.cxx:791
 TStyleManager.cxx:792
 TStyleManager.cxx:793
 TStyleManager.cxx:794
 TStyleManager.cxx:795
 TStyleManager.cxx:796
 TStyleManager.cxx:797
 TStyleManager.cxx:798
 TStyleManager.cxx:799
 TStyleManager.cxx:800
 TStyleManager.cxx:801
 TStyleManager.cxx:802
 TStyleManager.cxx:803
 TStyleManager.cxx:804
 TStyleManager.cxx:805
 TStyleManager.cxx:806
 TStyleManager.cxx:807
 TStyleManager.cxx:808
 TStyleManager.cxx:809
 TStyleManager.cxx:810
 TStyleManager.cxx:811
 TStyleManager.cxx:812
 TStyleManager.cxx:813
 TStyleManager.cxx:814
 TStyleManager.cxx:815
 TStyleManager.cxx:816
 TStyleManager.cxx:817
 TStyleManager.cxx:818
 TStyleManager.cxx:819
 TStyleManager.cxx:820
 TStyleManager.cxx:821
 TStyleManager.cxx:822
 TStyleManager.cxx:823
 TStyleManager.cxx:824
 TStyleManager.cxx:825
 TStyleManager.cxx:826
 TStyleManager.cxx:827
 TStyleManager.cxx:828
 TStyleManager.cxx:829
 TStyleManager.cxx:830
 TStyleManager.cxx:831
 TStyleManager.cxx:832
 TStyleManager.cxx:833
 TStyleManager.cxx:834
 TStyleManager.cxx:835
 TStyleManager.cxx:836
 TStyleManager.cxx:837
 TStyleManager.cxx:838
 TStyleManager.cxx:839
 TStyleManager.cxx:840
 TStyleManager.cxx:841
 TStyleManager.cxx:842
 TStyleManager.cxx:843
 TStyleManager.cxx:844
 TStyleManager.cxx:845
 TStyleManager.cxx:846
 TStyleManager.cxx:847
 TStyleManager.cxx:848
 TStyleManager.cxx:849
 TStyleManager.cxx:850
 TStyleManager.cxx:851
 TStyleManager.cxx:852
 TStyleManager.cxx:853
 TStyleManager.cxx:854
 TStyleManager.cxx:855
 TStyleManager.cxx:856
 TStyleManager.cxx:857
 TStyleManager.cxx:858
 TStyleManager.cxx:859
 TStyleManager.cxx:860
 TStyleManager.cxx:861
 TStyleManager.cxx:862
 TStyleManager.cxx:863
 TStyleManager.cxx:864
 TStyleManager.cxx:865
 TStyleManager.cxx:866
 TStyleManager.cxx:867
 TStyleManager.cxx:868
 TStyleManager.cxx:869
 TStyleManager.cxx:870
 TStyleManager.cxx:871
 TStyleManager.cxx:872
 TStyleManager.cxx:873
 TStyleManager.cxx:874
 TStyleManager.cxx:875
 TStyleManager.cxx:876
 TStyleManager.cxx:877
 TStyleManager.cxx:878
 TStyleManager.cxx:879
 TStyleManager.cxx:880
 TStyleManager.cxx:881
 TStyleManager.cxx:882
 TStyleManager.cxx:883
 TStyleManager.cxx:884
 TStyleManager.cxx:885
 TStyleManager.cxx:886
 TStyleManager.cxx:887
 TStyleManager.cxx:888
 TStyleManager.cxx:889
 TStyleManager.cxx:890
 TStyleManager.cxx:891
 TStyleManager.cxx:892
 TStyleManager.cxx:893
 TStyleManager.cxx:894
 TStyleManager.cxx:895
 TStyleManager.cxx:896
 TStyleManager.cxx:897
 TStyleManager.cxx:898
 TStyleManager.cxx:899
 TStyleManager.cxx:900
 TStyleManager.cxx:901
 TStyleManager.cxx:902
 TStyleManager.cxx:903
 TStyleManager.cxx:904
 TStyleManager.cxx:905
 TStyleManager.cxx:906
 TStyleManager.cxx:907
 TStyleManager.cxx:908
 TStyleManager.cxx:909
 TStyleManager.cxx:910
 TStyleManager.cxx:911
 TStyleManager.cxx:912
 TStyleManager.cxx:913
 TStyleManager.cxx:914
 TStyleManager.cxx:915
 TStyleManager.cxx:916
 TStyleManager.cxx:917
 TStyleManager.cxx:918
 TStyleManager.cxx:919
 TStyleManager.cxx:920
 TStyleManager.cxx:921
 TStyleManager.cxx:922
 TStyleManager.cxx:923
 TStyleManager.cxx:924
 TStyleManager.cxx:925
 TStyleManager.cxx:926
 TStyleManager.cxx:927
 TStyleManager.cxx:928
 TStyleManager.cxx:929
 TStyleManager.cxx:930
 TStyleManager.cxx:931
 TStyleManager.cxx:932
 TStyleManager.cxx:933
 TStyleManager.cxx:934
 TStyleManager.cxx:935
 TStyleManager.cxx:936
 TStyleManager.cxx:937
 TStyleManager.cxx:938
 TStyleManager.cxx:939
 TStyleManager.cxx:940
 TStyleManager.cxx:941
 TStyleManager.cxx:942
 TStyleManager.cxx:943
 TStyleManager.cxx:944
 TStyleManager.cxx:945
 TStyleManager.cxx:946
 TStyleManager.cxx:947
 TStyleManager.cxx:948
 TStyleManager.cxx:949
 TStyleManager.cxx:950
 TStyleManager.cxx:951
 TStyleManager.cxx:952
 TStyleManager.cxx:953
 TStyleManager.cxx:954
 TStyleManager.cxx:955
 TStyleManager.cxx:956
 TStyleManager.cxx:957
 TStyleManager.cxx:958
 TStyleManager.cxx:959
 TStyleManager.cxx:960
 TStyleManager.cxx:961
 TStyleManager.cxx:962
 TStyleManager.cxx:963
 TStyleManager.cxx:964
 TStyleManager.cxx:965
 TStyleManager.cxx:966
 TStyleManager.cxx:967
 TStyleManager.cxx:968
 TStyleManager.cxx:969
 TStyleManager.cxx:970
 TStyleManager.cxx:971
 TStyleManager.cxx:972
 TStyleManager.cxx:973
 TStyleManager.cxx:974
 TStyleManager.cxx:975
 TStyleManager.cxx:976
 TStyleManager.cxx:977
 TStyleManager.cxx:978
 TStyleManager.cxx:979
 TStyleManager.cxx:980
 TStyleManager.cxx:981
 TStyleManager.cxx:982
 TStyleManager.cxx:983
 TStyleManager.cxx:984
 TStyleManager.cxx:985
 TStyleManager.cxx:986
 TStyleManager.cxx:987
 TStyleManager.cxx:988
 TStyleManager.cxx:989
 TStyleManager.cxx:990
 TStyleManager.cxx:991
 TStyleManager.cxx:992
 TStyleManager.cxx:993
 TStyleManager.cxx:994
 TStyleManager.cxx:995
 TStyleManager.cxx:996
 TStyleManager.cxx:997
 TStyleManager.cxx:998
 TStyleManager.cxx:999
 TStyleManager.cxx:1000
 TStyleManager.cxx:1001
 TStyleManager.cxx:1002
 TStyleManager.cxx:1003
 TStyleManager.cxx:1004
 TStyleManager.cxx:1005
 TStyleManager.cxx:1006
 TStyleManager.cxx:1007
 TStyleManager.cxx:1008
 TStyleManager.cxx:1009
 TStyleManager.cxx:1010
 TStyleManager.cxx:1011
 TStyleManager.cxx:1012
 TStyleManager.cxx:1013
 TStyleManager.cxx:1014
 TStyleManager.cxx:1015
 TStyleManager.cxx:1016
 TStyleManager.cxx:1017
 TStyleManager.cxx:1018
 TStyleManager.cxx:1019
 TStyleManager.cxx:1020
 TStyleManager.cxx:1021
 TStyleManager.cxx:1022
 TStyleManager.cxx:1023
 TStyleManager.cxx:1024
 TStyleManager.cxx:1025
 TStyleManager.cxx:1026
 TStyleManager.cxx:1027
 TStyleManager.cxx:1028
 TStyleManager.cxx:1029
 TStyleManager.cxx:1030
 TStyleManager.cxx:1031
 TStyleManager.cxx:1032
 TStyleManager.cxx:1033
 TStyleManager.cxx:1034
 TStyleManager.cxx:1035
 TStyleManager.cxx:1036
 TStyleManager.cxx:1037
 TStyleManager.cxx:1038
 TStyleManager.cxx:1039
 TStyleManager.cxx:1040
 TStyleManager.cxx:1041
 TStyleManager.cxx:1042
 TStyleManager.cxx:1043
 TStyleManager.cxx:1044
 TStyleManager.cxx:1045
 TStyleManager.cxx:1046
 TStyleManager.cxx:1047
 TStyleManager.cxx:1048
 TStyleManager.cxx:1049
 TStyleManager.cxx:1050
 TStyleManager.cxx:1051
 TStyleManager.cxx:1052
 TStyleManager.cxx:1053
 TStyleManager.cxx:1054
 TStyleManager.cxx:1055
 TStyleManager.cxx:1056
 TStyleManager.cxx:1057
 TStyleManager.cxx:1058
 TStyleManager.cxx:1059
 TStyleManager.cxx:1060
 TStyleManager.cxx:1061
 TStyleManager.cxx:1062
 TStyleManager.cxx:1063
 TStyleManager.cxx:1064
 TStyleManager.cxx:1065
 TStyleManager.cxx:1066
 TStyleManager.cxx:1067
 TStyleManager.cxx:1068
 TStyleManager.cxx:1069
 TStyleManager.cxx:1070
 TStyleManager.cxx:1071
 TStyleManager.cxx:1072
 TStyleManager.cxx:1073
 TStyleManager.cxx:1074
 TStyleManager.cxx:1075
 TStyleManager.cxx:1076
 TStyleManager.cxx:1077
 TStyleManager.cxx:1078
 TStyleManager.cxx:1079
 TStyleManager.cxx:1080
 TStyleManager.cxx:1081
 TStyleManager.cxx:1082
 TStyleManager.cxx:1083
 TStyleManager.cxx:1084
 TStyleManager.cxx:1085
 TStyleManager.cxx:1086
 TStyleManager.cxx:1087
 TStyleManager.cxx:1088
 TStyleManager.cxx:1089
 TStyleManager.cxx:1090
 TStyleManager.cxx:1091
 TStyleManager.cxx:1092
 TStyleManager.cxx:1093
 TStyleManager.cxx:1094
 TStyleManager.cxx:1095
 TStyleManager.cxx:1096
 TStyleManager.cxx:1097
 TStyleManager.cxx:1098
 TStyleManager.cxx:1099
 TStyleManager.cxx:1100
 TStyleManager.cxx:1101
 TStyleManager.cxx:1102
 TStyleManager.cxx:1103
 TStyleManager.cxx:1104
 TStyleManager.cxx:1105
 TStyleManager.cxx:1106
 TStyleManager.cxx:1107
 TStyleManager.cxx:1108
 TStyleManager.cxx:1109
 TStyleManager.cxx:1110
 TStyleManager.cxx:1111
 TStyleManager.cxx:1112
 TStyleManager.cxx:1113
 TStyleManager.cxx:1114
 TStyleManager.cxx:1115
 TStyleManager.cxx:1116
 TStyleManager.cxx:1117
 TStyleManager.cxx:1118
 TStyleManager.cxx:1119
 TStyleManager.cxx:1120
 TStyleManager.cxx:1121
 TStyleManager.cxx:1122
 TStyleManager.cxx:1123
 TStyleManager.cxx:1124
 TStyleManager.cxx:1125
 TStyleManager.cxx:1126
 TStyleManager.cxx:1127
 TStyleManager.cxx:1128
 TStyleManager.cxx:1129
 TStyleManager.cxx:1130
 TStyleManager.cxx:1131
 TStyleManager.cxx:1132
 TStyleManager.cxx:1133
 TStyleManager.cxx:1134
 TStyleManager.cxx:1135
 TStyleManager.cxx:1136
 TStyleManager.cxx:1137
 TStyleManager.cxx:1138
 TStyleManager.cxx:1139
 TStyleManager.cxx:1140
 TStyleManager.cxx:1141
 TStyleManager.cxx:1142
 TStyleManager.cxx:1143
 TStyleManager.cxx:1144
 TStyleManager.cxx:1145
 TStyleManager.cxx:1146
 TStyleManager.cxx:1147
 TStyleManager.cxx:1148
 TStyleManager.cxx:1149
 TStyleManager.cxx:1150
 TStyleManager.cxx:1151
 TStyleManager.cxx:1152
 TStyleManager.cxx:1153
 TStyleManager.cxx:1154
 TStyleManager.cxx:1155
 TStyleManager.cxx:1156
 TStyleManager.cxx:1157
 TStyleManager.cxx:1158
 TStyleManager.cxx:1159
 TStyleManager.cxx:1160
 TStyleManager.cxx:1161
 TStyleManager.cxx:1162
 TStyleManager.cxx:1163
 TStyleManager.cxx:1164
 TStyleManager.cxx:1165
 TStyleManager.cxx:1166
 TStyleManager.cxx:1167
 TStyleManager.cxx:1168
 TStyleManager.cxx:1169
 TStyleManager.cxx:1170
 TStyleManager.cxx:1171
 TStyleManager.cxx:1172
 TStyleManager.cxx:1173
 TStyleManager.cxx:1174
 TStyleManager.cxx:1175
 TStyleManager.cxx:1176
 TStyleManager.cxx:1177
 TStyleManager.cxx:1178
 TStyleManager.cxx:1179
 TStyleManager.cxx:1180
 TStyleManager.cxx:1181
 TStyleManager.cxx:1182
 TStyleManager.cxx:1183
 TStyleManager.cxx:1184
 TStyleManager.cxx:1185
 TStyleManager.cxx:1186
 TStyleManager.cxx:1187
 TStyleManager.cxx:1188
 TStyleManager.cxx:1189
 TStyleManager.cxx:1190
 TStyleManager.cxx:1191
 TStyleManager.cxx:1192
 TStyleManager.cxx:1193
 TStyleManager.cxx:1194
 TStyleManager.cxx:1195
 TStyleManager.cxx:1196
 TStyleManager.cxx:1197
 TStyleManager.cxx:1198
 TStyleManager.cxx:1199
 TStyleManager.cxx:1200
 TStyleManager.cxx:1201
 TStyleManager.cxx:1202
 TStyleManager.cxx:1203
 TStyleManager.cxx:1204
 TStyleManager.cxx:1205
 TStyleManager.cxx:1206
 TStyleManager.cxx:1207
 TStyleManager.cxx:1208
 TStyleManager.cxx:1209
 TStyleManager.cxx:1210
 TStyleManager.cxx:1211
 TStyleManager.cxx:1212
 TStyleManager.cxx:1213
 TStyleManager.cxx:1214
 TStyleManager.cxx:1215
 TStyleManager.cxx:1216
 TStyleManager.cxx:1217
 TStyleManager.cxx:1218
 TStyleManager.cxx:1219
 TStyleManager.cxx:1220
 TStyleManager.cxx:1221
 TStyleManager.cxx:1222
 TStyleManager.cxx:1223
 TStyleManager.cxx:1224
 TStyleManager.cxx:1225
 TStyleManager.cxx:1226
 TStyleManager.cxx:1227
 TStyleManager.cxx:1228
 TStyleManager.cxx:1229
 TStyleManager.cxx:1230
 TStyleManager.cxx:1231
 TStyleManager.cxx:1232
 TStyleManager.cxx:1233
 TStyleManager.cxx:1234
 TStyleManager.cxx:1235
 TStyleManager.cxx:1236
 TStyleManager.cxx:1237
 TStyleManager.cxx:1238
 TStyleManager.cxx:1239
 TStyleManager.cxx:1240
 TStyleManager.cxx:1241
 TStyleManager.cxx:1242
 TStyleManager.cxx:1243
 TStyleManager.cxx:1244
 TStyleManager.cxx:1245
 TStyleManager.cxx:1246
 TStyleManager.cxx:1247
 TStyleManager.cxx:1248
 TStyleManager.cxx:1249
 TStyleManager.cxx:1250
 TStyleManager.cxx:1251
 TStyleManager.cxx:1252
 TStyleManager.cxx:1253
 TStyleManager.cxx:1254
 TStyleManager.cxx:1255
 TStyleManager.cxx:1256
 TStyleManager.cxx:1257
 TStyleManager.cxx:1258
 TStyleManager.cxx:1259
 TStyleManager.cxx:1260
 TStyleManager.cxx:1261
 TStyleManager.cxx:1262
 TStyleManager.cxx:1263
 TStyleManager.cxx:1264
 TStyleManager.cxx:1265
 TStyleManager.cxx:1266
 TStyleManager.cxx:1267
 TStyleManager.cxx:1268
 TStyleManager.cxx:1269
 TStyleManager.cxx:1270
 TStyleManager.cxx:1271
 TStyleManager.cxx:1272
 TStyleManager.cxx:1273
 TStyleManager.cxx:1274
 TStyleManager.cxx:1275
 TStyleManager.cxx:1276
 TStyleManager.cxx:1277
 TStyleManager.cxx:1278
 TStyleManager.cxx:1279
 TStyleManager.cxx:1280
 TStyleManager.cxx:1281
 TStyleManager.cxx:1282
 TStyleManager.cxx:1283
 TStyleManager.cxx:1284
 TStyleManager.cxx:1285
 TStyleManager.cxx:1286
 TStyleManager.cxx:1287
 TStyleManager.cxx:1288
 TStyleManager.cxx:1289
 TStyleManager.cxx:1290
 TStyleManager.cxx:1291
 TStyleManager.cxx:1292
 TStyleManager.cxx:1293
 TStyleManager.cxx:1294
 TStyleManager.cxx:1295
 TStyleManager.cxx:1296
 TStyleManager.cxx:1297
 TStyleManager.cxx:1298
 TStyleManager.cxx:1299
 TStyleManager.cxx:1300
 TStyleManager.cxx:1301
 TStyleManager.cxx:1302
 TStyleManager.cxx:1303
 TStyleManager.cxx:1304
 TStyleManager.cxx:1305
 TStyleManager.cxx:1306
 TStyleManager.cxx:1307
 TStyleManager.cxx:1308
 TStyleManager.cxx:1309
 TStyleManager.cxx:1310
 TStyleManager.cxx:1311
 TStyleManager.cxx:1312
 TStyleManager.cxx:1313
 TStyleManager.cxx:1314
 TStyleManager.cxx:1315
 TStyleManager.cxx:1316
 TStyleManager.cxx:1317
 TStyleManager.cxx:1318
 TStyleManager.cxx:1319
 TStyleManager.cxx:1320
 TStyleManager.cxx:1321
 TStyleManager.cxx:1322
 TStyleManager.cxx:1323
 TStyleManager.cxx:1324
 TStyleManager.cxx:1325
 TStyleManager.cxx:1326
 TStyleManager.cxx:1327
 TStyleManager.cxx:1328
 TStyleManager.cxx:1329
 TStyleManager.cxx:1330
 TStyleManager.cxx:1331
 TStyleManager.cxx:1332
 TStyleManager.cxx:1333
 TStyleManager.cxx:1334
 TStyleManager.cxx:1335
 TStyleManager.cxx:1336
 TStyleManager.cxx:1337
 TStyleManager.cxx:1338
 TStyleManager.cxx:1339
 TStyleManager.cxx:1340
 TStyleManager.cxx:1341
 TStyleManager.cxx:1342
 TStyleManager.cxx:1343
 TStyleManager.cxx:1344
 TStyleManager.cxx:1345
 TStyleManager.cxx:1346
 TStyleManager.cxx:1347
 TStyleManager.cxx:1348
 TStyleManager.cxx:1349
 TStyleManager.cxx:1350
 TStyleManager.cxx:1351
 TStyleManager.cxx:1352
 TStyleManager.cxx:1353
 TStyleManager.cxx:1354
 TStyleManager.cxx:1355
 TStyleManager.cxx:1356
 TStyleManager.cxx:1357
 TStyleManager.cxx:1358
 TStyleManager.cxx:1359
 TStyleManager.cxx:1360
 TStyleManager.cxx:1361
 TStyleManager.cxx:1362
 TStyleManager.cxx:1363
 TStyleManager.cxx:1364
 TStyleManager.cxx:1365
 TStyleManager.cxx:1366
 TStyleManager.cxx:1367
 TStyleManager.cxx:1368
 TStyleManager.cxx:1369
 TStyleManager.cxx:1370
 TStyleManager.cxx:1371
 TStyleManager.cxx:1372
 TStyleManager.cxx:1373
 TStyleManager.cxx:1374
 TStyleManager.cxx:1375
 TStyleManager.cxx:1376
 TStyleManager.cxx:1377
 TStyleManager.cxx:1378
 TStyleManager.cxx:1379
 TStyleManager.cxx:1380
 TStyleManager.cxx:1381
 TStyleManager.cxx:1382
 TStyleManager.cxx:1383
 TStyleManager.cxx:1384
 TStyleManager.cxx:1385
 TStyleManager.cxx:1386
 TStyleManager.cxx:1387
 TStyleManager.cxx:1388
 TStyleManager.cxx:1389
 TStyleManager.cxx:1390
 TStyleManager.cxx:1391
 TStyleManager.cxx:1392
 TStyleManager.cxx:1393
 TStyleManager.cxx:1394
 TStyleManager.cxx:1395
 TStyleManager.cxx:1396
 TStyleManager.cxx:1397
 TStyleManager.cxx:1398
 TStyleManager.cxx:1399
 TStyleManager.cxx:1400
 TStyleManager.cxx:1401
 TStyleManager.cxx:1402
 TStyleManager.cxx:1403
 TStyleManager.cxx:1404
 TStyleManager.cxx:1405
 TStyleManager.cxx:1406
 TStyleManager.cxx:1407
 TStyleManager.cxx:1408
 TStyleManager.cxx:1409
 TStyleManager.cxx:1410
 TStyleManager.cxx:1411
 TStyleManager.cxx:1412
 TStyleManager.cxx:1413
 TStyleManager.cxx:1414
 TStyleManager.cxx:1415
 TStyleManager.cxx:1416
 TStyleManager.cxx:1417
 TStyleManager.cxx:1418
 TStyleManager.cxx:1419
 TStyleManager.cxx:1420
 TStyleManager.cxx:1421
 TStyleManager.cxx:1422
 TStyleManager.cxx:1423
 TStyleManager.cxx:1424
 TStyleManager.cxx:1425
 TStyleManager.cxx:1426
 TStyleManager.cxx:1427
 TStyleManager.cxx:1428
 TStyleManager.cxx:1429
 TStyleManager.cxx:1430
 TStyleManager.cxx:1431
 TStyleManager.cxx:1432
 TStyleManager.cxx:1433
 TStyleManager.cxx:1434
 TStyleManager.cxx:1435
 TStyleManager.cxx:1436
 TStyleManager.cxx:1437
 TStyleManager.cxx:1438
 TStyleManager.cxx:1439
 TStyleManager.cxx:1440
 TStyleManager.cxx:1441
 TStyleManager.cxx:1442
 TStyleManager.cxx:1443
 TStyleManager.cxx:1444
 TStyleManager.cxx:1445
 TStyleManager.cxx:1446
 TStyleManager.cxx:1447
 TStyleManager.cxx:1448
 TStyleManager.cxx:1449
 TStyleManager.cxx:1450
 TStyleManager.cxx:1451
 TStyleManager.cxx:1452
 TStyleManager.cxx:1453
 TStyleManager.cxx:1454
 TStyleManager.cxx:1455
 TStyleManager.cxx:1456
 TStyleManager.cxx:1457
 TStyleManager.cxx:1458
 TStyleManager.cxx:1459
 TStyleManager.cxx:1460
 TStyleManager.cxx:1461
 TStyleManager.cxx:1462
 TStyleManager.cxx:1463
 TStyleManager.cxx:1464
 TStyleManager.cxx:1465
 TStyleManager.cxx:1466
 TStyleManager.cxx:1467
 TStyleManager.cxx:1468
 TStyleManager.cxx:1469
 TStyleManager.cxx:1470
 TStyleManager.cxx:1471
 TStyleManager.cxx:1472
 TStyleManager.cxx:1473
 TStyleManager.cxx:1474
 TStyleManager.cxx:1475
 TStyleManager.cxx:1476
 TStyleManager.cxx:1477
 TStyleManager.cxx:1478
 TStyleManager.cxx:1479
 TStyleManager.cxx:1480
 TStyleManager.cxx:1481
 TStyleManager.cxx:1482
 TStyleManager.cxx:1483
 TStyleManager.cxx:1484
 TStyleManager.cxx:1485
 TStyleManager.cxx:1486
 TStyleManager.cxx:1487
 TStyleManager.cxx:1488
 TStyleManager.cxx:1489
 TStyleManager.cxx:1490
 TStyleManager.cxx:1491
 TStyleManager.cxx:1492
 TStyleManager.cxx:1493
 TStyleManager.cxx:1494
 TStyleManager.cxx:1495
 TStyleManager.cxx:1496
 TStyleManager.cxx:1497
 TStyleManager.cxx:1498
 TStyleManager.cxx:1499
 TStyleManager.cxx:1500
 TStyleManager.cxx:1501
 TStyleManager.cxx:1502
 TStyleManager.cxx:1503
 TStyleManager.cxx:1504
 TStyleManager.cxx:1505
 TStyleManager.cxx:1506
 TStyleManager.cxx:1507
 TStyleManager.cxx:1508
 TStyleManager.cxx:1509
 TStyleManager.cxx:1510
 TStyleManager.cxx:1511
 TStyleManager.cxx:1512
 TStyleManager.cxx:1513
 TStyleManager.cxx:1514
 TStyleManager.cxx:1515
 TStyleManager.cxx:1516
 TStyleManager.cxx:1517
 TStyleManager.cxx:1518
 TStyleManager.cxx:1519
 TStyleManager.cxx:1520
 TStyleManager.cxx:1521
 TStyleManager.cxx:1522
 TStyleManager.cxx:1523
 TStyleManager.cxx:1524
 TStyleManager.cxx:1525
 TStyleManager.cxx:1526
 TStyleManager.cxx:1527
 TStyleManager.cxx:1528
 TStyleManager.cxx:1529
 TStyleManager.cxx:1530
 TStyleManager.cxx:1531
 TStyleManager.cxx:1532
 TStyleManager.cxx:1533
 TStyleManager.cxx:1534
 TStyleManager.cxx:1535
 TStyleManager.cxx:1536
 TStyleManager.cxx:1537
 TStyleManager.cxx:1538
 TStyleManager.cxx:1539
 TStyleManager.cxx:1540
 TStyleManager.cxx:1541
 TStyleManager.cxx:1542
 TStyleManager.cxx:1543
 TStyleManager.cxx:1544
 TStyleManager.cxx:1545
 TStyleManager.cxx:1546
 TStyleManager.cxx:1547
 TStyleManager.cxx:1548
 TStyleManager.cxx:1549
 TStyleManager.cxx:1550
 TStyleManager.cxx:1551
 TStyleManager.cxx:1552
 TStyleManager.cxx:1553
 TStyleManager.cxx:1554
 TStyleManager.cxx:1555
 TStyleManager.cxx:1556
 TStyleManager.cxx:1557
 TStyleManager.cxx:1558
 TStyleManager.cxx:1559
 TStyleManager.cxx:1560
 TStyleManager.cxx:1561
 TStyleManager.cxx:1562
 TStyleManager.cxx:1563
 TStyleManager.cxx:1564
 TStyleManager.cxx:1565
 TStyleManager.cxx:1566
 TStyleManager.cxx:1567
 TStyleManager.cxx:1568
 TStyleManager.cxx:1569
 TStyleManager.cxx:1570
 TStyleManager.cxx:1571
 TStyleManager.cxx:1572
 TStyleManager.cxx:1573
 TStyleManager.cxx:1574
 TStyleManager.cxx:1575
 TStyleManager.cxx:1576
 TStyleManager.cxx:1577
 TStyleManager.cxx:1578
 TStyleManager.cxx:1579
 TStyleManager.cxx:1580
 TStyleManager.cxx:1581
 TStyleManager.cxx:1582
 TStyleManager.cxx:1583
 TStyleManager.cxx:1584
 TStyleManager.cxx:1585
 TStyleManager.cxx:1586
 TStyleManager.cxx:1587
 TStyleManager.cxx:1588
 TStyleManager.cxx:1589
 TStyleManager.cxx:1590
 TStyleManager.cxx:1591
 TStyleManager.cxx:1592
 TStyleManager.cxx:1593
 TStyleManager.cxx:1594
 TStyleManager.cxx:1595
 TStyleManager.cxx:1596
 TStyleManager.cxx:1597
 TStyleManager.cxx:1598
 TStyleManager.cxx:1599
 TStyleManager.cxx:1600
 TStyleManager.cxx:1601
 TStyleManager.cxx:1602
 TStyleManager.cxx:1603
 TStyleManager.cxx:1604
 TStyleManager.cxx:1605
 TStyleManager.cxx:1606
 TStyleManager.cxx:1607
 TStyleManager.cxx:1608
 TStyleManager.cxx:1609
 TStyleManager.cxx:1610
 TStyleManager.cxx:1611
 TStyleManager.cxx:1612
 TStyleManager.cxx:1613
 TStyleManager.cxx:1614
 TStyleManager.cxx:1615
 TStyleManager.cxx:1616
 TStyleManager.cxx:1617
 TStyleManager.cxx:1618
 TStyleManager.cxx:1619
 TStyleManager.cxx:1620
 TStyleManager.cxx:1621
 TStyleManager.cxx:1622
 TStyleManager.cxx:1623
 TStyleManager.cxx:1624
 TStyleManager.cxx:1625
 TStyleManager.cxx:1626
 TStyleManager.cxx:1627
 TStyleManager.cxx:1628
 TStyleManager.cxx:1629
 TStyleManager.cxx:1630
 TStyleManager.cxx:1631
 TStyleManager.cxx:1632
 TStyleManager.cxx:1633
 TStyleManager.cxx:1634
 TStyleManager.cxx:1635
 TStyleManager.cxx:1636
 TStyleManager.cxx:1637
 TStyleManager.cxx:1638
 TStyleManager.cxx:1639
 TStyleManager.cxx:1640
 TStyleManager.cxx:1641
 TStyleManager.cxx:1642
 TStyleManager.cxx:1643
 TStyleManager.cxx:1644
 TStyleManager.cxx:1645
 TStyleManager.cxx:1646
 TStyleManager.cxx:1647
 TStyleManager.cxx:1648
 TStyleManager.cxx:1649
 TStyleManager.cxx:1650
 TStyleManager.cxx:1651
 TStyleManager.cxx:1652
 TStyleManager.cxx:1653
 TStyleManager.cxx:1654
 TStyleManager.cxx:1655
 TStyleManager.cxx:1656
 TStyleManager.cxx:1657
 TStyleManager.cxx:1658
 TStyleManager.cxx:1659
 TStyleManager.cxx:1660
 TStyleManager.cxx:1661
 TStyleManager.cxx:1662
 TStyleManager.cxx:1663
 TStyleManager.cxx:1664
 TStyleManager.cxx:1665
 TStyleManager.cxx:1666
 TStyleManager.cxx:1667
 TStyleManager.cxx:1668
 TStyleManager.cxx:1669
 TStyleManager.cxx:1670
 TStyleManager.cxx:1671
 TStyleManager.cxx:1672
 TStyleManager.cxx:1673
 TStyleManager.cxx:1674
 TStyleManager.cxx:1675
 TStyleManager.cxx:1676
 TStyleManager.cxx:1677
 TStyleManager.cxx:1678
 TStyleManager.cxx:1679
 TStyleManager.cxx:1680
 TStyleManager.cxx:1681
 TStyleManager.cxx:1682
 TStyleManager.cxx:1683
 TStyleManager.cxx:1684
 TStyleManager.cxx:1685
 TStyleManager.cxx:1686
 TStyleManager.cxx:1687
 TStyleManager.cxx:1688
 TStyleManager.cxx:1689
 TStyleManager.cxx:1690
 TStyleManager.cxx:1691
 TStyleManager.cxx:1692
 TStyleManager.cxx:1693
 TStyleManager.cxx:1694
 TStyleManager.cxx:1695
 TStyleManager.cxx:1696
 TStyleManager.cxx:1697
 TStyleManager.cxx:1698
 TStyleManager.cxx:1699
 TStyleManager.cxx:1700
 TStyleManager.cxx:1701
 TStyleManager.cxx:1702
 TStyleManager.cxx:1703
 TStyleManager.cxx:1704
 TStyleManager.cxx:1705
 TStyleManager.cxx:1706
 TStyleManager.cxx:1707
 TStyleManager.cxx:1708
 TStyleManager.cxx:1709
 TStyleManager.cxx:1710
 TStyleManager.cxx:1711
 TStyleManager.cxx:1712
 TStyleManager.cxx:1713
 TStyleManager.cxx:1714
 TStyleManager.cxx:1715
 TStyleManager.cxx:1716
 TStyleManager.cxx:1717
 TStyleManager.cxx:1718
 TStyleManager.cxx:1719
 TStyleManager.cxx:1720
 TStyleManager.cxx:1721
 TStyleManager.cxx:1722
 TStyleManager.cxx:1723
 TStyleManager.cxx:1724
 TStyleManager.cxx:1725
 TStyleManager.cxx:1726
 TStyleManager.cxx:1727
 TStyleManager.cxx:1728
 TStyleManager.cxx:1729
 TStyleManager.cxx:1730
 TStyleManager.cxx:1731
 TStyleManager.cxx:1732
 TStyleManager.cxx:1733
 TStyleManager.cxx:1734
 TStyleManager.cxx:1735
 TStyleManager.cxx:1736
 TStyleManager.cxx:1737
 TStyleManager.cxx:1738
 TStyleManager.cxx:1739
 TStyleManager.cxx:1740
 TStyleManager.cxx:1741
 TStyleManager.cxx:1742
 TStyleManager.cxx:1743
 TStyleManager.cxx:1744
 TStyleManager.cxx:1745
 TStyleManager.cxx:1746
 TStyleManager.cxx:1747
 TStyleManager.cxx:1748
 TStyleManager.cxx:1749
 TStyleManager.cxx:1750
 TStyleManager.cxx:1751
 TStyleManager.cxx:1752
 TStyleManager.cxx:1753
 TStyleManager.cxx:1754
 TStyleManager.cxx:1755
 TStyleManager.cxx:1756
 TStyleManager.cxx:1757
 TStyleManager.cxx:1758
 TStyleManager.cxx:1759
 TStyleManager.cxx:1760
 TStyleManager.cxx:1761
 TStyleManager.cxx:1762
 TStyleManager.cxx:1763
 TStyleManager.cxx:1764
 TStyleManager.cxx:1765
 TStyleManager.cxx:1766
 TStyleManager.cxx:1767
 TStyleManager.cxx:1768
 TStyleManager.cxx:1769
 TStyleManager.cxx:1770
 TStyleManager.cxx:1771
 TStyleManager.cxx:1772
 TStyleManager.cxx:1773
 TStyleManager.cxx:1774
 TStyleManager.cxx:1775
 TStyleManager.cxx:1776
 TStyleManager.cxx:1777
 TStyleManager.cxx:1778
 TStyleManager.cxx:1779
 TStyleManager.cxx:1780
 TStyleManager.cxx:1781
 TStyleManager.cxx:1782
 TStyleManager.cxx:1783
 TStyleManager.cxx:1784
 TStyleManager.cxx:1785
 TStyleManager.cxx:1786
 TStyleManager.cxx:1787
 TStyleManager.cxx:1788
 TStyleManager.cxx:1789
 TStyleManager.cxx:1790
 TStyleManager.cxx:1791
 TStyleManager.cxx:1792
 TStyleManager.cxx:1793
 TStyleManager.cxx:1794
 TStyleManager.cxx:1795
 TStyleManager.cxx:1796
 TStyleManager.cxx:1797
 TStyleManager.cxx:1798
 TStyleManager.cxx:1799
 TStyleManager.cxx:1800
 TStyleManager.cxx:1801
 TStyleManager.cxx:1802
 TStyleManager.cxx:1803
 TStyleManager.cxx:1804
 TStyleManager.cxx:1805
 TStyleManager.cxx:1806
 TStyleManager.cxx:1807
 TStyleManager.cxx:1808
 TStyleManager.cxx:1809
 TStyleManager.cxx:1810
 TStyleManager.cxx:1811
 TStyleManager.cxx:1812
 TStyleManager.cxx:1813
 TStyleManager.cxx:1814
 TStyleManager.cxx:1815
 TStyleManager.cxx:1816
 TStyleManager.cxx:1817
 TStyleManager.cxx:1818
 TStyleManager.cxx:1819
 TStyleManager.cxx:1820
 TStyleManager.cxx:1821
 TStyleManager.cxx:1822
 TStyleManager.cxx:1823
 TStyleManager.cxx:1824
 TStyleManager.cxx:1825
 TStyleManager.cxx:1826
 TStyleManager.cxx:1827
 TStyleManager.cxx:1828
 TStyleManager.cxx:1829
 TStyleManager.cxx:1830
 TStyleManager.cxx:1831
 TStyleManager.cxx:1832
 TStyleManager.cxx:1833
 TStyleManager.cxx:1834
 TStyleManager.cxx:1835
 TStyleManager.cxx:1836
 TStyleManager.cxx:1837
 TStyleManager.cxx:1838
 TStyleManager.cxx:1839
 TStyleManager.cxx:1840
 TStyleManager.cxx:1841
 TStyleManager.cxx:1842
 TStyleManager.cxx:1843
 TStyleManager.cxx:1844
 TStyleManager.cxx:1845
 TStyleManager.cxx:1846
 TStyleManager.cxx:1847
 TStyleManager.cxx:1848
 TStyleManager.cxx:1849
 TStyleManager.cxx:1850
 TStyleManager.cxx:1851
 TStyleManager.cxx:1852
 TStyleManager.cxx:1853
 TStyleManager.cxx:1854
 TStyleManager.cxx:1855
 TStyleManager.cxx:1856
 TStyleManager.cxx:1857
 TStyleManager.cxx:1858
 TStyleManager.cxx:1859
 TStyleManager.cxx:1860
 TStyleManager.cxx:1861
 TStyleManager.cxx:1862
 TStyleManager.cxx:1863
 TStyleManager.cxx:1864
 TStyleManager.cxx:1865
 TStyleManager.cxx:1866
 TStyleManager.cxx:1867
 TStyleManager.cxx:1868
 TStyleManager.cxx:1869
 TStyleManager.cxx:1870
 TStyleManager.cxx:1871
 TStyleManager.cxx:1872
 TStyleManager.cxx:1873
 TStyleManager.cxx:1874
 TStyleManager.cxx:1875
 TStyleManager.cxx:1876
 TStyleManager.cxx:1877
 TStyleManager.cxx:1878
 TStyleManager.cxx:1879
 TStyleManager.cxx:1880
 TStyleManager.cxx:1881
 TStyleManager.cxx:1882
 TStyleManager.cxx:1883
 TStyleManager.cxx:1884
 TStyleManager.cxx:1885
 TStyleManager.cxx:1886
 TStyleManager.cxx:1887
 TStyleManager.cxx:1888
 TStyleManager.cxx:1889
 TStyleManager.cxx:1890
 TStyleManager.cxx:1891
 TStyleManager.cxx:1892
 TStyleManager.cxx:1893
 TStyleManager.cxx:1894
 TStyleManager.cxx:1895
 TStyleManager.cxx:1896
 TStyleManager.cxx:1897
 TStyleManager.cxx:1898
 TStyleManager.cxx:1899
 TStyleManager.cxx:1900
 TStyleManager.cxx:1901
 TStyleManager.cxx:1902
 TStyleManager.cxx:1903
 TStyleManager.cxx:1904
 TStyleManager.cxx:1905
 TStyleManager.cxx:1906
 TStyleManager.cxx:1907
 TStyleManager.cxx:1908
 TStyleManager.cxx:1909
 TStyleManager.cxx:1910
 TStyleManager.cxx:1911
 TStyleManager.cxx:1912
 TStyleManager.cxx:1913
 TStyleManager.cxx:1914
 TStyleManager.cxx:1915
 TStyleManager.cxx:1916
 TStyleManager.cxx:1917
 TStyleManager.cxx:1918
 TStyleManager.cxx:1919
 TStyleManager.cxx:1920
 TStyleManager.cxx:1921
 TStyleManager.cxx:1922
 TStyleManager.cxx:1923
 TStyleManager.cxx:1924
 TStyleManager.cxx:1925
 TStyleManager.cxx:1926
 TStyleManager.cxx:1927
 TStyleManager.cxx:1928
 TStyleManager.cxx:1929
 TStyleManager.cxx:1930
 TStyleManager.cxx:1931
 TStyleManager.cxx:1932
 TStyleManager.cxx:1933
 TStyleManager.cxx:1934
 TStyleManager.cxx:1935
 TStyleManager.cxx:1936
 TStyleManager.cxx:1937
 TStyleManager.cxx:1938
 TStyleManager.cxx:1939
 TStyleManager.cxx:1940
 TStyleManager.cxx:1941
 TStyleManager.cxx:1942
 TStyleManager.cxx:1943
 TStyleManager.cxx:1944
 TStyleManager.cxx:1945
 TStyleManager.cxx:1946
 TStyleManager.cxx:1947
 TStyleManager.cxx:1948
 TStyleManager.cxx:1949
 TStyleManager.cxx:1950
 TStyleManager.cxx:1951
 TStyleManager.cxx:1952
 TStyleManager.cxx:1953
 TStyleManager.cxx:1954
 TStyleManager.cxx:1955
 TStyleManager.cxx:1956
 TStyleManager.cxx:1957
 TStyleManager.cxx:1958
 TStyleManager.cxx:1959
 TStyleManager.cxx:1960
 TStyleManager.cxx:1961
 TStyleManager.cxx:1962
 TStyleManager.cxx:1963
 TStyleManager.cxx:1964
 TStyleManager.cxx:1965
 TStyleManager.cxx:1966
 TStyleManager.cxx:1967
 TStyleManager.cxx:1968
 TStyleManager.cxx:1969
 TStyleManager.cxx:1970
 TStyleManager.cxx:1971
 TStyleManager.cxx:1972
 TStyleManager.cxx:1973
 TStyleManager.cxx:1974
 TStyleManager.cxx:1975
 TStyleManager.cxx:1976
 TStyleManager.cxx:1977
 TStyleManager.cxx:1978
 TStyleManager.cxx:1979
 TStyleManager.cxx:1980
 TStyleManager.cxx:1981
 TStyleManager.cxx:1982
 TStyleManager.cxx:1983
 TStyleManager.cxx:1984
 TStyleManager.cxx:1985
 TStyleManager.cxx:1986
 TStyleManager.cxx:1987
 TStyleManager.cxx:1988
 TStyleManager.cxx:1989
 TStyleManager.cxx:1990
 TStyleManager.cxx:1991
 TStyleManager.cxx:1992
 TStyleManager.cxx:1993
 TStyleManager.cxx:1994
 TStyleManager.cxx:1995
 TStyleManager.cxx:1996
 TStyleManager.cxx:1997
 TStyleManager.cxx:1998
 TStyleManager.cxx:1999
 TStyleManager.cxx:2000
 TStyleManager.cxx:2001
 TStyleManager.cxx:2002
 TStyleManager.cxx:2003
 TStyleManager.cxx:2004
 TStyleManager.cxx:2005
 TStyleManager.cxx:2006
 TStyleManager.cxx:2007
 TStyleManager.cxx:2008
 TStyleManager.cxx:2009
 TStyleManager.cxx:2010
 TStyleManager.cxx:2011
 TStyleManager.cxx:2012
 TStyleManager.cxx:2013
 TStyleManager.cxx:2014
 TStyleManager.cxx:2015
 TStyleManager.cxx:2016
 TStyleManager.cxx:2017
 TStyleManager.cxx:2018
 TStyleManager.cxx:2019
 TStyleManager.cxx:2020
 TStyleManager.cxx:2021
 TStyleManager.cxx:2022
 TStyleManager.cxx:2023
 TStyleManager.cxx:2024
 TStyleManager.cxx:2025
 TStyleManager.cxx:2026
 TStyleManager.cxx:2027
 TStyleManager.cxx:2028
 TStyleManager.cxx:2029
 TStyleManager.cxx:2030
 TStyleManager.cxx:2031
 TStyleManager.cxx:2032
 TStyleManager.cxx:2033
 TStyleManager.cxx:2034
 TStyleManager.cxx:2035
 TStyleManager.cxx:2036
 TStyleManager.cxx:2037
 TStyleManager.cxx:2038
 TStyleManager.cxx:2039
 TStyleManager.cxx:2040
 TStyleManager.cxx:2041
 TStyleManager.cxx:2042
 TStyleManager.cxx:2043
 TStyleManager.cxx:2044
 TStyleManager.cxx:2045
 TStyleManager.cxx:2046
 TStyleManager.cxx:2047
 TStyleManager.cxx:2048
 TStyleManager.cxx:2049
 TStyleManager.cxx:2050
 TStyleManager.cxx:2051
 TStyleManager.cxx:2052
 TStyleManager.cxx:2053
 TStyleManager.cxx:2054
 TStyleManager.cxx:2055
 TStyleManager.cxx:2056
 TStyleManager.cxx:2057
 TStyleManager.cxx:2058
 TStyleManager.cxx:2059
 TStyleManager.cxx:2060
 TStyleManager.cxx:2061
 TStyleManager.cxx:2062
 TStyleManager.cxx:2063
 TStyleManager.cxx:2064
 TStyleManager.cxx:2065
 TStyleManager.cxx:2066
 TStyleManager.cxx:2067
 TStyleManager.cxx:2068
 TStyleManager.cxx:2069
 TStyleManager.cxx:2070
 TStyleManager.cxx:2071
 TStyleManager.cxx:2072
 TStyleManager.cxx:2073
 TStyleManager.cxx:2074
 TStyleManager.cxx:2075
 TStyleManager.cxx:2076
 TStyleManager.cxx:2077
 TStyleManager.cxx:2078
 TStyleManager.cxx:2079
 TStyleManager.cxx:2080
 TStyleManager.cxx:2081
 TStyleManager.cxx:2082
 TStyleManager.cxx:2083
 TStyleManager.cxx:2084
 TStyleManager.cxx:2085
 TStyleManager.cxx:2086
 TStyleManager.cxx:2087
 TStyleManager.cxx:2088
 TStyleManager.cxx:2089
 TStyleManager.cxx:2090
 TStyleManager.cxx:2091
 TStyleManager.cxx:2092
 TStyleManager.cxx:2093
 TStyleManager.cxx:2094
 TStyleManager.cxx:2095
 TStyleManager.cxx:2096
 TStyleManager.cxx:2097
 TStyleManager.cxx:2098
 TStyleManager.cxx:2099
 TStyleManager.cxx:2100
 TStyleManager.cxx:2101
 TStyleManager.cxx:2102
 TStyleManager.cxx:2103
 TStyleManager.cxx:2104
 TStyleManager.cxx:2105
 TStyleManager.cxx:2106
 TStyleManager.cxx:2107
 TStyleManager.cxx:2108
 TStyleManager.cxx:2109
 TStyleManager.cxx:2110
 TStyleManager.cxx:2111
 TStyleManager.cxx:2112
 TStyleManager.cxx:2113
 TStyleManager.cxx:2114
 TStyleManager.cxx:2115
 TStyleManager.cxx:2116
 TStyleManager.cxx:2117
 TStyleManager.cxx:2118
 TStyleManager.cxx:2119
 TStyleManager.cxx:2120
 TStyleManager.cxx:2121
 TStyleManager.cxx:2122
 TStyleManager.cxx:2123
 TStyleManager.cxx:2124
 TStyleManager.cxx:2125
 TStyleManager.cxx:2126
 TStyleManager.cxx:2127
 TStyleManager.cxx:2128
 TStyleManager.cxx:2129
 TStyleManager.cxx:2130
 TStyleManager.cxx:2131
 TStyleManager.cxx:2132
 TStyleManager.cxx:2133
 TStyleManager.cxx:2134
 TStyleManager.cxx:2135
 TStyleManager.cxx:2136
 TStyleManager.cxx:2137
 TStyleManager.cxx:2138
 TStyleManager.cxx:2139
 TStyleManager.cxx:2140
 TStyleManager.cxx:2141
 TStyleManager.cxx:2142
 TStyleManager.cxx:2143
 TStyleManager.cxx:2144
 TStyleManager.cxx:2145
 TStyleManager.cxx:2146
 TStyleManager.cxx:2147
 TStyleManager.cxx:2148
 TStyleManager.cxx:2149
 TStyleManager.cxx:2150
 TStyleManager.cxx:2151
 TStyleManager.cxx:2152
 TStyleManager.cxx:2153
 TStyleManager.cxx:2154
 TStyleManager.cxx:2155
 TStyleManager.cxx:2156
 TStyleManager.cxx:2157
 TStyleManager.cxx:2158
 TStyleManager.cxx:2159
 TStyleManager.cxx:2160
 TStyleManager.cxx:2161
 TStyleManager.cxx:2162
 TStyleManager.cxx:2163
 TStyleManager.cxx:2164
 TStyleManager.cxx:2165
 TStyleManager.cxx:2166
 TStyleManager.cxx:2167
 TStyleManager.cxx:2168
 TStyleManager.cxx:2169
 TStyleManager.cxx:2170
 TStyleManager.cxx:2171
 TStyleManager.cxx:2172
 TStyleManager.cxx:2173
 TStyleManager.cxx:2174
 TStyleManager.cxx:2175
 TStyleManager.cxx:2176
 TStyleManager.cxx:2177
 TStyleManager.cxx:2178
 TStyleManager.cxx:2179
 TStyleManager.cxx:2180
 TStyleManager.cxx:2181
 TStyleManager.cxx:2182
 TStyleManager.cxx:2183
 TStyleManager.cxx:2184
 TStyleManager.cxx:2185
 TStyleManager.cxx:2186
 TStyleManager.cxx:2187
 TStyleManager.cxx:2188
 TStyleManager.cxx:2189
 TStyleManager.cxx:2190
 TStyleManager.cxx:2191
 TStyleManager.cxx:2192
 TStyleManager.cxx:2193
 TStyleManager.cxx:2194
 TStyleManager.cxx:2195
 TStyleManager.cxx:2196
 TStyleManager.cxx:2197
 TStyleManager.cxx:2198
 TStyleManager.cxx:2199
 TStyleManager.cxx:2200
 TStyleManager.cxx:2201
 TStyleManager.cxx:2202
 TStyleManager.cxx:2203
 TStyleManager.cxx:2204
 TStyleManager.cxx:2205
 TStyleManager.cxx:2206
 TStyleManager.cxx:2207
 TStyleManager.cxx:2208
 TStyleManager.cxx:2209
 TStyleManager.cxx:2210
 TStyleManager.cxx:2211
 TStyleManager.cxx:2212
 TStyleManager.cxx:2213
 TStyleManager.cxx:2214
 TStyleManager.cxx:2215
 TStyleManager.cxx:2216
 TStyleManager.cxx:2217
 TStyleManager.cxx:2218
 TStyleManager.cxx:2219
 TStyleManager.cxx:2220
 TStyleManager.cxx:2221
 TStyleManager.cxx:2222
 TStyleManager.cxx:2223
 TStyleManager.cxx:2224
 TStyleManager.cxx:2225
 TStyleManager.cxx:2226
 TStyleManager.cxx:2227
 TStyleManager.cxx:2228
 TStyleManager.cxx:2229
 TStyleManager.cxx:2230
 TStyleManager.cxx:2231
 TStyleManager.cxx:2232
 TStyleManager.cxx:2233
 TStyleManager.cxx:2234
 TStyleManager.cxx:2235
 TStyleManager.cxx:2236
 TStyleManager.cxx:2237
 TStyleManager.cxx:2238
 TStyleManager.cxx:2239
 TStyleManager.cxx:2240
 TStyleManager.cxx:2241
 TStyleManager.cxx:2242
 TStyleManager.cxx:2243
 TStyleManager.cxx:2244
 TStyleManager.cxx:2245
 TStyleManager.cxx:2246
 TStyleManager.cxx:2247
 TStyleManager.cxx:2248
 TStyleManager.cxx:2249
 TStyleManager.cxx:2250
 TStyleManager.cxx:2251
 TStyleManager.cxx:2252
 TStyleManager.cxx:2253
 TStyleManager.cxx:2254
 TStyleManager.cxx:2255
 TStyleManager.cxx:2256
 TStyleManager.cxx:2257
 TStyleManager.cxx:2258
 TStyleManager.cxx:2259
 TStyleManager.cxx:2260
 TStyleManager.cxx:2261
 TStyleManager.cxx:2262
 TStyleManager.cxx:2263
 TStyleManager.cxx:2264
 TStyleManager.cxx:2265
 TStyleManager.cxx:2266
 TStyleManager.cxx:2267
 TStyleManager.cxx:2268
 TStyleManager.cxx:2269
 TStyleManager.cxx:2270
 TStyleManager.cxx:2271
 TStyleManager.cxx:2272
 TStyleManager.cxx:2273
 TStyleManager.cxx:2274
 TStyleManager.cxx:2275
 TStyleManager.cxx:2276
 TStyleManager.cxx:2277
 TStyleManager.cxx:2278
 TStyleManager.cxx:2279
 TStyleManager.cxx:2280
 TStyleManager.cxx:2281
 TStyleManager.cxx:2282
 TStyleManager.cxx:2283
 TStyleManager.cxx:2284
 TStyleManager.cxx:2285
 TStyleManager.cxx:2286
 TStyleManager.cxx:2287
 TStyleManager.cxx:2288
 TStyleManager.cxx:2289
 TStyleManager.cxx:2290
 TStyleManager.cxx:2291
 TStyleManager.cxx:2292
 TStyleManager.cxx:2293
 TStyleManager.cxx:2294
 TStyleManager.cxx:2295
 TStyleManager.cxx:2296
 TStyleManager.cxx:2297
 TStyleManager.cxx:2298
 TStyleManager.cxx:2299
 TStyleManager.cxx:2300
 TStyleManager.cxx:2301
 TStyleManager.cxx:2302
 TStyleManager.cxx:2303
 TStyleManager.cxx:2304
 TStyleManager.cxx:2305
 TStyleManager.cxx:2306
 TStyleManager.cxx:2307
 TStyleManager.cxx:2308
 TStyleManager.cxx:2309
 TStyleManager.cxx:2310
 TStyleManager.cxx:2311
 TStyleManager.cxx:2312
 TStyleManager.cxx:2313
 TStyleManager.cxx:2314
 TStyleManager.cxx:2315
 TStyleManager.cxx:2316
 TStyleManager.cxx:2317
 TStyleManager.cxx:2318
 TStyleManager.cxx:2319
 TStyleManager.cxx:2320
 TStyleManager.cxx:2321
 TStyleManager.cxx:2322
 TStyleManager.cxx:2323
 TStyleManager.cxx:2324
 TStyleManager.cxx:2325
 TStyleManager.cxx:2326
 TStyleManager.cxx:2327
 TStyleManager.cxx:2328
 TStyleManager.cxx:2329
 TStyleManager.cxx:2330
 TStyleManager.cxx:2331
 TStyleManager.cxx:2332
 TStyleManager.cxx:2333
 TStyleManager.cxx:2334
 TStyleManager.cxx:2335
 TStyleManager.cxx:2336
 TStyleManager.cxx:2337
 TStyleManager.cxx:2338
 TStyleManager.cxx:2339
 TStyleManager.cxx:2340
 TStyleManager.cxx:2341
 TStyleManager.cxx:2342
 TStyleManager.cxx:2343
 TStyleManager.cxx:2344
 TStyleManager.cxx:2345
 TStyleManager.cxx:2346
 TStyleManager.cxx:2347
 TStyleManager.cxx:2348
 TStyleManager.cxx:2349
 TStyleManager.cxx:2350
 TStyleManager.cxx:2351
 TStyleManager.cxx:2352
 TStyleManager.cxx:2353
 TStyleManager.cxx:2354
 TStyleManager.cxx:2355
 TStyleManager.cxx:2356
 TStyleManager.cxx:2357
 TStyleManager.cxx:2358
 TStyleManager.cxx:2359
 TStyleManager.cxx:2360
 TStyleManager.cxx:2361
 TStyleManager.cxx:2362
 TStyleManager.cxx:2363
 TStyleManager.cxx:2364
 TStyleManager.cxx:2365
 TStyleManager.cxx:2366
 TStyleManager.cxx:2367
 TStyleManager.cxx:2368
 TStyleManager.cxx:2369
 TStyleManager.cxx:2370
 TStyleManager.cxx:2371
 TStyleManager.cxx:2372
 TStyleManager.cxx:2373
 TStyleManager.cxx:2374
 TStyleManager.cxx:2375
 TStyleManager.cxx:2376
 TStyleManager.cxx:2377
 TStyleManager.cxx:2378
 TStyleManager.cxx:2379
 TStyleManager.cxx:2380
 TStyleManager.cxx:2381
 TStyleManager.cxx:2382
 TStyleManager.cxx:2383
 TStyleManager.cxx:2384
 TStyleManager.cxx:2385
 TStyleManager.cxx:2386
 TStyleManager.cxx:2387
 TStyleManager.cxx:2388
 TStyleManager.cxx:2389
 TStyleManager.cxx:2390
 TStyleManager.cxx:2391
 TStyleManager.cxx:2392
 TStyleManager.cxx:2393
 TStyleManager.cxx:2394
 TStyleManager.cxx:2395
 TStyleManager.cxx:2396
 TStyleManager.cxx:2397
 TStyleManager.cxx:2398
 TStyleManager.cxx:2399
 TStyleManager.cxx:2400
 TStyleManager.cxx:2401
 TStyleManager.cxx:2402
 TStyleManager.cxx:2403
 TStyleManager.cxx:2404
 TStyleManager.cxx:2405
 TStyleManager.cxx:2406
 TStyleManager.cxx:2407
 TStyleManager.cxx:2408
 TStyleManager.cxx:2409
 TStyleManager.cxx:2410
 TStyleManager.cxx:2411
 TStyleManager.cxx:2412
 TStyleManager.cxx:2413
 TStyleManager.cxx:2414
 TStyleManager.cxx:2415
 TStyleManager.cxx:2416
 TStyleManager.cxx:2417
 TStyleManager.cxx:2418
 TStyleManager.cxx:2419
 TStyleManager.cxx:2420
 TStyleManager.cxx:2421
 TStyleManager.cxx:2422
 TStyleManager.cxx:2423
 TStyleManager.cxx:2424
 TStyleManager.cxx:2425
 TStyleManager.cxx:2426
 TStyleManager.cxx:2427
 TStyleManager.cxx:2428
 TStyleManager.cxx:2429
 TStyleManager.cxx:2430
 TStyleManager.cxx:2431
 TStyleManager.cxx:2432
 TStyleManager.cxx:2433
 TStyleManager.cxx:2434
 TStyleManager.cxx:2435
 TStyleManager.cxx:2436
 TStyleManager.cxx:2437
 TStyleManager.cxx:2438
 TStyleManager.cxx:2439
 TStyleManager.cxx:2440
 TStyleManager.cxx:2441
 TStyleManager.cxx:2442
 TStyleManager.cxx:2443
 TStyleManager.cxx:2444
 TStyleManager.cxx:2445
 TStyleManager.cxx:2446
 TStyleManager.cxx:2447
 TStyleManager.cxx:2448
 TStyleManager.cxx:2449
 TStyleManager.cxx:2450
 TStyleManager.cxx:2451
 TStyleManager.cxx:2452
 TStyleManager.cxx:2453
 TStyleManager.cxx:2454
 TStyleManager.cxx:2455
 TStyleManager.cxx:2456
 TStyleManager.cxx:2457
 TStyleManager.cxx:2458
 TStyleManager.cxx:2459
 TStyleManager.cxx:2460
 TStyleManager.cxx:2461
 TStyleManager.cxx:2462
 TStyleManager.cxx:2463
 TStyleManager.cxx:2464
 TStyleManager.cxx:2465
 TStyleManager.cxx:2466
 TStyleManager.cxx:2467
 TStyleManager.cxx:2468
 TStyleManager.cxx:2469
 TStyleManager.cxx:2470
 TStyleManager.cxx:2471
 TStyleManager.cxx:2472
 TStyleManager.cxx:2473
 TStyleManager.cxx:2474
 TStyleManager.cxx:2475
 TStyleManager.cxx:2476
 TStyleManager.cxx:2477
 TStyleManager.cxx:2478
 TStyleManager.cxx:2479
 TStyleManager.cxx:2480
 TStyleManager.cxx:2481
 TStyleManager.cxx:2482
 TStyleManager.cxx:2483
 TStyleManager.cxx:2484
 TStyleManager.cxx:2485
 TStyleManager.cxx:2486
 TStyleManager.cxx:2487
 TStyleManager.cxx:2488
 TStyleManager.cxx:2489
 TStyleManager.cxx:2490
 TStyleManager.cxx:2491
 TStyleManager.cxx:2492
 TStyleManager.cxx:2493
 TStyleManager.cxx:2494
 TStyleManager.cxx:2495
 TStyleManager.cxx:2496
 TStyleManager.cxx:2497
 TStyleManager.cxx:2498
 TStyleManager.cxx:2499
 TStyleManager.cxx:2500
 TStyleManager.cxx:2501
 TStyleManager.cxx:2502
 TStyleManager.cxx:2503
 TStyleManager.cxx:2504
 TStyleManager.cxx:2505
 TStyleManager.cxx:2506
 TStyleManager.cxx:2507
 TStyleManager.cxx:2508
 TStyleManager.cxx:2509
 TStyleManager.cxx:2510
 TStyleManager.cxx:2511
 TStyleManager.cxx:2512
 TStyleManager.cxx:2513
 TStyleManager.cxx:2514
 TStyleManager.cxx:2515
 TStyleManager.cxx:2516
 TStyleManager.cxx:2517
 TStyleManager.cxx:2518
 TStyleManager.cxx:2519
 TStyleManager.cxx:2520
 TStyleManager.cxx:2521
 TStyleManager.cxx:2522
 TStyleManager.cxx:2523
 TStyleManager.cxx:2524
 TStyleManager.cxx:2525
 TStyleManager.cxx:2526
 TStyleManager.cxx:2527
 TStyleManager.cxx:2528
 TStyleManager.cxx:2529
 TStyleManager.cxx:2530
 TStyleManager.cxx:2531
 TStyleManager.cxx:2532
 TStyleManager.cxx:2533
 TStyleManager.cxx:2534
 TStyleManager.cxx:2535
 TStyleManager.cxx:2536
 TStyleManager.cxx:2537
 TStyleManager.cxx:2538
 TStyleManager.cxx:2539
 TStyleManager.cxx:2540
 TStyleManager.cxx:2541
 TStyleManager.cxx:2542
 TStyleManager.cxx:2543
 TStyleManager.cxx:2544
 TStyleManager.cxx:2545
 TStyleManager.cxx:2546
 TStyleManager.cxx:2547
 TStyleManager.cxx:2548
 TStyleManager.cxx:2549
 TStyleManager.cxx:2550
 TStyleManager.cxx:2551
 TStyleManager.cxx:2552
 TStyleManager.cxx:2553
 TStyleManager.cxx:2554
 TStyleManager.cxx:2555
 TStyleManager.cxx:2556
 TStyleManager.cxx:2557
 TStyleManager.cxx:2558
 TStyleManager.cxx:2559
 TStyleManager.cxx:2560
 TStyleManager.cxx:2561
 TStyleManager.cxx:2562
 TStyleManager.cxx:2563
 TStyleManager.cxx:2564
 TStyleManager.cxx:2565
 TStyleManager.cxx:2566
 TStyleManager.cxx:2567
 TStyleManager.cxx:2568
 TStyleManager.cxx:2569
 TStyleManager.cxx:2570
 TStyleManager.cxx:2571
 TStyleManager.cxx:2572
 TStyleManager.cxx:2573
 TStyleManager.cxx:2574
 TStyleManager.cxx:2575
 TStyleManager.cxx:2576
 TStyleManager.cxx:2577
 TStyleManager.cxx:2578
 TStyleManager.cxx:2579
 TStyleManager.cxx:2580
 TStyleManager.cxx:2581
 TStyleManager.cxx:2582
 TStyleManager.cxx:2583
 TStyleManager.cxx:2584
 TStyleManager.cxx:2585
 TStyleManager.cxx:2586
 TStyleManager.cxx:2587
 TStyleManager.cxx:2588
 TStyleManager.cxx:2589
 TStyleManager.cxx:2590
 TStyleManager.cxx:2591
 TStyleManager.cxx:2592
 TStyleManager.cxx:2593
 TStyleManager.cxx:2594
 TStyleManager.cxx:2595
 TStyleManager.cxx:2596
 TStyleManager.cxx:2597
 TStyleManager.cxx:2598
 TStyleManager.cxx:2599
 TStyleManager.cxx:2600
 TStyleManager.cxx:2601
 TStyleManager.cxx:2602
 TStyleManager.cxx:2603
 TStyleManager.cxx:2604
 TStyleManager.cxx:2605
 TStyleManager.cxx:2606
 TStyleManager.cxx:2607
 TStyleManager.cxx:2608
 TStyleManager.cxx:2609
 TStyleManager.cxx:2610
 TStyleManager.cxx:2611
 TStyleManager.cxx:2612
 TStyleManager.cxx:2613
 TStyleManager.cxx:2614
 TStyleManager.cxx:2615
 TStyleManager.cxx:2616
 TStyleManager.cxx:2617
 TStyleManager.cxx:2618
 TStyleManager.cxx:2619
 TStyleManager.cxx:2620
 TStyleManager.cxx:2621
 TStyleManager.cxx:2622
 TStyleManager.cxx:2623
 TStyleManager.cxx:2624
 TStyleManager.cxx:2625
 TStyleManager.cxx:2626
 TStyleManager.cxx:2627
 TStyleManager.cxx:2628
 TStyleManager.cxx:2629
 TStyleManager.cxx:2630
 TStyleManager.cxx:2631
 TStyleManager.cxx:2632
 TStyleManager.cxx:2633
 TStyleManager.cxx:2634
 TStyleManager.cxx:2635
 TStyleManager.cxx:2636
 TStyleManager.cxx:2637
 TStyleManager.cxx:2638
 TStyleManager.cxx:2639
 TStyleManager.cxx:2640
 TStyleManager.cxx:2641
 TStyleManager.cxx:2642
 TStyleManager.cxx:2643
 TStyleManager.cxx:2644
 TStyleManager.cxx:2645
 TStyleManager.cxx:2646
 TStyleManager.cxx:2647
 TStyleManager.cxx:2648
 TStyleManager.cxx:2649
 TStyleManager.cxx:2650
 TStyleManager.cxx:2651
 TStyleManager.cxx:2652
 TStyleManager.cxx:2653
 TStyleManager.cxx:2654
 TStyleManager.cxx:2655
 TStyleManager.cxx:2656
 TStyleManager.cxx:2657
 TStyleManager.cxx:2658
 TStyleManager.cxx:2659
 TStyleManager.cxx:2660
 TStyleManager.cxx:2661
 TStyleManager.cxx:2662
 TStyleManager.cxx:2663
 TStyleManager.cxx:2664
 TStyleManager.cxx:2665
 TStyleManager.cxx:2666
 TStyleManager.cxx:2667
 TStyleManager.cxx:2668
 TStyleManager.cxx:2669
 TStyleManager.cxx:2670
 TStyleManager.cxx:2671
 TStyleManager.cxx:2672
 TStyleManager.cxx:2673
 TStyleManager.cxx:2674
 TStyleManager.cxx:2675
 TStyleManager.cxx:2676
 TStyleManager.cxx:2677
 TStyleManager.cxx:2678
 TStyleManager.cxx:2679
 TStyleManager.cxx:2680
 TStyleManager.cxx:2681
 TStyleManager.cxx:2682
 TStyleManager.cxx:2683
 TStyleManager.cxx:2684
 TStyleManager.cxx:2685
 TStyleManager.cxx:2686
 TStyleManager.cxx:2687
 TStyleManager.cxx:2688
 TStyleManager.cxx:2689
 TStyleManager.cxx:2690
 TStyleManager.cxx:2691
 TStyleManager.cxx:2692
 TStyleManager.cxx:2693
 TStyleManager.cxx:2694
 TStyleManager.cxx:2695
 TStyleManager.cxx:2696
 TStyleManager.cxx:2697
 TStyleManager.cxx:2698
 TStyleManager.cxx:2699
 TStyleManager.cxx:2700
 TStyleManager.cxx:2701
 TStyleManager.cxx:2702
 TStyleManager.cxx:2703
 TStyleManager.cxx:2704
 TStyleManager.cxx:2705
 TStyleManager.cxx:2706
 TStyleManager.cxx:2707
 TStyleManager.cxx:2708
 TStyleManager.cxx:2709
 TStyleManager.cxx:2710
 TStyleManager.cxx:2711
 TStyleManager.cxx:2712
 TStyleManager.cxx:2713
 TStyleManager.cxx:2714
 TStyleManager.cxx:2715
 TStyleManager.cxx:2716
 TStyleManager.cxx:2717
 TStyleManager.cxx:2718
 TStyleManager.cxx:2719
 TStyleManager.cxx:2720
 TStyleManager.cxx:2721
 TStyleManager.cxx:2722
 TStyleManager.cxx:2723
 TStyleManager.cxx:2724
 TStyleManager.cxx:2725
 TStyleManager.cxx:2726
 TStyleManager.cxx:2727
 TStyleManager.cxx:2728
 TStyleManager.cxx:2729
 TStyleManager.cxx:2730
 TStyleManager.cxx:2731
 TStyleManager.cxx:2732
 TStyleManager.cxx:2733
 TStyleManager.cxx:2734
 TStyleManager.cxx:2735
 TStyleManager.cxx:2736
 TStyleManager.cxx:2737
 TStyleManager.cxx:2738
 TStyleManager.cxx:2739
 TStyleManager.cxx:2740
 TStyleManager.cxx:2741
 TStyleManager.cxx:2742
 TStyleManager.cxx:2743
 TStyleManager.cxx:2744
 TStyleManager.cxx:2745
 TStyleManager.cxx:2746
 TStyleManager.cxx:2747
 TStyleManager.cxx:2748
 TStyleManager.cxx:2749
 TStyleManager.cxx:2750
 TStyleManager.cxx:2751
 TStyleManager.cxx:2752
 TStyleManager.cxx:2753
 TStyleManager.cxx:2754
 TStyleManager.cxx:2755
 TStyleManager.cxx:2756
 TStyleManager.cxx:2757
 TStyleManager.cxx:2758
 TStyleManager.cxx:2759
 TStyleManager.cxx:2760
 TStyleManager.cxx:2761
 TStyleManager.cxx:2762
 TStyleManager.cxx:2763
 TStyleManager.cxx:2764
 TStyleManager.cxx:2765
 TStyleManager.cxx:2766
 TStyleManager.cxx:2767
 TStyleManager.cxx:2768
 TStyleManager.cxx:2769
 TStyleManager.cxx:2770
 TStyleManager.cxx:2771
 TStyleManager.cxx:2772
 TStyleManager.cxx:2773
 TStyleManager.cxx:2774
 TStyleManager.cxx:2775
 TStyleManager.cxx:2776
 TStyleManager.cxx:2777
 TStyleManager.cxx:2778
 TStyleManager.cxx:2779
 TStyleManager.cxx:2780
 TStyleManager.cxx:2781
 TStyleManager.cxx:2782
 TStyleManager.cxx:2783
 TStyleManager.cxx:2784
 TStyleManager.cxx:2785
 TStyleManager.cxx:2786
 TStyleManager.cxx:2787
 TStyleManager.cxx:2788
 TStyleManager.cxx:2789
 TStyleManager.cxx:2790
 TStyleManager.cxx:2791
 TStyleManager.cxx:2792
 TStyleManager.cxx:2793
 TStyleManager.cxx:2794
 TStyleManager.cxx:2795
 TStyleManager.cxx:2796
 TStyleManager.cxx:2797
 TStyleManager.cxx:2798
 TStyleManager.cxx:2799
 TStyleManager.cxx:2800
 TStyleManager.cxx:2801
 TStyleManager.cxx:2802
 TStyleManager.cxx:2803
 TStyleManager.cxx:2804
 TStyleManager.cxx:2805
 TStyleManager.cxx:2806
 TStyleManager.cxx:2807
 TStyleManager.cxx:2808
 TStyleManager.cxx:2809
 TStyleManager.cxx:2810
 TStyleManager.cxx:2811
 TStyleManager.cxx:2812
 TStyleManager.cxx:2813
 TStyleManager.cxx:2814
 TStyleManager.cxx:2815
 TStyleManager.cxx:2816
 TStyleManager.cxx:2817
 TStyleManager.cxx:2818
 TStyleManager.cxx:2819
 TStyleManager.cxx:2820
 TStyleManager.cxx:2821
 TStyleManager.cxx:2822
 TStyleManager.cxx:2823
 TStyleManager.cxx:2824
 TStyleManager.cxx:2825
 TStyleManager.cxx:2826
 TStyleManager.cxx:2827
 TStyleManager.cxx:2828
 TStyleManager.cxx:2829
 TStyleManager.cxx:2830
 TStyleManager.cxx:2831
 TStyleManager.cxx:2832
 TStyleManager.cxx:2833
 TStyleManager.cxx:2834
 TStyleManager.cxx:2835
 TStyleManager.cxx:2836
 TStyleManager.cxx:2837
 TStyleManager.cxx:2838
 TStyleManager.cxx:2839
 TStyleManager.cxx:2840
 TStyleManager.cxx:2841
 TStyleManager.cxx:2842
 TStyleManager.cxx:2843
 TStyleManager.cxx:2844
 TStyleManager.cxx:2845
 TStyleManager.cxx:2846
 TStyleManager.cxx:2847
 TStyleManager.cxx:2848
 TStyleManager.cxx:2849
 TStyleManager.cxx:2850
 TStyleManager.cxx:2851
 TStyleManager.cxx:2852
 TStyleManager.cxx:2853
 TStyleManager.cxx:2854
 TStyleManager.cxx:2855
 TStyleManager.cxx:2856
 TStyleManager.cxx:2857
 TStyleManager.cxx:2858
 TStyleManager.cxx:2859
 TStyleManager.cxx:2860
 TStyleManager.cxx:2861
 TStyleManager.cxx:2862
 TStyleManager.cxx:2863
 TStyleManager.cxx:2864
 TStyleManager.cxx:2865
 TStyleManager.cxx:2866
 TStyleManager.cxx:2867
 TStyleManager.cxx:2868
 TStyleManager.cxx:2869
 TStyleManager.cxx:2870
 TStyleManager.cxx:2871
 TStyleManager.cxx:2872
 TStyleManager.cxx:2873
 TStyleManager.cxx:2874
 TStyleManager.cxx:2875
 TStyleManager.cxx:2876
 TStyleManager.cxx:2877
 TStyleManager.cxx:2878
 TStyleManager.cxx:2879
 TStyleManager.cxx:2880
 TStyleManager.cxx:2881
 TStyleManager.cxx:2882
 TStyleManager.cxx:2883
 TStyleManager.cxx:2884
 TStyleManager.cxx:2885
 TStyleManager.cxx:2886
 TStyleManager.cxx:2887
 TStyleManager.cxx:2888
 TStyleManager.cxx:2889
 TStyleManager.cxx:2890
 TStyleManager.cxx:2891
 TStyleManager.cxx:2892
 TStyleManager.cxx:2893
 TStyleManager.cxx:2894
 TStyleManager.cxx:2895
 TStyleManager.cxx:2896
 TStyleManager.cxx:2897
 TStyleManager.cxx:2898
 TStyleManager.cxx:2899
 TStyleManager.cxx:2900
 TStyleManager.cxx:2901
 TStyleManager.cxx:2902
 TStyleManager.cxx:2903
 TStyleManager.cxx:2904
 TStyleManager.cxx:2905
 TStyleManager.cxx:2906
 TStyleManager.cxx:2907
 TStyleManager.cxx:2908
 TStyleManager.cxx:2909
 TStyleManager.cxx:2910
 TStyleManager.cxx:2911
 TStyleManager.cxx:2912
 TStyleManager.cxx:2913
 TStyleManager.cxx:2914
 TStyleManager.cxx:2915
 TStyleManager.cxx:2916
 TStyleManager.cxx:2917
 TStyleManager.cxx:2918
 TStyleManager.cxx:2919
 TStyleManager.cxx:2920
 TStyleManager.cxx:2921
 TStyleManager.cxx:2922
 TStyleManager.cxx:2923
 TStyleManager.cxx:2924
 TStyleManager.cxx:2925
 TStyleManager.cxx:2926
 TStyleManager.cxx:2927
 TStyleManager.cxx:2928
 TStyleManager.cxx:2929
 TStyleManager.cxx:2930
 TStyleManager.cxx:2931
 TStyleManager.cxx:2932
 TStyleManager.cxx:2933
 TStyleManager.cxx:2934
 TStyleManager.cxx:2935
 TStyleManager.cxx:2936
 TStyleManager.cxx:2937
 TStyleManager.cxx:2938
 TStyleManager.cxx:2939
 TStyleManager.cxx:2940
 TStyleManager.cxx:2941
 TStyleManager.cxx:2942
 TStyleManager.cxx:2943
 TStyleManager.cxx:2944
 TStyleManager.cxx:2945
 TStyleManager.cxx:2946
 TStyleManager.cxx:2947
 TStyleManager.cxx:2948
 TStyleManager.cxx:2949
 TStyleManager.cxx:2950
 TStyleManager.cxx:2951
 TStyleManager.cxx:2952
 TStyleManager.cxx:2953
 TStyleManager.cxx:2954
 TStyleManager.cxx:2955
 TStyleManager.cxx:2956
 TStyleManager.cxx:2957
 TStyleManager.cxx:2958
 TStyleManager.cxx:2959
 TStyleManager.cxx:2960
 TStyleManager.cxx:2961
 TStyleManager.cxx:2962
 TStyleManager.cxx:2963
 TStyleManager.cxx:2964
 TStyleManager.cxx:2965
 TStyleManager.cxx:2966
 TStyleManager.cxx:2967
 TStyleManager.cxx:2968
 TStyleManager.cxx:2969
 TStyleManager.cxx:2970
 TStyleManager.cxx:2971
 TStyleManager.cxx:2972
 TStyleManager.cxx:2973
 TStyleManager.cxx:2974
 TStyleManager.cxx:2975
 TStyleManager.cxx:2976
 TStyleManager.cxx:2977
 TStyleManager.cxx:2978
 TStyleManager.cxx:2979
 TStyleManager.cxx:2980
 TStyleManager.cxx:2981
 TStyleManager.cxx:2982
 TStyleManager.cxx:2983
 TStyleManager.cxx:2984
 TStyleManager.cxx:2985
 TStyleManager.cxx:2986
 TStyleManager.cxx:2987
 TStyleManager.cxx:2988
 TStyleManager.cxx:2989
 TStyleManager.cxx:2990
 TStyleManager.cxx:2991
 TStyleManager.cxx:2992
 TStyleManager.cxx:2993
 TStyleManager.cxx:2994
 TStyleManager.cxx:2995
 TStyleManager.cxx:2996
 TStyleManager.cxx:2997
 TStyleManager.cxx:2998
 TStyleManager.cxx:2999
 TStyleManager.cxx:3000
 TStyleManager.cxx:3001
 TStyleManager.cxx:3002
 TStyleManager.cxx:3003
 TStyleManager.cxx:3004
 TStyleManager.cxx:3005
 TStyleManager.cxx:3006
 TStyleManager.cxx:3007
 TStyleManager.cxx:3008
 TStyleManager.cxx:3009
 TStyleManager.cxx:3010
 TStyleManager.cxx:3011
 TStyleManager.cxx:3012
 TStyleManager.cxx:3013
 TStyleManager.cxx:3014
 TStyleManager.cxx:3015
 TStyleManager.cxx:3016
 TStyleManager.cxx:3017
 TStyleManager.cxx:3018
 TStyleManager.cxx:3019
 TStyleManager.cxx:3020
 TStyleManager.cxx:3021
 TStyleManager.cxx:3022
 TStyleManager.cxx:3023
 TStyleManager.cxx:3024
 TStyleManager.cxx:3025
 TStyleManager.cxx:3026
 TStyleManager.cxx:3027
 TStyleManager.cxx:3028
 TStyleManager.cxx:3029
 TStyleManager.cxx:3030
 TStyleManager.cxx:3031
 TStyleManager.cxx:3032
 TStyleManager.cxx:3033
 TStyleManager.cxx:3034
 TStyleManager.cxx:3035
 TStyleManager.cxx:3036
 TStyleManager.cxx:3037
 TStyleManager.cxx:3038
 TStyleManager.cxx:3039
 TStyleManager.cxx:3040
 TStyleManager.cxx:3041
 TStyleManager.cxx:3042
 TStyleManager.cxx:3043
 TStyleManager.cxx:3044
 TStyleManager.cxx:3045
 TStyleManager.cxx:3046
 TStyleManager.cxx:3047
 TStyleManager.cxx:3048
 TStyleManager.cxx:3049
 TStyleManager.cxx:3050
 TStyleManager.cxx:3051
 TStyleManager.cxx:3052
 TStyleManager.cxx:3053
 TStyleManager.cxx:3054
 TStyleManager.cxx:3055
 TStyleManager.cxx:3056
 TStyleManager.cxx:3057
 TStyleManager.cxx:3058
 TStyleManager.cxx:3059
 TStyleManager.cxx:3060
 TStyleManager.cxx:3061
 TStyleManager.cxx:3062
 TStyleManager.cxx:3063
 TStyleManager.cxx:3064
 TStyleManager.cxx:3065
 TStyleManager.cxx:3066
 TStyleManager.cxx:3067
 TStyleManager.cxx:3068
 TStyleManager.cxx:3069
 TStyleManager.cxx:3070
 TStyleManager.cxx:3071
 TStyleManager.cxx:3072
 TStyleManager.cxx:3073
 TStyleManager.cxx:3074
 TStyleManager.cxx:3075
 TStyleManager.cxx:3076
 TStyleManager.cxx:3077
 TStyleManager.cxx:3078
 TStyleManager.cxx:3079
 TStyleManager.cxx:3080
 TStyleManager.cxx:3081
 TStyleManager.cxx:3082
 TStyleManager.cxx:3083
 TStyleManager.cxx:3084
 TStyleManager.cxx:3085
 TStyleManager.cxx:3086
 TStyleManager.cxx:3087
 TStyleManager.cxx:3088
 TStyleManager.cxx:3089
 TStyleManager.cxx:3090
 TStyleManager.cxx:3091
 TStyleManager.cxx:3092
 TStyleManager.cxx:3093
 TStyleManager.cxx:3094
 TStyleManager.cxx:3095
 TStyleManager.cxx:3096
 TStyleManager.cxx:3097
 TStyleManager.cxx:3098
 TStyleManager.cxx:3099
 TStyleManager.cxx:3100
 TStyleManager.cxx:3101
 TStyleManager.cxx:3102
 TStyleManager.cxx:3103
 TStyleManager.cxx:3104
 TStyleManager.cxx:3105
 TStyleManager.cxx:3106
 TStyleManager.cxx:3107
 TStyleManager.cxx:3108
 TStyleManager.cxx:3109
 TStyleManager.cxx:3110
 TStyleManager.cxx:3111
 TStyleManager.cxx:3112
 TStyleManager.cxx:3113
 TStyleManager.cxx:3114
 TStyleManager.cxx:3115
 TStyleManager.cxx:3116
 TStyleManager.cxx:3117
 TStyleManager.cxx:3118
 TStyleManager.cxx:3119
 TStyleManager.cxx:3120
 TStyleManager.cxx:3121
 TStyleManager.cxx:3122
 TStyleManager.cxx:3123
 TStyleManager.cxx:3124
 TStyleManager.cxx:3125
 TStyleManager.cxx:3126
 TStyleManager.cxx:3127
 TStyleManager.cxx:3128
 TStyleManager.cxx:3129
 TStyleManager.cxx:3130
 TStyleManager.cxx:3131
 TStyleManager.cxx:3132
 TStyleManager.cxx:3133
 TStyleManager.cxx:3134
 TStyleManager.cxx:3135
 TStyleManager.cxx:3136
 TStyleManager.cxx:3137
 TStyleManager.cxx:3138
 TStyleManager.cxx:3139
 TStyleManager.cxx:3140
 TStyleManager.cxx:3141
 TStyleManager.cxx:3142
 TStyleManager.cxx:3143
 TStyleManager.cxx:3144
 TStyleManager.cxx:3145
 TStyleManager.cxx:3146
 TStyleManager.cxx:3147
 TStyleManager.cxx:3148
 TStyleManager.cxx:3149
 TStyleManager.cxx:3150
 TStyleManager.cxx:3151
 TStyleManager.cxx:3152
 TStyleManager.cxx:3153
 TStyleManager.cxx:3154
 TStyleManager.cxx:3155
 TStyleManager.cxx:3156
 TStyleManager.cxx:3157
 TStyleManager.cxx:3158
 TStyleManager.cxx:3159
 TStyleManager.cxx:3160
 TStyleManager.cxx:3161
 TStyleManager.cxx:3162
 TStyleManager.cxx:3163
 TStyleManager.cxx:3164
 TStyleManager.cxx:3165
 TStyleManager.cxx:3166
 TStyleManager.cxx:3167
 TStyleManager.cxx:3168
 TStyleManager.cxx:3169
 TStyleManager.cxx:3170
 TStyleManager.cxx:3171
 TStyleManager.cxx:3172
 TStyleManager.cxx:3173
 TStyleManager.cxx:3174
 TStyleManager.cxx:3175
 TStyleManager.cxx:3176
 TStyleManager.cxx:3177
 TStyleManager.cxx:3178
 TStyleManager.cxx:3179
 TStyleManager.cxx:3180
 TStyleManager.cxx:3181
 TStyleManager.cxx:3182
 TStyleManager.cxx:3183
 TStyleManager.cxx:3184
 TStyleManager.cxx:3185
 TStyleManager.cxx:3186
 TStyleManager.cxx:3187
 TStyleManager.cxx:3188
 TStyleManager.cxx:3189
 TStyleManager.cxx:3190
 TStyleManager.cxx:3191
 TStyleManager.cxx:3192
 TStyleManager.cxx:3193
 TStyleManager.cxx:3194
 TStyleManager.cxx:3195
 TStyleManager.cxx:3196
 TStyleManager.cxx:3197
 TStyleManager.cxx:3198
 TStyleManager.cxx:3199
 TStyleManager.cxx:3200
 TStyleManager.cxx:3201
 TStyleManager.cxx:3202
 TStyleManager.cxx:3203
 TStyleManager.cxx:3204
 TStyleManager.cxx:3205
 TStyleManager.cxx:3206
 TStyleManager.cxx:3207
 TStyleManager.cxx:3208
 TStyleManager.cxx:3209
 TStyleManager.cxx:3210
 TStyleManager.cxx:3211
 TStyleManager.cxx:3212
 TStyleManager.cxx:3213
 TStyleManager.cxx:3214
 TStyleManager.cxx:3215
 TStyleManager.cxx:3216
 TStyleManager.cxx:3217
 TStyleManager.cxx:3218
 TStyleManager.cxx:3219
 TStyleManager.cxx:3220
 TStyleManager.cxx:3221
 TStyleManager.cxx:3222
 TStyleManager.cxx:3223
 TStyleManager.cxx:3224
 TStyleManager.cxx:3225
 TStyleManager.cxx:3226
 TStyleManager.cxx:3227
 TStyleManager.cxx:3228
 TStyleManager.cxx:3229
 TStyleManager.cxx:3230
 TStyleManager.cxx:3231
 TStyleManager.cxx:3232
 TStyleManager.cxx:3233
 TStyleManager.cxx:3234
 TStyleManager.cxx:3235
 TStyleManager.cxx:3236
 TStyleManager.cxx:3237
 TStyleManager.cxx:3238
 TStyleManager.cxx:3239
 TStyleManager.cxx:3240
 TStyleManager.cxx:3241
 TStyleManager.cxx:3242
 TStyleManager.cxx:3243
 TStyleManager.cxx:3244
 TStyleManager.cxx:3245
 TStyleManager.cxx:3246
 TStyleManager.cxx:3247
 TStyleManager.cxx:3248
 TStyleManager.cxx:3249
 TStyleManager.cxx:3250
 TStyleManager.cxx:3251
 TStyleManager.cxx:3252
 TStyleManager.cxx:3253
 TStyleManager.cxx:3254
 TStyleManager.cxx:3255
 TStyleManager.cxx:3256
 TStyleManager.cxx:3257
 TStyleManager.cxx:3258
 TStyleManager.cxx:3259
 TStyleManager.cxx:3260
 TStyleManager.cxx:3261
 TStyleManager.cxx:3262
 TStyleManager.cxx:3263
 TStyleManager.cxx:3264
 TStyleManager.cxx:3265
 TStyleManager.cxx:3266
 TStyleManager.cxx:3267
 TStyleManager.cxx:3268
 TStyleManager.cxx:3269
 TStyleManager.cxx:3270
 TStyleManager.cxx:3271
 TStyleManager.cxx:3272
 TStyleManager.cxx:3273
 TStyleManager.cxx:3274
 TStyleManager.cxx:3275
 TStyleManager.cxx:3276
 TStyleManager.cxx:3277
 TStyleManager.cxx:3278
 TStyleManager.cxx:3279
 TStyleManager.cxx:3280
 TStyleManager.cxx:3281
 TStyleManager.cxx:3282
 TStyleManager.cxx:3283
 TStyleManager.cxx:3284
 TStyleManager.cxx:3285
 TStyleManager.cxx:3286
 TStyleManager.cxx:3287
 TStyleManager.cxx:3288
 TStyleManager.cxx:3289
 TStyleManager.cxx:3290
 TStyleManager.cxx:3291
 TStyleManager.cxx:3292
 TStyleManager.cxx:3293
 TStyleManager.cxx:3294
 TStyleManager.cxx:3295
 TStyleManager.cxx:3296
 TStyleManager.cxx:3297
 TStyleManager.cxx:3298
 TStyleManager.cxx:3299
 TStyleManager.cxx:3300
 TStyleManager.cxx:3301
 TStyleManager.cxx:3302
 TStyleManager.cxx:3303
 TStyleManager.cxx:3304
 TStyleManager.cxx:3305
 TStyleManager.cxx:3306
 TStyleManager.cxx:3307
 TStyleManager.cxx:3308
 TStyleManager.cxx:3309
 TStyleManager.cxx:3310
 TStyleManager.cxx:3311
 TStyleManager.cxx:3312
 TStyleManager.cxx:3313
 TStyleManager.cxx:3314
 TStyleManager.cxx:3315
 TStyleManager.cxx:3316
 TStyleManager.cxx:3317
 TStyleManager.cxx:3318
 TStyleManager.cxx:3319
 TStyleManager.cxx:3320
 TStyleManager.cxx:3321
 TStyleManager.cxx:3322
 TStyleManager.cxx:3323
 TStyleManager.cxx:3324
 TStyleManager.cxx:3325
 TStyleManager.cxx:3326
 TStyleManager.cxx:3327
 TStyleManager.cxx:3328
 TStyleManager.cxx:3329
 TStyleManager.cxx:3330
 TStyleManager.cxx:3331
 TStyleManager.cxx:3332
 TStyleManager.cxx:3333
 TStyleManager.cxx:3334
 TStyleManager.cxx:3335
 TStyleManager.cxx:3336
 TStyleManager.cxx:3337
 TStyleManager.cxx:3338
 TStyleManager.cxx:3339
 TStyleManager.cxx:3340
 TStyleManager.cxx:3341
 TStyleManager.cxx:3342
 TStyleManager.cxx:3343
 TStyleManager.cxx:3344
 TStyleManager.cxx:3345
 TStyleManager.cxx:3346
 TStyleManager.cxx:3347
 TStyleManager.cxx:3348
 TStyleManager.cxx:3349
 TStyleManager.cxx:3350
 TStyleManager.cxx:3351
 TStyleManager.cxx:3352
 TStyleManager.cxx:3353
 TStyleManager.cxx:3354
 TStyleManager.cxx:3355
 TStyleManager.cxx:3356
 TStyleManager.cxx:3357
 TStyleManager.cxx:3358
 TStyleManager.cxx:3359
 TStyleManager.cxx:3360
 TStyleManager.cxx:3361
 TStyleManager.cxx:3362
 TStyleManager.cxx:3363
 TStyleManager.cxx:3364
 TStyleManager.cxx:3365
 TStyleManager.cxx:3366
 TStyleManager.cxx:3367
 TStyleManager.cxx:3368
 TStyleManager.cxx:3369
 TStyleManager.cxx:3370
 TStyleManager.cxx:3371
 TStyleManager.cxx:3372
 TStyleManager.cxx:3373
 TStyleManager.cxx:3374
 TStyleManager.cxx:3375
 TStyleManager.cxx:3376
 TStyleManager.cxx:3377
 TStyleManager.cxx:3378
 TStyleManager.cxx:3379
 TStyleManager.cxx:3380
 TStyleManager.cxx:3381
 TStyleManager.cxx:3382
 TStyleManager.cxx:3383
 TStyleManager.cxx:3384
 TStyleManager.cxx:3385
 TStyleManager.cxx:3386
 TStyleManager.cxx:3387
 TStyleManager.cxx:3388
 TStyleManager.cxx:3389
 TStyleManager.cxx:3390
 TStyleManager.cxx:3391
 TStyleManager.cxx:3392
 TStyleManager.cxx:3393
 TStyleManager.cxx:3394
 TStyleManager.cxx:3395
 TStyleManager.cxx:3396
 TStyleManager.cxx:3397
 TStyleManager.cxx:3398
 TStyleManager.cxx:3399
 TStyleManager.cxx:3400
 TStyleManager.cxx:3401
 TStyleManager.cxx:3402
 TStyleManager.cxx:3403
 TStyleManager.cxx:3404
 TStyleManager.cxx:3405
 TStyleManager.cxx:3406
 TStyleManager.cxx:3407
 TStyleManager.cxx:3408
 TStyleManager.cxx:3409
 TStyleManager.cxx:3410
 TStyleManager.cxx:3411
 TStyleManager.cxx:3412
 TStyleManager.cxx:3413
 TStyleManager.cxx:3414
 TStyleManager.cxx:3415
 TStyleManager.cxx:3416
 TStyleManager.cxx:3417
 TStyleManager.cxx:3418
 TStyleManager.cxx:3419
 TStyleManager.cxx:3420
 TStyleManager.cxx:3421
 TStyleManager.cxx:3422
 TStyleManager.cxx:3423
 TStyleManager.cxx:3424
 TStyleManager.cxx:3425
 TStyleManager.cxx:3426
 TStyleManager.cxx:3427
 TStyleManager.cxx:3428
 TStyleManager.cxx:3429
 TStyleManager.cxx:3430
 TStyleManager.cxx:3431
 TStyleManager.cxx:3432
 TStyleManager.cxx:3433
 TStyleManager.cxx:3434
 TStyleManager.cxx:3435
 TStyleManager.cxx:3436
 TStyleManager.cxx:3437
 TStyleManager.cxx:3438
 TStyleManager.cxx:3439
 TStyleManager.cxx:3440
 TStyleManager.cxx:3441
 TStyleManager.cxx:3442
 TStyleManager.cxx:3443
 TStyleManager.cxx:3444
 TStyleManager.cxx:3445
 TStyleManager.cxx:3446
 TStyleManager.cxx:3447
 TStyleManager.cxx:3448
 TStyleManager.cxx:3449
 TStyleManager.cxx:3450
 TStyleManager.cxx:3451
 TStyleManager.cxx:3452
 TStyleManager.cxx:3453
 TStyleManager.cxx:3454
 TStyleManager.cxx:3455
 TStyleManager.cxx:3456
 TStyleManager.cxx:3457
 TStyleManager.cxx:3458
 TStyleManager.cxx:3459
 TStyleManager.cxx:3460
 TStyleManager.cxx:3461
 TStyleManager.cxx:3462
 TStyleManager.cxx:3463
 TStyleManager.cxx:3464
 TStyleManager.cxx:3465
 TStyleManager.cxx:3466
 TStyleManager.cxx:3467
 TStyleManager.cxx:3468
 TStyleManager.cxx:3469
 TStyleManager.cxx:3470
 TStyleManager.cxx:3471
 TStyleManager.cxx:3472
 TStyleManager.cxx:3473
 TStyleManager.cxx:3474
 TStyleManager.cxx:3475
 TStyleManager.cxx:3476
 TStyleManager.cxx:3477
 TStyleManager.cxx:3478
 TStyleManager.cxx:3479
 TStyleManager.cxx:3480
 TStyleManager.cxx:3481
 TStyleManager.cxx:3482
 TStyleManager.cxx:3483
 TStyleManager.cxx:3484
 TStyleManager.cxx:3485
 TStyleManager.cxx:3486
 TStyleManager.cxx:3487
 TStyleManager.cxx:3488
 TStyleManager.cxx:3489
 TStyleManager.cxx:3490
 TStyleManager.cxx:3491
 TStyleManager.cxx:3492
 TStyleManager.cxx:3493
 TStyleManager.cxx:3494
 TStyleManager.cxx:3495
 TStyleManager.cxx:3496
 TStyleManager.cxx:3497
 TStyleManager.cxx:3498
 TStyleManager.cxx:3499
 TStyleManager.cxx:3500
 TStyleManager.cxx:3501
 TStyleManager.cxx:3502
 TStyleManager.cxx:3503
 TStyleManager.cxx:3504
 TStyleManager.cxx:3505
 TStyleManager.cxx:3506
 TStyleManager.cxx:3507
 TStyleManager.cxx:3508
 TStyleManager.cxx:3509
 TStyleManager.cxx:3510
 TStyleManager.cxx:3511
 TStyleManager.cxx:3512
 TStyleManager.cxx:3513
 TStyleManager.cxx:3514
 TStyleManager.cxx:3515
 TStyleManager.cxx:3516
 TStyleManager.cxx:3517
 TStyleManager.cxx:3518
 TStyleManager.cxx:3519
 TStyleManager.cxx:3520
 TStyleManager.cxx:3521
 TStyleManager.cxx:3522
 TStyleManager.cxx:3523
 TStyleManager.cxx:3524
 TStyleManager.cxx:3525
 TStyleManager.cxx:3526
 TStyleManager.cxx:3527
 TStyleManager.cxx:3528
 TStyleManager.cxx:3529
 TStyleManager.cxx:3530
 TStyleManager.cxx:3531
 TStyleManager.cxx:3532
 TStyleManager.cxx:3533
 TStyleManager.cxx:3534
 TStyleManager.cxx:3535
 TStyleManager.cxx:3536
 TStyleManager.cxx:3537
 TStyleManager.cxx:3538
 TStyleManager.cxx:3539
 TStyleManager.cxx:3540
 TStyleManager.cxx:3541
 TStyleManager.cxx:3542
 TStyleManager.cxx:3543
 TStyleManager.cxx:3544
 TStyleManager.cxx:3545
 TStyleManager.cxx:3546
 TStyleManager.cxx:3547
 TStyleManager.cxx:3548
 TStyleManager.cxx:3549
 TStyleManager.cxx:3550
 TStyleManager.cxx:3551
 TStyleManager.cxx:3552
 TStyleManager.cxx:3553
 TStyleManager.cxx:3554
 TStyleManager.cxx:3555
 TStyleManager.cxx:3556
 TStyleManager.cxx:3557
 TStyleManager.cxx:3558
 TStyleManager.cxx:3559
 TStyleManager.cxx:3560
 TStyleManager.cxx:3561
 TStyleManager.cxx:3562
 TStyleManager.cxx:3563
 TStyleManager.cxx:3564
 TStyleManager.cxx:3565
 TStyleManager.cxx:3566
 TStyleManager.cxx:3567
 TStyleManager.cxx:3568
 TStyleManager.cxx:3569
 TStyleManager.cxx:3570
 TStyleManager.cxx:3571
 TStyleManager.cxx:3572
 TStyleManager.cxx:3573
 TStyleManager.cxx:3574
 TStyleManager.cxx:3575
 TStyleManager.cxx:3576
 TStyleManager.cxx:3577
 TStyleManager.cxx:3578
 TStyleManager.cxx:3579
 TStyleManager.cxx:3580
 TStyleManager.cxx:3581
 TStyleManager.cxx:3582
 TStyleManager.cxx:3583
 TStyleManager.cxx:3584
 TStyleManager.cxx:3585
 TStyleManager.cxx:3586
 TStyleManager.cxx:3587
 TStyleManager.cxx:3588
 TStyleManager.cxx:3589
 TStyleManager.cxx:3590
 TStyleManager.cxx:3591
 TStyleManager.cxx:3592
 TStyleManager.cxx:3593
 TStyleManager.cxx:3594
 TStyleManager.cxx:3595
 TStyleManager.cxx:3596
 TStyleManager.cxx:3597
 TStyleManager.cxx:3598
 TStyleManager.cxx:3599
 TStyleManager.cxx:3600
 TStyleManager.cxx:3601
 TStyleManager.cxx:3602
 TStyleManager.cxx:3603
 TStyleManager.cxx:3604
 TStyleManager.cxx:3605
 TStyleManager.cxx:3606
 TStyleManager.cxx:3607
 TStyleManager.cxx:3608
 TStyleManager.cxx:3609
 TStyleManager.cxx:3610
 TStyleManager.cxx:3611
 TStyleManager.cxx:3612
 TStyleManager.cxx:3613
 TStyleManager.cxx:3614
 TStyleManager.cxx:3615
 TStyleManager.cxx:3616
 TStyleManager.cxx:3617
 TStyleManager.cxx:3618
 TStyleManager.cxx:3619
 TStyleManager.cxx:3620
 TStyleManager.cxx:3621
 TStyleManager.cxx:3622
 TStyleManager.cxx:3623
 TStyleManager.cxx:3624
 TStyleManager.cxx:3625
 TStyleManager.cxx:3626
 TStyleManager.cxx:3627
 TStyleManager.cxx:3628
 TStyleManager.cxx:3629
 TStyleManager.cxx:3630
 TStyleManager.cxx:3631
 TStyleManager.cxx:3632
 TStyleManager.cxx:3633
 TStyleManager.cxx:3634
 TStyleManager.cxx:3635
 TStyleManager.cxx:3636
 TStyleManager.cxx:3637
 TStyleManager.cxx:3638
 TStyleManager.cxx:3639
 TStyleManager.cxx:3640
 TStyleManager.cxx:3641
 TStyleManager.cxx:3642
 TStyleManager.cxx:3643
 TStyleManager.cxx:3644
 TStyleManager.cxx:3645
 TStyleManager.cxx:3646
 TStyleManager.cxx:3647
 TStyleManager.cxx:3648
 TStyleManager.cxx:3649
 TStyleManager.cxx:3650
 TStyleManager.cxx:3651
 TStyleManager.cxx:3652
 TStyleManager.cxx:3653
 TStyleManager.cxx:3654
 TStyleManager.cxx:3655
 TStyleManager.cxx:3656
 TStyleManager.cxx:3657
 TStyleManager.cxx:3658
 TStyleManager.cxx:3659
 TStyleManager.cxx:3660
 TStyleManager.cxx:3661
 TStyleManager.cxx:3662
 TStyleManager.cxx:3663
 TStyleManager.cxx:3664
 TStyleManager.cxx:3665
 TStyleManager.cxx:3666
 TStyleManager.cxx:3667
 TStyleManager.cxx:3668
 TStyleManager.cxx:3669
 TStyleManager.cxx:3670
 TStyleManager.cxx:3671
 TStyleManager.cxx:3672
 TStyleManager.cxx:3673
 TStyleManager.cxx:3674
 TStyleManager.cxx:3675
 TStyleManager.cxx:3676
 TStyleManager.cxx:3677
 TStyleManager.cxx:3678
 TStyleManager.cxx:3679
 TStyleManager.cxx:3680
 TStyleManager.cxx:3681
 TStyleManager.cxx:3682
 TStyleManager.cxx:3683
 TStyleManager.cxx:3684
 TStyleManager.cxx:3685
 TStyleManager.cxx:3686
 TStyleManager.cxx:3687
 TStyleManager.cxx:3688
 TStyleManager.cxx:3689
 TStyleManager.cxx:3690
 TStyleManager.cxx:3691
 TStyleManager.cxx:3692
 TStyleManager.cxx:3693
 TStyleManager.cxx:3694
 TStyleManager.cxx:3695
 TStyleManager.cxx:3696
 TStyleManager.cxx:3697
 TStyleManager.cxx:3698
 TStyleManager.cxx:3699
 TStyleManager.cxx:3700
 TStyleManager.cxx:3701
 TStyleManager.cxx:3702
 TStyleManager.cxx:3703
 TStyleManager.cxx:3704
 TStyleManager.cxx:3705
 TStyleManager.cxx:3706
 TStyleManager.cxx:3707
 TStyleManager.cxx:3708
 TStyleManager.cxx:3709
 TStyleManager.cxx:3710
 TStyleManager.cxx:3711
 TStyleManager.cxx:3712
 TStyleManager.cxx:3713
 TStyleManager.cxx:3714
 TStyleManager.cxx:3715
 TStyleManager.cxx:3716
 TStyleManager.cxx:3717
 TStyleManager.cxx:3718
 TStyleManager.cxx:3719
 TStyleManager.cxx:3720
 TStyleManager.cxx:3721
 TStyleManager.cxx:3722
 TStyleManager.cxx:3723
 TStyleManager.cxx:3724
 TStyleManager.cxx:3725
 TStyleManager.cxx:3726
 TStyleManager.cxx:3727
 TStyleManager.cxx:3728
 TStyleManager.cxx:3729
 TStyleManager.cxx:3730
 TStyleManager.cxx:3731
 TStyleManager.cxx:3732
 TStyleManager.cxx:3733
 TStyleManager.cxx:3734
 TStyleManager.cxx:3735
 TStyleManager.cxx:3736
 TStyleManager.cxx:3737
 TStyleManager.cxx:3738
 TStyleManager.cxx:3739
 TStyleManager.cxx:3740
 TStyleManager.cxx:3741
 TStyleManager.cxx:3742
 TStyleManager.cxx:3743
 TStyleManager.cxx:3744
 TStyleManager.cxx:3745
 TStyleManager.cxx:3746
 TStyleManager.cxx:3747
 TStyleManager.cxx:3748
 TStyleManager.cxx:3749
 TStyleManager.cxx:3750
 TStyleManager.cxx:3751
 TStyleManager.cxx:3752
 TStyleManager.cxx:3753
 TStyleManager.cxx:3754
 TStyleManager.cxx:3755
 TStyleManager.cxx:3756
 TStyleManager.cxx:3757
 TStyleManager.cxx:3758
 TStyleManager.cxx:3759
 TStyleManager.cxx:3760
 TStyleManager.cxx:3761
 TStyleManager.cxx:3762
 TStyleManager.cxx:3763
 TStyleManager.cxx:3764
 TStyleManager.cxx:3765
 TStyleManager.cxx:3766
 TStyleManager.cxx:3767
 TStyleManager.cxx:3768
 TStyleManager.cxx:3769
 TStyleManager.cxx:3770
 TStyleManager.cxx:3771
 TStyleManager.cxx:3772
 TStyleManager.cxx:3773
 TStyleManager.cxx:3774
 TStyleManager.cxx:3775
 TStyleManager.cxx:3776
 TStyleManager.cxx:3777
 TStyleManager.cxx:3778
 TStyleManager.cxx:3779
 TStyleManager.cxx:3780
 TStyleManager.cxx:3781
 TStyleManager.cxx:3782
 TStyleManager.cxx:3783
 TStyleManager.cxx:3784
 TStyleManager.cxx:3785
 TStyleManager.cxx:3786
 TStyleManager.cxx:3787
 TStyleManager.cxx:3788
 TStyleManager.cxx:3789
 TStyleManager.cxx:3790
 TStyleManager.cxx:3791
 TStyleManager.cxx:3792
 TStyleManager.cxx:3793
 TStyleManager.cxx:3794
 TStyleManager.cxx:3795
 TStyleManager.cxx:3796
 TStyleManager.cxx:3797
 TStyleManager.cxx:3798
 TStyleManager.cxx:3799
 TStyleManager.cxx:3800
 TStyleManager.cxx:3801
 TStyleManager.cxx:3802
 TStyleManager.cxx:3803
 TStyleManager.cxx:3804
 TStyleManager.cxx:3805
 TStyleManager.cxx:3806
 TStyleManager.cxx:3807
 TStyleManager.cxx:3808
 TStyleManager.cxx:3809
 TStyleManager.cxx:3810
 TStyleManager.cxx:3811
 TStyleManager.cxx:3812
 TStyleManager.cxx:3813
 TStyleManager.cxx:3814
 TStyleManager.cxx:3815
 TStyleManager.cxx:3816
 TStyleManager.cxx:3817
 TStyleManager.cxx:3818
 TStyleManager.cxx:3819
 TStyleManager.cxx:3820
 TStyleManager.cxx:3821
 TStyleManager.cxx:3822
 TStyleManager.cxx:3823
 TStyleManager.cxx:3824
 TStyleManager.cxx:3825
 TStyleManager.cxx:3826
 TStyleManager.cxx:3827
 TStyleManager.cxx:3828
 TStyleManager.cxx:3829
 TStyleManager.cxx:3830
 TStyleManager.cxx:3831
 TStyleManager.cxx:3832
 TStyleManager.cxx:3833
 TStyleManager.cxx:3834
 TStyleManager.cxx:3835
 TStyleManager.cxx:3836
 TStyleManager.cxx:3837
 TStyleManager.cxx:3838
 TStyleManager.cxx:3839
 TStyleManager.cxx:3840
 TStyleManager.cxx:3841
 TStyleManager.cxx:3842
 TStyleManager.cxx:3843
 TStyleManager.cxx:3844
 TStyleManager.cxx:3845
 TStyleManager.cxx:3846
 TStyleManager.cxx:3847
 TStyleManager.cxx:3848
 TStyleManager.cxx:3849
 TStyleManager.cxx:3850
 TStyleManager.cxx:3851
 TStyleManager.cxx:3852
 TStyleManager.cxx:3853
 TStyleManager.cxx:3854
 TStyleManager.cxx:3855
 TStyleManager.cxx:3856
 TStyleManager.cxx:3857
 TStyleManager.cxx:3858
 TStyleManager.cxx:3859
 TStyleManager.cxx:3860
 TStyleManager.cxx:3861
 TStyleManager.cxx:3862
 TStyleManager.cxx:3863
 TStyleManager.cxx:3864
 TStyleManager.cxx:3865
 TStyleManager.cxx:3866
 TStyleManager.cxx:3867
 TStyleManager.cxx:3868
 TStyleManager.cxx:3869
 TStyleManager.cxx:3870
 TStyleManager.cxx:3871
 TStyleManager.cxx:3872
 TStyleManager.cxx:3873
 TStyleManager.cxx:3874
 TStyleManager.cxx:3875
 TStyleManager.cxx:3876
 TStyleManager.cxx:3877
 TStyleManager.cxx:3878
 TStyleManager.cxx:3879
 TStyleManager.cxx:3880
 TStyleManager.cxx:3881
 TStyleManager.cxx:3882
 TStyleManager.cxx:3883
 TStyleManager.cxx:3884
 TStyleManager.cxx:3885
 TStyleManager.cxx:3886
 TStyleManager.cxx:3887
 TStyleManager.cxx:3888
 TStyleManager.cxx:3889
 TStyleManager.cxx:3890
 TStyleManager.cxx:3891
 TStyleManager.cxx:3892
 TStyleManager.cxx:3893
 TStyleManager.cxx:3894
 TStyleManager.cxx:3895
 TStyleManager.cxx:3896
 TStyleManager.cxx:3897
 TStyleManager.cxx:3898
 TStyleManager.cxx:3899
 TStyleManager.cxx:3900
 TStyleManager.cxx:3901
 TStyleManager.cxx:3902
 TStyleManager.cxx:3903
 TStyleManager.cxx:3904
 TStyleManager.cxx:3905
 TStyleManager.cxx:3906
 TStyleManager.cxx:3907
 TStyleManager.cxx:3908
 TStyleManager.cxx:3909
 TStyleManager.cxx:3910
 TStyleManager.cxx:3911
 TStyleManager.cxx:3912
 TStyleManager.cxx:3913
 TStyleManager.cxx:3914
 TStyleManager.cxx:3915
 TStyleManager.cxx:3916
 TStyleManager.cxx:3917
 TStyleManager.cxx:3918
 TStyleManager.cxx:3919
 TStyleManager.cxx:3920
 TStyleManager.cxx:3921
 TStyleManager.cxx:3922
 TStyleManager.cxx:3923
 TStyleManager.cxx:3924
 TStyleManager.cxx:3925
 TStyleManager.cxx:3926
 TStyleManager.cxx:3927
 TStyleManager.cxx:3928
 TStyleManager.cxx:3929
 TStyleManager.cxx:3930
 TStyleManager.cxx:3931
 TStyleManager.cxx:3932
 TStyleManager.cxx:3933
 TStyleManager.cxx:3934
 TStyleManager.cxx:3935
 TStyleManager.cxx:3936
 TStyleManager.cxx:3937
 TStyleManager.cxx:3938
 TStyleManager.cxx:3939
 TStyleManager.cxx:3940
 TStyleManager.cxx:3941
 TStyleManager.cxx:3942
 TStyleManager.cxx:3943
 TStyleManager.cxx:3944
 TStyleManager.cxx:3945
 TStyleManager.cxx:3946
 TStyleManager.cxx:3947
 TStyleManager.cxx:3948
 TStyleManager.cxx:3949
 TStyleManager.cxx:3950
 TStyleManager.cxx:3951
 TStyleManager.cxx:3952
 TStyleManager.cxx:3953
 TStyleManager.cxx:3954
 TStyleManager.cxx:3955
 TStyleManager.cxx:3956
 TStyleManager.cxx:3957
 TStyleManager.cxx:3958
 TStyleManager.cxx:3959
 TStyleManager.cxx:3960
 TStyleManager.cxx:3961
 TStyleManager.cxx:3962
 TStyleManager.cxx:3963
 TStyleManager.cxx:3964
 TStyleManager.cxx:3965
 TStyleManager.cxx:3966
 TStyleManager.cxx:3967
 TStyleManager.cxx:3968
 TStyleManager.cxx:3969
 TStyleManager.cxx:3970
 TStyleManager.cxx:3971
 TStyleManager.cxx:3972
 TStyleManager.cxx:3973
 TStyleManager.cxx:3974
 TStyleManager.cxx:3975
 TStyleManager.cxx:3976
 TStyleManager.cxx:3977
 TStyleManager.cxx:3978
 TStyleManager.cxx:3979
 TStyleManager.cxx:3980
 TStyleManager.cxx:3981
 TStyleManager.cxx:3982
 TStyleManager.cxx:3983
 TStyleManager.cxx:3984
 TStyleManager.cxx:3985
 TStyleManager.cxx:3986
 TStyleManager.cxx:3987
 TStyleManager.cxx:3988
 TStyleManager.cxx:3989
 TStyleManager.cxx:3990
 TStyleManager.cxx:3991
 TStyleManager.cxx:3992
 TStyleManager.cxx:3993
 TStyleManager.cxx:3994
 TStyleManager.cxx:3995
 TStyleManager.cxx:3996
 TStyleManager.cxx:3997
 TStyleManager.cxx:3998
 TStyleManager.cxx:3999
 TStyleManager.cxx:4000
 TStyleManager.cxx:4001
 TStyleManager.cxx:4002
 TStyleManager.cxx:4003
 TStyleManager.cxx:4004
 TStyleManager.cxx:4005
 TStyleManager.cxx:4006
 TStyleManager.cxx:4007
 TStyleManager.cxx:4008
 TStyleManager.cxx:4009
 TStyleManager.cxx:4010
 TStyleManager.cxx:4011
 TStyleManager.cxx:4012
 TStyleManager.cxx:4013
 TStyleManager.cxx:4014
 TStyleManager.cxx:4015
 TStyleManager.cxx:4016
 TStyleManager.cxx:4017
 TStyleManager.cxx:4018
 TStyleManager.cxx:4019
 TStyleManager.cxx:4020
 TStyleManager.cxx:4021
 TStyleManager.cxx:4022
 TStyleManager.cxx:4023
 TStyleManager.cxx:4024
 TStyleManager.cxx:4025
 TStyleManager.cxx:4026
 TStyleManager.cxx:4027
 TStyleManager.cxx:4028
 TStyleManager.cxx:4029
 TStyleManager.cxx:4030
 TStyleManager.cxx:4031
 TStyleManager.cxx:4032
 TStyleManager.cxx:4033
 TStyleManager.cxx:4034
 TStyleManager.cxx:4035
 TStyleManager.cxx:4036
 TStyleManager.cxx:4037
 TStyleManager.cxx:4038
 TStyleManager.cxx:4039
 TStyleManager.cxx:4040
 TStyleManager.cxx:4041
 TStyleManager.cxx:4042
 TStyleManager.cxx:4043
 TStyleManager.cxx:4044
 TStyleManager.cxx:4045
 TStyleManager.cxx:4046
 TStyleManager.cxx:4047
 TStyleManager.cxx:4048
 TStyleManager.cxx:4049
 TStyleManager.cxx:4050
 TStyleManager.cxx:4051
 TStyleManager.cxx:4052
 TStyleManager.cxx:4053
 TStyleManager.cxx:4054
 TStyleManager.cxx:4055
 TStyleManager.cxx:4056
 TStyleManager.cxx:4057
 TStyleManager.cxx:4058
 TStyleManager.cxx:4059
 TStyleManager.cxx:4060
 TStyleManager.cxx:4061
 TStyleManager.cxx:4062
 TStyleManager.cxx:4063
 TStyleManager.cxx:4064
 TStyleManager.cxx:4065
 TStyleManager.cxx:4066
 TStyleManager.cxx:4067
 TStyleManager.cxx:4068
 TStyleManager.cxx:4069
 TStyleManager.cxx:4070
 TStyleManager.cxx:4071
 TStyleManager.cxx:4072
 TStyleManager.cxx:4073
 TStyleManager.cxx:4074
 TStyleManager.cxx:4075
 TStyleManager.cxx:4076
 TStyleManager.cxx:4077
 TStyleManager.cxx:4078
 TStyleManager.cxx:4079
 TStyleManager.cxx:4080
 TStyleManager.cxx:4081
 TStyleManager.cxx:4082
 TStyleManager.cxx:4083
 TStyleManager.cxx:4084
 TStyleManager.cxx:4085
 TStyleManager.cxx:4086
 TStyleManager.cxx:4087
 TStyleManager.cxx:4088
 TStyleManager.cxx:4089
 TStyleManager.cxx:4090
 TStyleManager.cxx:4091
 TStyleManager.cxx:4092
 TStyleManager.cxx:4093
 TStyleManager.cxx:4094
 TStyleManager.cxx:4095
 TStyleManager.cxx:4096
 TStyleManager.cxx:4097
 TStyleManager.cxx:4098
 TStyleManager.cxx:4099
 TStyleManager.cxx:4100
 TStyleManager.cxx:4101
 TStyleManager.cxx:4102
 TStyleManager.cxx:4103
 TStyleManager.cxx:4104
 TStyleManager.cxx:4105
 TStyleManager.cxx:4106
 TStyleManager.cxx:4107
 TStyleManager.cxx:4108
 TStyleManager.cxx:4109
 TStyleManager.cxx:4110
 TStyleManager.cxx:4111
 TStyleManager.cxx:4112
 TStyleManager.cxx:4113
 TStyleManager.cxx:4114
 TStyleManager.cxx:4115
 TStyleManager.cxx:4116
 TStyleManager.cxx:4117
 TStyleManager.cxx:4118
 TStyleManager.cxx:4119
 TStyleManager.cxx:4120
 TStyleManager.cxx:4121
 TStyleManager.cxx:4122
 TStyleManager.cxx:4123
 TStyleManager.cxx:4124
 TStyleManager.cxx:4125
 TStyleManager.cxx:4126
 TStyleManager.cxx:4127
 TStyleManager.cxx:4128
 TStyleManager.cxx:4129
 TStyleManager.cxx:4130
 TStyleManager.cxx:4131
 TStyleManager.cxx:4132
 TStyleManager.cxx:4133
 TStyleManager.cxx:4134
 TStyleManager.cxx:4135
 TStyleManager.cxx:4136
 TStyleManager.cxx:4137
 TStyleManager.cxx:4138
 TStyleManager.cxx:4139
 TStyleManager.cxx:4140
 TStyleManager.cxx:4141
 TStyleManager.cxx:4142
 TStyleManager.cxx:4143
 TStyleManager.cxx:4144
 TStyleManager.cxx:4145
 TStyleManager.cxx:4146
 TStyleManager.cxx:4147
 TStyleManager.cxx:4148
 TStyleManager.cxx:4149
 TStyleManager.cxx:4150
 TStyleManager.cxx:4151
 TStyleManager.cxx:4152
 TStyleManager.cxx:4153
 TStyleManager.cxx:4154
 TStyleManager.cxx:4155
 TStyleManager.cxx:4156
 TStyleManager.cxx:4157
 TStyleManager.cxx:4158
 TStyleManager.cxx:4159
 TStyleManager.cxx:4160
 TStyleManager.cxx:4161
 TStyleManager.cxx:4162
 TStyleManager.cxx:4163
 TStyleManager.cxx:4164
 TStyleManager.cxx:4165
 TStyleManager.cxx:4166
 TStyleManager.cxx:4167
 TStyleManager.cxx:4168
 TStyleManager.cxx:4169
 TStyleManager.cxx:4170
 TStyleManager.cxx:4171
 TStyleManager.cxx:4172
 TStyleManager.cxx:4173
 TStyleManager.cxx:4174
 TStyleManager.cxx:4175
 TStyleManager.cxx:4176
 TStyleManager.cxx:4177
 TStyleManager.cxx:4178
 TStyleManager.cxx:4179
 TStyleManager.cxx:4180
 TStyleManager.cxx:4181
 TStyleManager.cxx:4182
 TStyleManager.cxx:4183
 TStyleManager.cxx:4184
 TStyleManager.cxx:4185
 TStyleManager.cxx:4186
 TStyleManager.cxx:4187
 TStyleManager.cxx:4188
 TStyleManager.cxx:4189
 TStyleManager.cxx:4190
 TStyleManager.cxx:4191
 TStyleManager.cxx:4192
 TStyleManager.cxx:4193
 TStyleManager.cxx:4194
 TStyleManager.cxx:4195
 TStyleManager.cxx:4196
 TStyleManager.cxx:4197
 TStyleManager.cxx:4198
 TStyleManager.cxx:4199
 TStyleManager.cxx:4200
 TStyleManager.cxx:4201
 TStyleManager.cxx:4202
 TStyleManager.cxx:4203
 TStyleManager.cxx:4204
 TStyleManager.cxx:4205
 TStyleManager.cxx:4206
 TStyleManager.cxx:4207
 TStyleManager.cxx:4208
 TStyleManager.cxx:4209
 TStyleManager.cxx:4210
 TStyleManager.cxx:4211
 TStyleManager.cxx:4212
 TStyleManager.cxx:4213
 TStyleManager.cxx:4214
 TStyleManager.cxx:4215
 TStyleManager.cxx:4216
 TStyleManager.cxx:4217
 TStyleManager.cxx:4218
 TStyleManager.cxx:4219
 TStyleManager.cxx:4220
 TStyleManager.cxx:4221
 TStyleManager.cxx:4222
 TStyleManager.cxx:4223
 TStyleManager.cxx:4224
 TStyleManager.cxx:4225
 TStyleManager.cxx:4226
 TStyleManager.cxx:4227
 TStyleManager.cxx:4228
 TStyleManager.cxx:4229
 TStyleManager.cxx:4230
 TStyleManager.cxx:4231
 TStyleManager.cxx:4232
 TStyleManager.cxx:4233
 TStyleManager.cxx:4234
 TStyleManager.cxx:4235
 TStyleManager.cxx:4236
 TStyleManager.cxx:4237
 TStyleManager.cxx:4238
 TStyleManager.cxx:4239
 TStyleManager.cxx:4240
 TStyleManager.cxx:4241
 TStyleManager.cxx:4242
 TStyleManager.cxx:4243
 TStyleManager.cxx:4244
 TStyleManager.cxx:4245
 TStyleManager.cxx:4246
 TStyleManager.cxx:4247
 TStyleManager.cxx:4248
 TStyleManager.cxx:4249
 TStyleManager.cxx:4250
 TStyleManager.cxx:4251
 TStyleManager.cxx:4252
 TStyleManager.cxx:4253
 TStyleManager.cxx:4254
 TStyleManager.cxx:4255
 TStyleManager.cxx:4256
 TStyleManager.cxx:4257
 TStyleManager.cxx:4258
 TStyleManager.cxx:4259
 TStyleManager.cxx:4260
 TStyleManager.cxx:4261
 TStyleManager.cxx:4262
 TStyleManager.cxx:4263
 TStyleManager.cxx:4264
 TStyleManager.cxx:4265
 TStyleManager.cxx:4266
 TStyleManager.cxx:4267
 TStyleManager.cxx:4268
 TStyleManager.cxx:4269
 TStyleManager.cxx:4270
 TStyleManager.cxx:4271
 TStyleManager.cxx:4272
 TStyleManager.cxx:4273
 TStyleManager.cxx:4274
 TStyleManager.cxx:4275
 TStyleManager.cxx:4276
 TStyleManager.cxx:4277
 TStyleManager.cxx:4278
 TStyleManager.cxx:4279
 TStyleManager.cxx:4280
 TStyleManager.cxx:4281
 TStyleManager.cxx:4282
 TStyleManager.cxx:4283
 TStyleManager.cxx:4284
 TStyleManager.cxx:4285
 TStyleManager.cxx:4286
 TStyleManager.cxx:4287
 TStyleManager.cxx:4288
 TStyleManager.cxx:4289
 TStyleManager.cxx:4290
 TStyleManager.cxx:4291
 TStyleManager.cxx:4292
 TStyleManager.cxx:4293
 TStyleManager.cxx:4294
 TStyleManager.cxx:4295
 TStyleManager.cxx:4296
 TStyleManager.cxx:4297
 TStyleManager.cxx:4298
 TStyleManager.cxx:4299
 TStyleManager.cxx:4300
 TStyleManager.cxx:4301
 TStyleManager.cxx:4302
 TStyleManager.cxx:4303
 TStyleManager.cxx:4304
 TStyleManager.cxx:4305
 TStyleManager.cxx:4306
 TStyleManager.cxx:4307
 TStyleManager.cxx:4308
 TStyleManager.cxx:4309
 TStyleManager.cxx:4310
 TStyleManager.cxx:4311
 TStyleManager.cxx:4312
 TStyleManager.cxx:4313
 TStyleManager.cxx:4314
 TStyleManager.cxx:4315
 TStyleManager.cxx:4316
 TStyleManager.cxx:4317
 TStyleManager.cxx:4318
 TStyleManager.cxx:4319
 TStyleManager.cxx:4320
 TStyleManager.cxx:4321
 TStyleManager.cxx:4322
 TStyleManager.cxx:4323
 TStyleManager.cxx:4324
 TStyleManager.cxx:4325
 TStyleManager.cxx:4326
 TStyleManager.cxx:4327
 TStyleManager.cxx:4328
 TStyleManager.cxx:4329
 TStyleManager.cxx:4330
 TStyleManager.cxx:4331
 TStyleManager.cxx:4332
 TStyleManager.cxx:4333
 TStyleManager.cxx:4334
 TStyleManager.cxx:4335
 TStyleManager.cxx:4336
 TStyleManager.cxx:4337
 TStyleManager.cxx:4338
 TStyleManager.cxx:4339
 TStyleManager.cxx:4340
 TStyleManager.cxx:4341
 TStyleManager.cxx:4342
 TStyleManager.cxx:4343
 TStyleManager.cxx:4344
 TStyleManager.cxx:4345
 TStyleManager.cxx:4346
 TStyleManager.cxx:4347
 TStyleManager.cxx:4348
 TStyleManager.cxx:4349
 TStyleManager.cxx:4350
 TStyleManager.cxx:4351
 TStyleManager.cxx:4352
 TStyleManager.cxx:4353
 TStyleManager.cxx:4354
 TStyleManager.cxx:4355
 TStyleManager.cxx:4356
 TStyleManager.cxx:4357
 TStyleManager.cxx:4358
 TStyleManager.cxx:4359
 TStyleManager.cxx:4360
 TStyleManager.cxx:4361
 TStyleManager.cxx:4362
 TStyleManager.cxx:4363
 TStyleManager.cxx:4364
 TStyleManager.cxx:4365
 TStyleManager.cxx:4366
 TStyleManager.cxx:4367
 TStyleManager.cxx:4368
 TStyleManager.cxx:4369
 TStyleManager.cxx:4370
 TStyleManager.cxx:4371
 TStyleManager.cxx:4372
 TStyleManager.cxx:4373
 TStyleManager.cxx:4374
 TStyleManager.cxx:4375
 TStyleManager.cxx:4376
 TStyleManager.cxx:4377
 TStyleManager.cxx:4378
 TStyleManager.cxx:4379
 TStyleManager.cxx:4380
 TStyleManager.cxx:4381
 TStyleManager.cxx:4382
 TStyleManager.cxx:4383
 TStyleManager.cxx:4384
 TStyleManager.cxx:4385
 TStyleManager.cxx:4386
 TStyleManager.cxx:4387
 TStyleManager.cxx:4388
 TStyleManager.cxx:4389
 TStyleManager.cxx:4390
 TStyleManager.cxx:4391
 TStyleManager.cxx:4392
 TStyleManager.cxx:4393
 TStyleManager.cxx:4394
 TStyleManager.cxx:4395
 TStyleManager.cxx:4396
 TStyleManager.cxx:4397
 TStyleManager.cxx:4398
 TStyleManager.cxx:4399
 TStyleManager.cxx:4400
 TStyleManager.cxx:4401
 TStyleManager.cxx:4402
 TStyleManager.cxx:4403
 TStyleManager.cxx:4404
 TStyleManager.cxx:4405
 TStyleManager.cxx:4406
 TStyleManager.cxx:4407
 TStyleManager.cxx:4408
 TStyleManager.cxx:4409
 TStyleManager.cxx:4410
 TStyleManager.cxx:4411
 TStyleManager.cxx:4412
 TStyleManager.cxx:4413
 TStyleManager.cxx:4414
 TStyleManager.cxx:4415
 TStyleManager.cxx:4416
 TStyleManager.cxx:4417
 TStyleManager.cxx:4418
 TStyleManager.cxx:4419
 TStyleManager.cxx:4420
 TStyleManager.cxx:4421
 TStyleManager.cxx:4422
 TStyleManager.cxx:4423
 TStyleManager.cxx:4424
 TStyleManager.cxx:4425
 TStyleManager.cxx:4426
 TStyleManager.cxx:4427
 TStyleManager.cxx:4428
 TStyleManager.cxx:4429
 TStyleManager.cxx:4430
 TStyleManager.cxx:4431
 TStyleManager.cxx:4432
 TStyleManager.cxx:4433
 TStyleManager.cxx:4434
 TStyleManager.cxx:4435
 TStyleManager.cxx:4436
 TStyleManager.cxx:4437
 TStyleManager.cxx:4438
 TStyleManager.cxx:4439
 TStyleManager.cxx:4440
 TStyleManager.cxx:4441
 TStyleManager.cxx:4442
 TStyleManager.cxx:4443
 TStyleManager.cxx:4444
 TStyleManager.cxx:4445
 TStyleManager.cxx:4446
 TStyleManager.cxx:4447
 TStyleManager.cxx:4448
 TStyleManager.cxx:4449
 TStyleManager.cxx:4450
 TStyleManager.cxx:4451
 TStyleManager.cxx:4452
 TStyleManager.cxx:4453
 TStyleManager.cxx:4454
 TStyleManager.cxx:4455
 TStyleManager.cxx:4456
 TStyleManager.cxx:4457
 TStyleManager.cxx:4458
 TStyleManager.cxx:4459
 TStyleManager.cxx:4460
 TStyleManager.cxx:4461
 TStyleManager.cxx:4462
 TStyleManager.cxx:4463
 TStyleManager.cxx:4464
 TStyleManager.cxx:4465
 TStyleManager.cxx:4466
 TStyleManager.cxx:4467
 TStyleManager.cxx:4468
 TStyleManager.cxx:4469
 TStyleManager.cxx:4470
 TStyleManager.cxx:4471
 TStyleManager.cxx:4472
 TStyleManager.cxx:4473
 TStyleManager.cxx:4474
 TStyleManager.cxx:4475
 TStyleManager.cxx:4476
 TStyleManager.cxx:4477
 TStyleManager.cxx:4478
 TStyleManager.cxx:4479
 TStyleManager.cxx:4480
 TStyleManager.cxx:4481
 TStyleManager.cxx:4482
 TStyleManager.cxx:4483
 TStyleManager.cxx:4484
 TStyleManager.cxx:4485
 TStyleManager.cxx:4486
 TStyleManager.cxx:4487
 TStyleManager.cxx:4488
 TStyleManager.cxx:4489
 TStyleManager.cxx:4490
 TStyleManager.cxx:4491
 TStyleManager.cxx:4492
 TStyleManager.cxx:4493
 TStyleManager.cxx:4494
 TStyleManager.cxx:4495
 TStyleManager.cxx:4496
 TStyleManager.cxx:4497
 TStyleManager.cxx:4498
 TStyleManager.cxx:4499
 TStyleManager.cxx:4500
 TStyleManager.cxx:4501
 TStyleManager.cxx:4502
 TStyleManager.cxx:4503
 TStyleManager.cxx:4504
 TStyleManager.cxx:4505
 TStyleManager.cxx:4506
 TStyleManager.cxx:4507
 TStyleManager.cxx:4508
 TStyleManager.cxx:4509
 TStyleManager.cxx:4510
 TStyleManager.cxx:4511
 TStyleManager.cxx:4512
 TStyleManager.cxx:4513
 TStyleManager.cxx:4514
 TStyleManager.cxx:4515
 TStyleManager.cxx:4516
 TStyleManager.cxx:4517
 TStyleManager.cxx:4518
 TStyleManager.cxx:4519
 TStyleManager.cxx:4520
 TStyleManager.cxx:4521
 TStyleManager.cxx:4522
 TStyleManager.cxx:4523
 TStyleManager.cxx:4524
 TStyleManager.cxx:4525
 TStyleManager.cxx:4526
 TStyleManager.cxx:4527
 TStyleManager.cxx:4528
 TStyleManager.cxx:4529
 TStyleManager.cxx:4530
 TStyleManager.cxx:4531
 TStyleManager.cxx:4532
 TStyleManager.cxx:4533
 TStyleManager.cxx:4534
 TStyleManager.cxx:4535
 TStyleManager.cxx:4536
 TStyleManager.cxx:4537
 TStyleManager.cxx:4538
 TStyleManager.cxx:4539
 TStyleManager.cxx:4540
 TStyleManager.cxx:4541
 TStyleManager.cxx:4542
 TStyleManager.cxx:4543
 TStyleManager.cxx:4544
 TStyleManager.cxx:4545
 TStyleManager.cxx:4546
 TStyleManager.cxx:4547
 TStyleManager.cxx:4548
 TStyleManager.cxx:4549
 TStyleManager.cxx:4550
 TStyleManager.cxx:4551
 TStyleManager.cxx:4552
 TStyleManager.cxx:4553
 TStyleManager.cxx:4554
 TStyleManager.cxx:4555
 TStyleManager.cxx:4556
 TStyleManager.cxx:4557
 TStyleManager.cxx:4558
 TStyleManager.cxx:4559
 TStyleManager.cxx:4560
 TStyleManager.cxx:4561
 TStyleManager.cxx:4562
 TStyleManager.cxx:4563
 TStyleManager.cxx:4564
 TStyleManager.cxx:4565
 TStyleManager.cxx:4566
 TStyleManager.cxx:4567
 TStyleManager.cxx:4568
 TStyleManager.cxx:4569
 TStyleManager.cxx:4570
 TStyleManager.cxx:4571
 TStyleManager.cxx:4572
 TStyleManager.cxx:4573
 TStyleManager.cxx:4574
 TStyleManager.cxx:4575
 TStyleManager.cxx:4576
 TStyleManager.cxx:4577
 TStyleManager.cxx:4578
 TStyleManager.cxx:4579
 TStyleManager.cxx:4580
 TStyleManager.cxx:4581
 TStyleManager.cxx:4582
 TStyleManager.cxx:4583
 TStyleManager.cxx:4584
 TStyleManager.cxx:4585
 TStyleManager.cxx:4586
 TStyleManager.cxx:4587
 TStyleManager.cxx:4588
 TStyleManager.cxx:4589
 TStyleManager.cxx:4590
 TStyleManager.cxx:4591
 TStyleManager.cxx:4592
 TStyleManager.cxx:4593
 TStyleManager.cxx:4594
 TStyleManager.cxx:4595
 TStyleManager.cxx:4596
 TStyleManager.cxx:4597
 TStyleManager.cxx:4598
 TStyleManager.cxx:4599
 TStyleManager.cxx:4600
 TStyleManager.cxx:4601
 TStyleManager.cxx:4602
 TStyleManager.cxx:4603
 TStyleManager.cxx:4604
 TStyleManager.cxx:4605
 TStyleManager.cxx:4606
 TStyleManager.cxx:4607
 TStyleManager.cxx:4608
 TStyleManager.cxx:4609
 TStyleManager.cxx:4610
 TStyleManager.cxx:4611
 TStyleManager.cxx:4612
 TStyleManager.cxx:4613
 TStyleManager.cxx:4614
 TStyleManager.cxx:4615
 TStyleManager.cxx:4616
 TStyleManager.cxx:4617
 TStyleManager.cxx:4618
 TStyleManager.cxx:4619
 TStyleManager.cxx:4620
 TStyleManager.cxx:4621
 TStyleManager.cxx:4622
 TStyleManager.cxx:4623
 TStyleManager.cxx:4624
 TStyleManager.cxx:4625
 TStyleManager.cxx:4626
 TStyleManager.cxx:4627
 TStyleManager.cxx:4628
 TStyleManager.cxx:4629
 TStyleManager.cxx:4630
 TStyleManager.cxx:4631
 TStyleManager.cxx:4632
 TStyleManager.cxx:4633
 TStyleManager.cxx:4634
 TStyleManager.cxx:4635
 TStyleManager.cxx:4636
 TStyleManager.cxx:4637
 TStyleManager.cxx:4638
 TStyleManager.cxx:4639
 TStyleManager.cxx:4640
 TStyleManager.cxx:4641
 TStyleManager.cxx:4642
 TStyleManager.cxx:4643
 TStyleManager.cxx:4644
 TStyleManager.cxx:4645
 TStyleManager.cxx:4646
 TStyleManager.cxx:4647
 TStyleManager.cxx:4648
 TStyleManager.cxx:4649
 TStyleManager.cxx:4650
 TStyleManager.cxx:4651
 TStyleManager.cxx:4652
 TStyleManager.cxx:4653
 TStyleManager.cxx:4654
 TStyleManager.cxx:4655
 TStyleManager.cxx:4656
 TStyleManager.cxx:4657
 TStyleManager.cxx:4658
 TStyleManager.cxx:4659
 TStyleManager.cxx:4660
 TStyleManager.cxx:4661
 TStyleManager.cxx:4662
 TStyleManager.cxx:4663
 TStyleManager.cxx:4664
 TStyleManager.cxx:4665
 TStyleManager.cxx:4666
 TStyleManager.cxx:4667
 TStyleManager.cxx:4668
 TStyleManager.cxx:4669
 TStyleManager.cxx:4670
 TStyleManager.cxx:4671
 TStyleManager.cxx:4672
 TStyleManager.cxx:4673
 TStyleManager.cxx:4674
 TStyleManager.cxx:4675
 TStyleManager.cxx:4676
 TStyleManager.cxx:4677
 TStyleManager.cxx:4678
 TStyleManager.cxx:4679
 TStyleManager.cxx:4680
 TStyleManager.cxx:4681
 TStyleManager.cxx:4682
 TStyleManager.cxx:4683
 TStyleManager.cxx:4684
 TStyleManager.cxx:4685
 TStyleManager.cxx:4686
 TStyleManager.cxx:4687
 TStyleManager.cxx:4688
 TStyleManager.cxx:4689
 TStyleManager.cxx:4690
 TStyleManager.cxx:4691
 TStyleManager.cxx:4692
 TStyleManager.cxx:4693
 TStyleManager.cxx:4694
 TStyleManager.cxx:4695
 TStyleManager.cxx:4696
 TStyleManager.cxx:4697
 TStyleManager.cxx:4698
 TStyleManager.cxx:4699
 TStyleManager.cxx:4700
 TStyleManager.cxx:4701
 TStyleManager.cxx:4702
 TStyleManager.cxx:4703
 TStyleManager.cxx:4704
 TStyleManager.cxx:4705
 TStyleManager.cxx:4706
 TStyleManager.cxx:4707
 TStyleManager.cxx:4708
 TStyleManager.cxx:4709
 TStyleManager.cxx:4710
 TStyleManager.cxx:4711
 TStyleManager.cxx:4712
 TStyleManager.cxx:4713
 TStyleManager.cxx:4714
 TStyleManager.cxx:4715
 TStyleManager.cxx:4716
 TStyleManager.cxx:4717
 TStyleManager.cxx:4718
 TStyleManager.cxx:4719
 TStyleManager.cxx:4720
 TStyleManager.cxx:4721
 TStyleManager.cxx:4722
 TStyleManager.cxx:4723
 TStyleManager.cxx:4724
 TStyleManager.cxx:4725
 TStyleManager.cxx:4726
 TStyleManager.cxx:4727
 TStyleManager.cxx:4728
 TStyleManager.cxx:4729
 TStyleManager.cxx:4730
 TStyleManager.cxx:4731
 TStyleManager.cxx:4732
 TStyleManager.cxx:4733
 TStyleManager.cxx:4734
 TStyleManager.cxx:4735
 TStyleManager.cxx:4736
 TStyleManager.cxx:4737
 TStyleManager.cxx:4738
 TStyleManager.cxx:4739
 TStyleManager.cxx:4740
 TStyleManager.cxx:4741
 TStyleManager.cxx:4742
 TStyleManager.cxx:4743
 TStyleManager.cxx:4744
 TStyleManager.cxx:4745
 TStyleManager.cxx:4746
 TStyleManager.cxx:4747
 TStyleManager.cxx:4748
 TStyleManager.cxx:4749
 TStyleManager.cxx:4750
 TStyleManager.cxx:4751
 TStyleManager.cxx:4752
 TStyleManager.cxx:4753
 TStyleManager.cxx:4754
 TStyleManager.cxx:4755
 TStyleManager.cxx:4756
 TStyleManager.cxx:4757
 TStyleManager.cxx:4758
 TStyleManager.cxx:4759
 TStyleManager.cxx:4760
 TStyleManager.cxx:4761
 TStyleManager.cxx:4762
 TStyleManager.cxx:4763
 TStyleManager.cxx:4764
 TStyleManager.cxx:4765
 TStyleManager.cxx:4766
 TStyleManager.cxx:4767
 TStyleManager.cxx:4768
 TStyleManager.cxx:4769
 TStyleManager.cxx:4770
 TStyleManager.cxx:4771
 TStyleManager.cxx:4772
 TStyleManager.cxx:4773
 TStyleManager.cxx:4774
 TStyleManager.cxx:4775
 TStyleManager.cxx:4776
 TStyleManager.cxx:4777
 TStyleManager.cxx:4778
 TStyleManager.cxx:4779
 TStyleManager.cxx:4780
 TStyleManager.cxx:4781
 TStyleManager.cxx:4782
 TStyleManager.cxx:4783
 TStyleManager.cxx:4784
 TStyleManager.cxx:4785
 TStyleManager.cxx:4786
 TStyleManager.cxx:4787
 TStyleManager.cxx:4788
 TStyleManager.cxx:4789
 TStyleManager.cxx:4790
 TStyleManager.cxx:4791
 TStyleManager.cxx:4792
 TStyleManager.cxx:4793
 TStyleManager.cxx:4794
 TStyleManager.cxx:4795
 TStyleManager.cxx:4796
 TStyleManager.cxx:4797
 TStyleManager.cxx:4798
 TStyleManager.cxx:4799
 TStyleManager.cxx:4800
 TStyleManager.cxx:4801
 TStyleManager.cxx:4802
 TStyleManager.cxx:4803
 TStyleManager.cxx:4804
 TStyleManager.cxx:4805
 TStyleManager.cxx:4806
 TStyleManager.cxx:4807
 TStyleManager.cxx:4808
 TStyleManager.cxx:4809
 TStyleManager.cxx:4810
 TStyleManager.cxx:4811
 TStyleManager.cxx:4812
 TStyleManager.cxx:4813
 TStyleManager.cxx:4814
 TStyleManager.cxx:4815
 TStyleManager.cxx:4816
 TStyleManager.cxx:4817
 TStyleManager.cxx:4818
 TStyleManager.cxx:4819
 TStyleManager.cxx:4820
 TStyleManager.cxx:4821
 TStyleManager.cxx:4822
 TStyleManager.cxx:4823
 TStyleManager.cxx:4824
 TStyleManager.cxx:4825
 TStyleManager.cxx:4826
 TStyleManager.cxx:4827
 TStyleManager.cxx:4828
 TStyleManager.cxx:4829
 TStyleManager.cxx:4830
 TStyleManager.cxx:4831
 TStyleManager.cxx:4832
 TStyleManager.cxx:4833
 TStyleManager.cxx:4834
 TStyleManager.cxx:4835
 TStyleManager.cxx:4836
 TStyleManager.cxx:4837
 TStyleManager.cxx:4838
 TStyleManager.cxx:4839
 TStyleManager.cxx:4840
 TStyleManager.cxx:4841
 TStyleManager.cxx:4842
 TStyleManager.cxx:4843
 TStyleManager.cxx:4844
 TStyleManager.cxx:4845
 TStyleManager.cxx:4846
 TStyleManager.cxx:4847
 TStyleManager.cxx:4848
 TStyleManager.cxx:4849
 TStyleManager.cxx:4850
 TStyleManager.cxx:4851
 TStyleManager.cxx:4852
 TStyleManager.cxx:4853
 TStyleManager.cxx:4854
 TStyleManager.cxx:4855
 TStyleManager.cxx:4856
 TStyleManager.cxx:4857
 TStyleManager.cxx:4858
 TStyleManager.cxx:4859
 TStyleManager.cxx:4860
 TStyleManager.cxx:4861
 TStyleManager.cxx:4862
 TStyleManager.cxx:4863
 TStyleManager.cxx:4864
 TStyleManager.cxx:4865
 TStyleManager.cxx:4866
 TStyleManager.cxx:4867
 TStyleManager.cxx:4868
 TStyleManager.cxx:4869
 TStyleManager.cxx:4870
 TStyleManager.cxx:4871
 TStyleManager.cxx:4872
 TStyleManager.cxx:4873
 TStyleManager.cxx:4874
 TStyleManager.cxx:4875
 TStyleManager.cxx:4876
 TStyleManager.cxx:4877
 TStyleManager.cxx:4878
 TStyleManager.cxx:4879
 TStyleManager.cxx:4880
 TStyleManager.cxx:4881
 TStyleManager.cxx:4882
 TStyleManager.cxx:4883
 TStyleManager.cxx:4884
 TStyleManager.cxx:4885
 TStyleManager.cxx:4886
 TStyleManager.cxx:4887
 TStyleManager.cxx:4888
 TStyleManager.cxx:4889
 TStyleManager.cxx:4890
 TStyleManager.cxx:4891
 TStyleManager.cxx:4892
 TStyleManager.cxx:4893
 TStyleManager.cxx:4894
 TStyleManager.cxx:4895
 TStyleManager.cxx:4896
 TStyleManager.cxx:4897
 TStyleManager.cxx:4898
 TStyleManager.cxx:4899
 TStyleManager.cxx:4900
 TStyleManager.cxx:4901
 TStyleManager.cxx:4902
 TStyleManager.cxx:4903
 TStyleManager.cxx:4904
 TStyleManager.cxx:4905
 TStyleManager.cxx:4906
 TStyleManager.cxx:4907
 TStyleManager.cxx:4908
 TStyleManager.cxx:4909
 TStyleManager.cxx:4910
 TStyleManager.cxx:4911
 TStyleManager.cxx:4912
 TStyleManager.cxx:4913
 TStyleManager.cxx:4914
 TStyleManager.cxx:4915
 TStyleManager.cxx:4916
 TStyleManager.cxx:4917
 TStyleManager.cxx:4918
 TStyleManager.cxx:4919
 TStyleManager.cxx:4920
 TStyleManager.cxx:4921
 TStyleManager.cxx:4922
 TStyleManager.cxx:4923
 TStyleManager.cxx:4924
 TStyleManager.cxx:4925
 TStyleManager.cxx:4926
 TStyleManager.cxx:4927
 TStyleManager.cxx:4928
 TStyleManager.cxx:4929
 TStyleManager.cxx:4930
 TStyleManager.cxx:4931
 TStyleManager.cxx:4932
 TStyleManager.cxx:4933
 TStyleManager.cxx:4934
 TStyleManager.cxx:4935
 TStyleManager.cxx:4936
 TStyleManager.cxx:4937
 TStyleManager.cxx:4938
 TStyleManager.cxx:4939
 TStyleManager.cxx:4940
 TStyleManager.cxx:4941
 TStyleManager.cxx:4942
 TStyleManager.cxx:4943
 TStyleManager.cxx:4944
 TStyleManager.cxx:4945
 TStyleManager.cxx:4946
 TStyleManager.cxx:4947
 TStyleManager.cxx:4948
 TStyleManager.cxx:4949
 TStyleManager.cxx:4950
 TStyleManager.cxx:4951
 TStyleManager.cxx:4952
 TStyleManager.cxx:4953
 TStyleManager.cxx:4954
 TStyleManager.cxx:4955
 TStyleManager.cxx:4956
 TStyleManager.cxx:4957
 TStyleManager.cxx:4958
 TStyleManager.cxx:4959
 TStyleManager.cxx:4960
 TStyleManager.cxx:4961
 TStyleManager.cxx:4962
 TStyleManager.cxx:4963
 TStyleManager.cxx:4964
 TStyleManager.cxx:4965
 TStyleManager.cxx:4966
 TStyleManager.cxx:4967
 TStyleManager.cxx:4968
 TStyleManager.cxx:4969
 TStyleManager.cxx:4970
 TStyleManager.cxx:4971
 TStyleManager.cxx:4972
 TStyleManager.cxx:4973
 TStyleManager.cxx:4974
 TStyleManager.cxx:4975
 TStyleManager.cxx:4976
 TStyleManager.cxx:4977
 TStyleManager.cxx:4978
 TStyleManager.cxx:4979
 TStyleManager.cxx:4980
 TStyleManager.cxx:4981
 TStyleManager.cxx:4982
 TStyleManager.cxx:4983
 TStyleManager.cxx:4984
 TStyleManager.cxx:4985
 TStyleManager.cxx:4986
 TStyleManager.cxx:4987
 TStyleManager.cxx:4988
 TStyleManager.cxx:4989
 TStyleManager.cxx:4990
 TStyleManager.cxx:4991
 TStyleManager.cxx:4992
 TStyleManager.cxx:4993
 TStyleManager.cxx:4994
 TStyleManager.cxx:4995
 TStyleManager.cxx:4996
 TStyleManager.cxx:4997
 TStyleManager.cxx:4998
 TStyleManager.cxx:4999
 TStyleManager.cxx:5000
 TStyleManager.cxx:5001
 TStyleManager.cxx:5002
 TStyleManager.cxx:5003
 TStyleManager.cxx:5004
 TStyleManager.cxx:5005
 TStyleManager.cxx:5006
 TStyleManager.cxx:5007
 TStyleManager.cxx:5008
 TStyleManager.cxx:5009
 TStyleManager.cxx:5010
 TStyleManager.cxx:5011
 TStyleManager.cxx:5012
 TStyleManager.cxx:5013
 TStyleManager.cxx:5014
 TStyleManager.cxx:5015
 TStyleManager.cxx:5016
 TStyleManager.cxx:5017
 TStyleManager.cxx:5018
 TStyleManager.cxx:5019
 TStyleManager.cxx:5020
 TStyleManager.cxx:5021
 TStyleManager.cxx:5022
 TStyleManager.cxx:5023
 TStyleManager.cxx:5024
 TStyleManager.cxx:5025
 TStyleManager.cxx:5026
 TStyleManager.cxx:5027
 TStyleManager.cxx:5028
 TStyleManager.cxx:5029
 TStyleManager.cxx:5030
 TStyleManager.cxx:5031
 TStyleManager.cxx:5032
 TStyleManager.cxx:5033
 TStyleManager.cxx:5034
 TStyleManager.cxx:5035
 TStyleManager.cxx:5036
 TStyleManager.cxx:5037
 TStyleManager.cxx:5038
 TStyleManager.cxx:5039
 TStyleManager.cxx:5040
 TStyleManager.cxx:5041
 TStyleManager.cxx:5042
 TStyleManager.cxx:5043
 TStyleManager.cxx:5044
 TStyleManager.cxx:5045
 TStyleManager.cxx:5046
 TStyleManager.cxx:5047
 TStyleManager.cxx:5048
 TStyleManager.cxx:5049
 TStyleManager.cxx:5050
 TStyleManager.cxx:5051
 TStyleManager.cxx:5052
 TStyleManager.cxx:5053
 TStyleManager.cxx:5054
 TStyleManager.cxx:5055
 TStyleManager.cxx:5056
 TStyleManager.cxx:5057
 TStyleManager.cxx:5058
 TStyleManager.cxx:5059
 TStyleManager.cxx:5060
 TStyleManager.cxx:5061
 TStyleManager.cxx:5062
 TStyleManager.cxx:5063
 TStyleManager.cxx:5064
 TStyleManager.cxx:5065
 TStyleManager.cxx:5066
 TStyleManager.cxx:5067
 TStyleManager.cxx:5068
 TStyleManager.cxx:5069
 TStyleManager.cxx:5070
 TStyleManager.cxx:5071
 TStyleManager.cxx:5072
 TStyleManager.cxx:5073
 TStyleManager.cxx:5074
 TStyleManager.cxx:5075
 TStyleManager.cxx:5076
 TStyleManager.cxx:5077
 TStyleManager.cxx:5078
 TStyleManager.cxx:5079
 TStyleManager.cxx:5080
 TStyleManager.cxx:5081
 TStyleManager.cxx:5082
 TStyleManager.cxx:5083
 TStyleManager.cxx:5084
 TStyleManager.cxx:5085
 TStyleManager.cxx:5086
 TStyleManager.cxx:5087
 TStyleManager.cxx:5088
 TStyleManager.cxx:5089
 TStyleManager.cxx:5090
 TStyleManager.cxx:5091
 TStyleManager.cxx:5092
 TStyleManager.cxx:5093
 TStyleManager.cxx:5094
 TStyleManager.cxx:5095
 TStyleManager.cxx:5096
 TStyleManager.cxx:5097
 TStyleManager.cxx:5098
 TStyleManager.cxx:5099
 TStyleManager.cxx:5100
 TStyleManager.cxx:5101
 TStyleManager.cxx:5102
 TStyleManager.cxx:5103
 TStyleManager.cxx:5104
 TStyleManager.cxx:5105
 TStyleManager.cxx:5106
 TStyleManager.cxx:5107
 TStyleManager.cxx:5108
 TStyleManager.cxx:5109
 TStyleManager.cxx:5110
 TStyleManager.cxx:5111
 TStyleManager.cxx:5112
 TStyleManager.cxx:5113
 TStyleManager.cxx:5114
 TStyleManager.cxx:5115
 TStyleManager.cxx:5116
 TStyleManager.cxx:5117
 TStyleManager.cxx:5118
 TStyleManager.cxx:5119
 TStyleManager.cxx:5120
 TStyleManager.cxx:5121
 TStyleManager.cxx:5122
 TStyleManager.cxx:5123
 TStyleManager.cxx:5124
 TStyleManager.cxx:5125
 TStyleManager.cxx:5126
 TStyleManager.cxx:5127
 TStyleManager.cxx:5128
 TStyleManager.cxx:5129
 TStyleManager.cxx:5130
 TStyleManager.cxx:5131
 TStyleManager.cxx:5132
 TStyleManager.cxx:5133
 TStyleManager.cxx:5134
 TStyleManager.cxx:5135
 TStyleManager.cxx:5136
 TStyleManager.cxx:5137
 TStyleManager.cxx:5138
 TStyleManager.cxx:5139
 TStyleManager.cxx:5140
 TStyleManager.cxx:5141
 TStyleManager.cxx:5142
 TStyleManager.cxx:5143
 TStyleManager.cxx:5144
 TStyleManager.cxx:5145
 TStyleManager.cxx:5146
 TStyleManager.cxx:5147
 TStyleManager.cxx:5148
 TStyleManager.cxx:5149
 TStyleManager.cxx:5150
 TStyleManager.cxx:5151
 TStyleManager.cxx:5152
 TStyleManager.cxx:5153
 TStyleManager.cxx:5154
 TStyleManager.cxx:5155
 TStyleManager.cxx:5156
 TStyleManager.cxx:5157
 TStyleManager.cxx:5158
 TStyleManager.cxx:5159
 TStyleManager.cxx:5160
 TStyleManager.cxx:5161
 TStyleManager.cxx:5162
 TStyleManager.cxx:5163
 TStyleManager.cxx:5164
 TStyleManager.cxx:5165
 TStyleManager.cxx:5166
 TStyleManager.cxx:5167
 TStyleManager.cxx:5168
 TStyleManager.cxx:5169
 TStyleManager.cxx:5170
 TStyleManager.cxx:5171
 TStyleManager.cxx:5172
 TStyleManager.cxx:5173
 TStyleManager.cxx:5174
 TStyleManager.cxx:5175
 TStyleManager.cxx:5176
 TStyleManager.cxx:5177
 TStyleManager.cxx:5178
 TStyleManager.cxx:5179
 TStyleManager.cxx:5180
 TStyleManager.cxx:5181
 TStyleManager.cxx:5182
 TStyleManager.cxx:5183
 TStyleManager.cxx:5184
 TStyleManager.cxx:5185
 TStyleManager.cxx:5186
 TStyleManager.cxx:5187
 TStyleManager.cxx:5188
 TStyleManager.cxx:5189
 TStyleManager.cxx:5190
 TStyleManager.cxx:5191
 TStyleManager.cxx:5192
 TStyleManager.cxx:5193
 TStyleManager.cxx:5194
 TStyleManager.cxx:5195
 TStyleManager.cxx:5196
 TStyleManager.cxx:5197
 TStyleManager.cxx:5198
 TStyleManager.cxx:5199
 TStyleManager.cxx:5200
 TStyleManager.cxx:5201
 TStyleManager.cxx:5202
 TStyleManager.cxx:5203
 TStyleManager.cxx:5204
 TStyleManager.cxx:5205
 TStyleManager.cxx:5206
 TStyleManager.cxx:5207
 TStyleManager.cxx:5208
 TStyleManager.cxx:5209
 TStyleManager.cxx:5210
 TStyleManager.cxx:5211
 TStyleManager.cxx:5212
 TStyleManager.cxx:5213
 TStyleManager.cxx:5214
 TStyleManager.cxx:5215
 TStyleManager.cxx:5216
 TStyleManager.cxx:5217
 TStyleManager.cxx:5218
 TStyleManager.cxx:5219
 TStyleManager.cxx:5220
 TStyleManager.cxx:5221
 TStyleManager.cxx:5222
 TStyleManager.cxx:5223
 TStyleManager.cxx:5224
 TStyleManager.cxx:5225
 TStyleManager.cxx:5226
 TStyleManager.cxx:5227
 TStyleManager.cxx:5228
 TStyleManager.cxx:5229
 TStyleManager.cxx:5230
 TStyleManager.cxx:5231
 TStyleManager.cxx:5232
 TStyleManager.cxx:5233
 TStyleManager.cxx:5234
 TStyleManager.cxx:5235
 TStyleManager.cxx:5236
 TStyleManager.cxx:5237
 TStyleManager.cxx:5238
 TStyleManager.cxx:5239
 TStyleManager.cxx:5240
 TStyleManager.cxx:5241
 TStyleManager.cxx:5242
 TStyleManager.cxx:5243
 TStyleManager.cxx:5244
 TStyleManager.cxx:5245
 TStyleManager.cxx:5246
 TStyleManager.cxx:5247
 TStyleManager.cxx:5248
 TStyleManager.cxx:5249
 TStyleManager.cxx:5250
 TStyleManager.cxx:5251
 TStyleManager.cxx:5252
 TStyleManager.cxx:5253
 TStyleManager.cxx:5254
 TStyleManager.cxx:5255
 TStyleManager.cxx:5256
 TStyleManager.cxx:5257
 TStyleManager.cxx:5258
 TStyleManager.cxx:5259
 TStyleManager.cxx:5260
 TStyleManager.cxx:5261
 TStyleManager.cxx:5262
 TStyleManager.cxx:5263
 TStyleManager.cxx:5264
 TStyleManager.cxx:5265
 TStyleManager.cxx:5266
 TStyleManager.cxx:5267
 TStyleManager.cxx:5268
 TStyleManager.cxx:5269
 TStyleManager.cxx:5270
 TStyleManager.cxx:5271
 TStyleManager.cxx:5272
 TStyleManager.cxx:5273
 TStyleManager.cxx:5274
 TStyleManager.cxx:5275
 TStyleManager.cxx:5276
 TStyleManager.cxx:5277
 TStyleManager.cxx:5278
 TStyleManager.cxx:5279
 TStyleManager.cxx:5280
 TStyleManager.cxx:5281
 TStyleManager.cxx:5282
 TStyleManager.cxx:5283
 TStyleManager.cxx:5284
 TStyleManager.cxx:5285
 TStyleManager.cxx:5286
 TStyleManager.cxx:5287
 TStyleManager.cxx:5288
 TStyleManager.cxx:5289
 TStyleManager.cxx:5290
 TStyleManager.cxx:5291
 TStyleManager.cxx:5292
 TStyleManager.cxx:5293
 TStyleManager.cxx:5294
 TStyleManager.cxx:5295
 TStyleManager.cxx:5296
 TStyleManager.cxx:5297
 TStyleManager.cxx:5298
 TStyleManager.cxx:5299
 TStyleManager.cxx:5300
 TStyleManager.cxx:5301
 TStyleManager.cxx:5302
 TStyleManager.cxx:5303
 TStyleManager.cxx:5304
 TStyleManager.cxx:5305
 TStyleManager.cxx:5306
 TStyleManager.cxx:5307
 TStyleManager.cxx:5308
 TStyleManager.cxx:5309
 TStyleManager.cxx:5310
 TStyleManager.cxx:5311
 TStyleManager.cxx:5312
 TStyleManager.cxx:5313
 TStyleManager.cxx:5314
 TStyleManager.cxx:5315
 TStyleManager.cxx:5316
 TStyleManager.cxx:5317
 TStyleManager.cxx:5318
 TStyleManager.cxx:5319
 TStyleManager.cxx:5320
 TStyleManager.cxx:5321
 TStyleManager.cxx:5322
 TStyleManager.cxx:5323
 TStyleManager.cxx:5324
 TStyleManager.cxx:5325
 TStyleManager.cxx:5326
 TStyleManager.cxx:5327
 TStyleManager.cxx:5328
 TStyleManager.cxx:5329
 TStyleManager.cxx:5330
 TStyleManager.cxx:5331
 TStyleManager.cxx:5332
 TStyleManager.cxx:5333
 TStyleManager.cxx:5334
 TStyleManager.cxx:5335
 TStyleManager.cxx:5336
 TStyleManager.cxx:5337
 TStyleManager.cxx:5338
 TStyleManager.cxx:5339
 TStyleManager.cxx:5340
 TStyleManager.cxx:5341
 TStyleManager.cxx:5342
 TStyleManager.cxx:5343
 TStyleManager.cxx:5344
 TStyleManager.cxx:5345
 TStyleManager.cxx:5346
 TStyleManager.cxx:5347
 TStyleManager.cxx:5348
 TStyleManager.cxx:5349
 TStyleManager.cxx:5350
 TStyleManager.cxx:5351
 TStyleManager.cxx:5352
 TStyleManager.cxx:5353
 TStyleManager.cxx:5354
 TStyleManager.cxx:5355
 TStyleManager.cxx:5356
 TStyleManager.cxx:5357
 TStyleManager.cxx:5358
 TStyleManager.cxx:5359
 TStyleManager.cxx:5360
 TStyleManager.cxx:5361
 TStyleManager.cxx:5362
 TStyleManager.cxx:5363
 TStyleManager.cxx:5364
 TStyleManager.cxx:5365
 TStyleManager.cxx:5366
 TStyleManager.cxx:5367
 TStyleManager.cxx:5368
 TStyleManager.cxx:5369
 TStyleManager.cxx:5370
 TStyleManager.cxx:5371
 TStyleManager.cxx:5372
 TStyleManager.cxx:5373
 TStyleManager.cxx:5374
 TStyleManager.cxx:5375
 TStyleManager.cxx:5376
 TStyleManager.cxx:5377
 TStyleManager.cxx:5378
 TStyleManager.cxx:5379
 TStyleManager.cxx:5380
 TStyleManager.cxx:5381
 TStyleManager.cxx:5382
 TStyleManager.cxx:5383
 TStyleManager.cxx:5384
 TStyleManager.cxx:5385
 TStyleManager.cxx:5386
 TStyleManager.cxx:5387
 TStyleManager.cxx:5388
 TStyleManager.cxx:5389
 TStyleManager.cxx:5390
 TStyleManager.cxx:5391
 TStyleManager.cxx:5392
 TStyleManager.cxx:5393
 TStyleManager.cxx:5394
 TStyleManager.cxx:5395
 TStyleManager.cxx:5396
 TStyleManager.cxx:5397
 TStyleManager.cxx:5398
 TStyleManager.cxx:5399
 TStyleManager.cxx:5400
 TStyleManager.cxx:5401
 TStyleManager.cxx:5402
 TStyleManager.cxx:5403
 TStyleManager.cxx:5404
 TStyleManager.cxx:5405
 TStyleManager.cxx:5406
 TStyleManager.cxx:5407
 TStyleManager.cxx:5408
 TStyleManager.cxx:5409
 TStyleManager.cxx:5410
 TStyleManager.cxx:5411
 TStyleManager.cxx:5412
 TStyleManager.cxx:5413
 TStyleManager.cxx:5414
 TStyleManager.cxx:5415
 TStyleManager.cxx:5416
 TStyleManager.cxx:5417
 TStyleManager.cxx:5418
 TStyleManager.cxx:5419
 TStyleManager.cxx:5420
 TStyleManager.cxx:5421
 TStyleManager.cxx:5422
 TStyleManager.cxx:5423
 TStyleManager.cxx:5424
 TStyleManager.cxx:5425
 TStyleManager.cxx:5426
 TStyleManager.cxx:5427
 TStyleManager.cxx:5428
 TStyleManager.cxx:5429
 TStyleManager.cxx:5430
 TStyleManager.cxx:5431
 TStyleManager.cxx:5432
 TStyleManager.cxx:5433
 TStyleManager.cxx:5434
 TStyleManager.cxx:5435
 TStyleManager.cxx:5436
 TStyleManager.cxx:5437
 TStyleManager.cxx:5438
 TStyleManager.cxx:5439
 TStyleManager.cxx:5440
 TStyleManager.cxx:5441
 TStyleManager.cxx:5442
 TStyleManager.cxx:5443
 TStyleManager.cxx:5444
 TStyleManager.cxx:5445
 TStyleManager.cxx:5446
 TStyleManager.cxx:5447
 TStyleManager.cxx:5448
 TStyleManager.cxx:5449
 TStyleManager.cxx:5450
 TStyleManager.cxx:5451
 TStyleManager.cxx:5452
 TStyleManager.cxx:5453
 TStyleManager.cxx:5454
 TStyleManager.cxx:5455
 TStyleManager.cxx:5456
 TStyleManager.cxx:5457
 TStyleManager.cxx:5458
 TStyleManager.cxx:5459
 TStyleManager.cxx:5460
 TStyleManager.cxx:5461
 TStyleManager.cxx:5462
 TStyleManager.cxx:5463
 TStyleManager.cxx:5464
 TStyleManager.cxx:5465
 TStyleManager.cxx:5466
 TStyleManager.cxx:5467
 TStyleManager.cxx:5468
 TStyleManager.cxx:5469
 TStyleManager.cxx:5470
 TStyleManager.cxx:5471
 TStyleManager.cxx:5472
 TStyleManager.cxx:5473
 TStyleManager.cxx:5474
 TStyleManager.cxx:5475
 TStyleManager.cxx:5476
 TStyleManager.cxx:5477
 TStyleManager.cxx:5478
 TStyleManager.cxx:5479
 TStyleManager.cxx:5480
 TStyleManager.cxx:5481
 TStyleManager.cxx:5482
 TStyleManager.cxx:5483
 TStyleManager.cxx:5484
 TStyleManager.cxx:5485
 TStyleManager.cxx:5486
 TStyleManager.cxx:5487
 TStyleManager.cxx:5488
 TStyleManager.cxx:5489
 TStyleManager.cxx:5490
 TStyleManager.cxx:5491
 TStyleManager.cxx:5492
 TStyleManager.cxx:5493
 TStyleManager.cxx:5494
 TStyleManager.cxx:5495
 TStyleManager.cxx:5496
 TStyleManager.cxx:5497
 TStyleManager.cxx:5498
 TStyleManager.cxx:5499
 TStyleManager.cxx:5500
 TStyleManager.cxx:5501
 TStyleManager.cxx:5502
 TStyleManager.cxx:5503
 TStyleManager.cxx:5504
 TStyleManager.cxx:5505
 TStyleManager.cxx:5506
 TStyleManager.cxx:5507
 TStyleManager.cxx:5508
 TStyleManager.cxx:5509
 TStyleManager.cxx:5510
 TStyleManager.cxx:5511
 TStyleManager.cxx:5512
 TStyleManager.cxx:5513
 TStyleManager.cxx:5514
 TStyleManager.cxx:5515
 TStyleManager.cxx:5516
 TStyleManager.cxx:5517
 TStyleManager.cxx:5518
 TStyleManager.cxx:5519
 TStyleManager.cxx:5520
 TStyleManager.cxx:5521
 TStyleManager.cxx:5522
 TStyleManager.cxx:5523
 TStyleManager.cxx:5524
 TStyleManager.cxx:5525
 TStyleManager.cxx:5526
 TStyleManager.cxx:5527
 TStyleManager.cxx:5528
 TStyleManager.cxx:5529
 TStyleManager.cxx:5530
 TStyleManager.cxx:5531
 TStyleManager.cxx:5532
 TStyleManager.cxx:5533
 TStyleManager.cxx:5534
 TStyleManager.cxx:5535
 TStyleManager.cxx:5536
 TStyleManager.cxx:5537
 TStyleManager.cxx:5538
 TStyleManager.cxx:5539
 TStyleManager.cxx:5540
 TStyleManager.cxx:5541
 TStyleManager.cxx:5542
 TStyleManager.cxx:5543
 TStyleManager.cxx:5544
 TStyleManager.cxx:5545
 TStyleManager.cxx:5546
 TStyleManager.cxx:5547
 TStyleManager.cxx:5548
 TStyleManager.cxx:5549
 TStyleManager.cxx:5550
 TStyleManager.cxx:5551
 TStyleManager.cxx:5552
 TStyleManager.cxx:5553
 TStyleManager.cxx:5554
 TStyleManager.cxx:5555
 TStyleManager.cxx:5556
 TStyleManager.cxx:5557
 TStyleManager.cxx:5558
 TStyleManager.cxx:5559
 TStyleManager.cxx:5560
 TStyleManager.cxx:5561
 TStyleManager.cxx:5562
 TStyleManager.cxx:5563
 TStyleManager.cxx:5564
 TStyleManager.cxx:5565
 TStyleManager.cxx:5566
 TStyleManager.cxx:5567
 TStyleManager.cxx:5568
 TStyleManager.cxx:5569
 TStyleManager.cxx:5570
 TStyleManager.cxx:5571
 TStyleManager.cxx:5572
 TStyleManager.cxx:5573
 TStyleManager.cxx:5574
 TStyleManager.cxx:5575
 TStyleManager.cxx:5576
 TStyleManager.cxx:5577
 TStyleManager.cxx:5578
 TStyleManager.cxx:5579
 TStyleManager.cxx:5580
 TStyleManager.cxx:5581
 TStyleManager.cxx:5582
 TStyleManager.cxx:5583
 TStyleManager.cxx:5584
 TStyleManager.cxx:5585
 TStyleManager.cxx:5586
 TStyleManager.cxx:5587
 TStyleManager.cxx:5588
 TStyleManager.cxx:5589
 TStyleManager.cxx:5590
 TStyleManager.cxx:5591
 TStyleManager.cxx:5592
 TStyleManager.cxx:5593
 TStyleManager.cxx:5594
 TStyleManager.cxx:5595
 TStyleManager.cxx:5596
 TStyleManager.cxx:5597
 TStyleManager.cxx:5598
 TStyleManager.cxx:5599
 TStyleManager.cxx:5600
 TStyleManager.cxx:5601
 TStyleManager.cxx:5602
 TStyleManager.cxx:5603
 TStyleManager.cxx:5604
 TStyleManager.cxx:5605
 TStyleManager.cxx:5606
 TStyleManager.cxx:5607
 TStyleManager.cxx:5608
 TStyleManager.cxx:5609
 TStyleManager.cxx:5610
 TStyleManager.cxx:5611
 TStyleManager.cxx:5612
 TStyleManager.cxx:5613
 TStyleManager.cxx:5614
 TStyleManager.cxx:5615
 TStyleManager.cxx:5616
 TStyleManager.cxx:5617
 TStyleManager.cxx:5618
 TStyleManager.cxx:5619
 TStyleManager.cxx:5620
 TStyleManager.cxx:5621
 TStyleManager.cxx:5622
 TStyleManager.cxx:5623
 TStyleManager.cxx:5624
 TStyleManager.cxx:5625
 TStyleManager.cxx:5626
 TStyleManager.cxx:5627
 TStyleManager.cxx:5628
 TStyleManager.cxx:5629
 TStyleManager.cxx:5630
 TStyleManager.cxx:5631
 TStyleManager.cxx:5632
 TStyleManager.cxx:5633
 TStyleManager.cxx:5634
 TStyleManager.cxx:5635
 TStyleManager.cxx:5636
 TStyleManager.cxx:5637
 TStyleManager.cxx:5638
 TStyleManager.cxx:5639
 TStyleManager.cxx:5640
 TStyleManager.cxx:5641
 TStyleManager.cxx:5642
 TStyleManager.cxx:5643
 TStyleManager.cxx:5644
 TStyleManager.cxx:5645
 TStyleManager.cxx:5646
 TStyleManager.cxx:5647
 TStyleManager.cxx:5648
 TStyleManager.cxx:5649
 TStyleManager.cxx:5650
 TStyleManager.cxx:5651
 TStyleManager.cxx:5652
 TStyleManager.cxx:5653
 TStyleManager.cxx:5654
 TStyleManager.cxx:5655
 TStyleManager.cxx:5656
 TStyleManager.cxx:5657
 TStyleManager.cxx:5658
 TStyleManager.cxx:5659
 TStyleManager.cxx:5660
 TStyleManager.cxx:5661
 TStyleManager.cxx:5662
 TStyleManager.cxx:5663
 TStyleManager.cxx:5664
 TStyleManager.cxx:5665
 TStyleManager.cxx:5666
 TStyleManager.cxx:5667
 TStyleManager.cxx:5668
 TStyleManager.cxx:5669
 TStyleManager.cxx:5670
 TStyleManager.cxx:5671
 TStyleManager.cxx:5672
 TStyleManager.cxx:5673
 TStyleManager.cxx:5674
 TStyleManager.cxx:5675
 TStyleManager.cxx:5676
 TStyleManager.cxx:5677
 TStyleManager.cxx:5678
 TStyleManager.cxx:5679
 TStyleManager.cxx:5680
 TStyleManager.cxx:5681
 TStyleManager.cxx:5682
 TStyleManager.cxx:5683
 TStyleManager.cxx:5684
 TStyleManager.cxx:5685
 TStyleManager.cxx:5686
 TStyleManager.cxx:5687
 TStyleManager.cxx:5688
 TStyleManager.cxx:5689
 TStyleManager.cxx:5690
 TStyleManager.cxx:5691
 TStyleManager.cxx:5692
 TStyleManager.cxx:5693
 TStyleManager.cxx:5694
 TStyleManager.cxx:5695
 TStyleManager.cxx:5696
 TStyleManager.cxx:5697
 TStyleManager.cxx:5698
 TStyleManager.cxx:5699
 TStyleManager.cxx:5700
 TStyleManager.cxx:5701
 TStyleManager.cxx:5702
 TStyleManager.cxx:5703
 TStyleManager.cxx:5704
 TStyleManager.cxx:5705
 TStyleManager.cxx:5706
 TStyleManager.cxx:5707
 TStyleManager.cxx:5708
 TStyleManager.cxx:5709
 TStyleManager.cxx:5710
 TStyleManager.cxx:5711
 TStyleManager.cxx:5712
 TStyleManager.cxx:5713
 TStyleManager.cxx:5714
 TStyleManager.cxx:5715
 TStyleManager.cxx:5716
 TStyleManager.cxx:5717
 TStyleManager.cxx:5718
 TStyleManager.cxx:5719
 TStyleManager.cxx:5720
 TStyleManager.cxx:5721
 TStyleManager.cxx:5722
 TStyleManager.cxx:5723
 TStyleManager.cxx:5724
 TStyleManager.cxx:5725
 TStyleManager.cxx:5726
 TStyleManager.cxx:5727
 TStyleManager.cxx:5728
 TStyleManager.cxx:5729
 TStyleManager.cxx:5730
 TStyleManager.cxx:5731
 TStyleManager.cxx:5732
 TStyleManager.cxx:5733
 TStyleManager.cxx:5734
 TStyleManager.cxx:5735
 TStyleManager.cxx:5736
 TStyleManager.cxx:5737
 TStyleManager.cxx:5738
 TStyleManager.cxx:5739
 TStyleManager.cxx:5740
 TStyleManager.cxx:5741
 TStyleManager.cxx:5742
 TStyleManager.cxx:5743
 TStyleManager.cxx:5744
 TStyleManager.cxx:5745
 TStyleManager.cxx:5746
 TStyleManager.cxx:5747
 TStyleManager.cxx:5748
 TStyleManager.cxx:5749
 TStyleManager.cxx:5750
 TStyleManager.cxx:5751
 TStyleManager.cxx:5752
 TStyleManager.cxx:5753
 TStyleManager.cxx:5754
 TStyleManager.cxx:5755
 TStyleManager.cxx:5756
 TStyleManager.cxx:5757
 TStyleManager.cxx:5758
 TStyleManager.cxx:5759
 TStyleManager.cxx:5760
 TStyleManager.cxx:5761
 TStyleManager.cxx:5762
 TStyleManager.cxx:5763
 TStyleManager.cxx:5764
 TStyleManager.cxx:5765
 TStyleManager.cxx:5766
 TStyleManager.cxx:5767
 TStyleManager.cxx:5768
 TStyleManager.cxx:5769
 TStyleManager.cxx:5770
 TStyleManager.cxx:5771
 TStyleManager.cxx:5772
 TStyleManager.cxx:5773
 TStyleManager.cxx:5774
 TStyleManager.cxx:5775
 TStyleManager.cxx:5776
 TStyleManager.cxx:5777
 TStyleManager.cxx:5778
 TStyleManager.cxx:5779
 TStyleManager.cxx:5780
 TStyleManager.cxx:5781
 TStyleManager.cxx:5782
 TStyleManager.cxx:5783
 TStyleManager.cxx:5784
 TStyleManager.cxx:5785
 TStyleManager.cxx:5786
 TStyleManager.cxx:5787
 TStyleManager.cxx:5788
 TStyleManager.cxx:5789
 TStyleManager.cxx:5790
 TStyleManager.cxx:5791
 TStyleManager.cxx:5792
 TStyleManager.cxx:5793
 TStyleManager.cxx:5794
 TStyleManager.cxx:5795
 TStyleManager.cxx:5796
 TStyleManager.cxx:5797
 TStyleManager.cxx:5798
 TStyleManager.cxx:5799
 TStyleManager.cxx:5800
 TStyleManager.cxx:5801
 TStyleManager.cxx:5802
 TStyleManager.cxx:5803
 TStyleManager.cxx:5804
 TStyleManager.cxx:5805
 TStyleManager.cxx:5806
 TStyleManager.cxx:5807
 TStyleManager.cxx:5808
 TStyleManager.cxx:5809
 TStyleManager.cxx:5810
 TStyleManager.cxx:5811
 TStyleManager.cxx:5812
 TStyleManager.cxx:5813
 TStyleManager.cxx:5814
 TStyleManager.cxx:5815
 TStyleManager.cxx:5816
 TStyleManager.cxx:5817
 TStyleManager.cxx:5818
 TStyleManager.cxx:5819
 TStyleManager.cxx:5820
 TStyleManager.cxx:5821
 TStyleManager.cxx:5822
 TStyleManager.cxx:5823
 TStyleManager.cxx:5824
 TStyleManager.cxx:5825
 TStyleManager.cxx:5826
 TStyleManager.cxx:5827
 TStyleManager.cxx:5828
 TStyleManager.cxx:5829
 TStyleManager.cxx:5830
 TStyleManager.cxx:5831
 TStyleManager.cxx:5832
 TStyleManager.cxx:5833
 TStyleManager.cxx:5834
 TStyleManager.cxx:5835
 TStyleManager.cxx:5836
 TStyleManager.cxx:5837
 TStyleManager.cxx:5838
 TStyleManager.cxx:5839
 TStyleManager.cxx:5840
 TStyleManager.cxx:5841
 TStyleManager.cxx:5842
 TStyleManager.cxx:5843
 TStyleManager.cxx:5844
 TStyleManager.cxx:5845
 TStyleManager.cxx:5846
 TStyleManager.cxx:5847
 TStyleManager.cxx:5848
 TStyleManager.cxx:5849
 TStyleManager.cxx:5850
 TStyleManager.cxx:5851
 TStyleManager.cxx:5852
 TStyleManager.cxx:5853
 TStyleManager.cxx:5854
 TStyleManager.cxx:5855
 TStyleManager.cxx:5856
 TStyleManager.cxx:5857
 TStyleManager.cxx:5858
 TStyleManager.cxx:5859
 TStyleManager.cxx:5860
 TStyleManager.cxx:5861
 TStyleManager.cxx:5862
 TStyleManager.cxx:5863
 TStyleManager.cxx:5864
 TStyleManager.cxx:5865
 TStyleManager.cxx:5866
 TStyleManager.cxx:5867
 TStyleManager.cxx:5868
 TStyleManager.cxx:5869
 TStyleManager.cxx:5870
 TStyleManager.cxx:5871
 TStyleManager.cxx:5872
 TStyleManager.cxx:5873
 TStyleManager.cxx:5874
 TStyleManager.cxx:5875
 TStyleManager.cxx:5876
 TStyleManager.cxx:5877
 TStyleManager.cxx:5878
 TStyleManager.cxx:5879
 TStyleManager.cxx:5880
 TStyleManager.cxx:5881
 TStyleManager.cxx:5882
 TStyleManager.cxx:5883
 TStyleManager.cxx:5884
 TStyleManager.cxx:5885
 TStyleManager.cxx:5886
 TStyleManager.cxx:5887
 TStyleManager.cxx:5888
 TStyleManager.cxx:5889
 TStyleManager.cxx:5890
 TStyleManager.cxx:5891
 TStyleManager.cxx:5892
 TStyleManager.cxx:5893
 TStyleManager.cxx:5894
 TStyleManager.cxx:5895
 TStyleManager.cxx:5896
 TStyleManager.cxx:5897
 TStyleManager.cxx:5898
 TStyleManager.cxx:5899
 TStyleManager.cxx:5900
 TStyleManager.cxx:5901
 TStyleManager.cxx:5902
 TStyleManager.cxx:5903
 TStyleManager.cxx:5904
 TStyleManager.cxx:5905
 TStyleManager.cxx:5906
 TStyleManager.cxx:5907
 TStyleManager.cxx:5908
 TStyleManager.cxx:5909
 TStyleManager.cxx:5910
 TStyleManager.cxx:5911
 TStyleManager.cxx:5912
 TStyleManager.cxx:5913
 TStyleManager.cxx:5914
 TStyleManager.cxx:5915
 TStyleManager.cxx:5916
 TStyleManager.cxx:5917
 TStyleManager.cxx:5918
 TStyleManager.cxx:5919
 TStyleManager.cxx:5920
 TStyleManager.cxx:5921
 TStyleManager.cxx:5922
 TStyleManager.cxx:5923
 TStyleManager.cxx:5924
 TStyleManager.cxx:5925
 TStyleManager.cxx:5926
 TStyleManager.cxx:5927
 TStyleManager.cxx:5928
 TStyleManager.cxx:5929
 TStyleManager.cxx:5930
 TStyleManager.cxx:5931
 TStyleManager.cxx:5932
 TStyleManager.cxx:5933
 TStyleManager.cxx:5934
 TStyleManager.cxx:5935
 TStyleManager.cxx:5936
 TStyleManager.cxx:5937
 TStyleManager.cxx:5938
 TStyleManager.cxx:5939
 TStyleManager.cxx:5940
 TStyleManager.cxx:5941
 TStyleManager.cxx:5942
 TStyleManager.cxx:5943
 TStyleManager.cxx:5944
 TStyleManager.cxx:5945
 TStyleManager.cxx:5946
 TStyleManager.cxx:5947
 TStyleManager.cxx:5948
 TStyleManager.cxx:5949
 TStyleManager.cxx:5950
 TStyleManager.cxx:5951
 TStyleManager.cxx:5952
 TStyleManager.cxx:5953
 TStyleManager.cxx:5954
 TStyleManager.cxx:5955
 TStyleManager.cxx:5956
 TStyleManager.cxx:5957
 TStyleManager.cxx:5958
 TStyleManager.cxx:5959
 TStyleManager.cxx:5960
 TStyleManager.cxx:5961
 TStyleManager.cxx:5962
 TStyleManager.cxx:5963
 TStyleManager.cxx:5964
 TStyleManager.cxx:5965
 TStyleManager.cxx:5966
 TStyleManager.cxx:5967
 TStyleManager.cxx:5968
 TStyleManager.cxx:5969
 TStyleManager.cxx:5970
 TStyleManager.cxx:5971
 TStyleManager.cxx:5972
 TStyleManager.cxx:5973
 TStyleManager.cxx:5974
 TStyleManager.cxx:5975
 TStyleManager.cxx:5976
 TStyleManager.cxx:5977
 TStyleManager.cxx:5978
 TStyleManager.cxx:5979
 TStyleManager.cxx:5980
 TStyleManager.cxx:5981
 TStyleManager.cxx:5982
 TStyleManager.cxx:5983
 TStyleManager.cxx:5984
 TStyleManager.cxx:5985
 TStyleManager.cxx:5986
 TStyleManager.cxx:5987
 TStyleManager.cxx:5988
 TStyleManager.cxx:5989
 TStyleManager.cxx:5990
 TStyleManager.cxx:5991
 TStyleManager.cxx:5992
 TStyleManager.cxx:5993
 TStyleManager.cxx:5994
 TStyleManager.cxx:5995
 TStyleManager.cxx:5996
 TStyleManager.cxx:5997
 TStyleManager.cxx:5998
 TStyleManager.cxx:5999
 TStyleManager.cxx:6000
 TStyleManager.cxx:6001
 TStyleManager.cxx:6002
 TStyleManager.cxx:6003
 TStyleManager.cxx:6004
 TStyleManager.cxx:6005
 TStyleManager.cxx:6006
 TStyleManager.cxx:6007
 TStyleManager.cxx:6008
 TStyleManager.cxx:6009
 TStyleManager.cxx:6010
 TStyleManager.cxx:6011
 TStyleManager.cxx:6012
 TStyleManager.cxx:6013
 TStyleManager.cxx:6014
 TStyleManager.cxx:6015
 TStyleManager.cxx:6016
 TStyleManager.cxx:6017
 TStyleManager.cxx:6018
 TStyleManager.cxx:6019
 TStyleManager.cxx:6020
 TStyleManager.cxx:6021
 TStyleManager.cxx:6022
 TStyleManager.cxx:6023
 TStyleManager.cxx:6024
 TStyleManager.cxx:6025
 TStyleManager.cxx:6026
 TStyleManager.cxx:6027
 TStyleManager.cxx:6028
 TStyleManager.cxx:6029
 TStyleManager.cxx:6030
 TStyleManager.cxx:6031
 TStyleManager.cxx:6032
 TStyleManager.cxx:6033
 TStyleManager.cxx:6034
 TStyleManager.cxx:6035
 TStyleManager.cxx:6036
 TStyleManager.cxx:6037
 TStyleManager.cxx:6038
 TStyleManager.cxx:6039
 TStyleManager.cxx:6040
 TStyleManager.cxx:6041
 TStyleManager.cxx:6042
 TStyleManager.cxx:6043
 TStyleManager.cxx:6044
 TStyleManager.cxx:6045
 TStyleManager.cxx:6046
 TStyleManager.cxx:6047
 TStyleManager.cxx:6048
 TStyleManager.cxx:6049
 TStyleManager.cxx:6050
 TStyleManager.cxx:6051
 TStyleManager.cxx:6052
 TStyleManager.cxx:6053
 TStyleManager.cxx:6054
 TStyleManager.cxx:6055
 TStyleManager.cxx:6056
 TStyleManager.cxx:6057
 TStyleManager.cxx:6058
 TStyleManager.cxx:6059
 TStyleManager.cxx:6060
 TStyleManager.cxx:6061
 TStyleManager.cxx:6062
 TStyleManager.cxx:6063
 TStyleManager.cxx:6064
 TStyleManager.cxx:6065
 TStyleManager.cxx:6066
 TStyleManager.cxx:6067
 TStyleManager.cxx:6068
 TStyleManager.cxx:6069
 TStyleManager.cxx:6070
 TStyleManager.cxx:6071
 TStyleManager.cxx:6072
 TStyleManager.cxx:6073
 TStyleManager.cxx:6074
 TStyleManager.cxx:6075
 TStyleManager.cxx:6076
 TStyleManager.cxx:6077
 TStyleManager.cxx:6078
 TStyleManager.cxx:6079
 TStyleManager.cxx:6080
 TStyleManager.cxx:6081
 TStyleManager.cxx:6082
 TStyleManager.cxx:6083
 TStyleManager.cxx:6084
 TStyleManager.cxx:6085
 TStyleManager.cxx:6086
 TStyleManager.cxx:6087
 TStyleManager.cxx:6088
 TStyleManager.cxx:6089
 TStyleManager.cxx:6090
 TStyleManager.cxx:6091
 TStyleManager.cxx:6092
 TStyleManager.cxx:6093
 TStyleManager.cxx:6094
 TStyleManager.cxx:6095
 TStyleManager.cxx:6096
 TStyleManager.cxx:6097
 TStyleManager.cxx:6098
 TStyleManager.cxx:6099
 TStyleManager.cxx:6100
 TStyleManager.cxx:6101
 TStyleManager.cxx:6102
 TStyleManager.cxx:6103
 TStyleManager.cxx:6104
 TStyleManager.cxx:6105
 TStyleManager.cxx:6106
 TStyleManager.cxx:6107
 TStyleManager.cxx:6108
 TStyleManager.cxx:6109
 TStyleManager.cxx:6110
 TStyleManager.cxx:6111
 TStyleManager.cxx:6112
 TStyleManager.cxx:6113
 TStyleManager.cxx:6114
 TStyleManager.cxx:6115
 TStyleManager.cxx:6116
 TStyleManager.cxx:6117
 TStyleManager.cxx:6118
 TStyleManager.cxx:6119
 TStyleManager.cxx:6120
 TStyleManager.cxx:6121
 TStyleManager.cxx:6122
 TStyleManager.cxx:6123
 TStyleManager.cxx:6124
 TStyleManager.cxx:6125
 TStyleManager.cxx:6126
 TStyleManager.cxx:6127
 TStyleManager.cxx:6128
 TStyleManager.cxx:6129
 TStyleManager.cxx:6130
 TStyleManager.cxx:6131
 TStyleManager.cxx:6132
 TStyleManager.cxx:6133
 TStyleManager.cxx:6134
 TStyleManager.cxx:6135
 TStyleManager.cxx:6136
 TStyleManager.cxx:6137
 TStyleManager.cxx:6138
 TStyleManager.cxx:6139
 TStyleManager.cxx:6140
 TStyleManager.cxx:6141
 TStyleManager.cxx:6142
 TStyleManager.cxx:6143
 TStyleManager.cxx:6144
 TStyleManager.cxx:6145
 TStyleManager.cxx:6146
 TStyleManager.cxx:6147
 TStyleManager.cxx:6148
 TStyleManager.cxx:6149
 TStyleManager.cxx:6150
 TStyleManager.cxx:6151
 TStyleManager.cxx:6152
 TStyleManager.cxx:6153
 TStyleManager.cxx:6154
 TStyleManager.cxx:6155
 TStyleManager.cxx:6156
 TStyleManager.cxx:6157
 TStyleManager.cxx:6158
 TStyleManager.cxx:6159
 TStyleManager.cxx:6160
 TStyleManager.cxx:6161
 TStyleManager.cxx:6162
 TStyleManager.cxx:6163
 TStyleManager.cxx:6164
 TStyleManager.cxx:6165
 TStyleManager.cxx:6166
 TStyleManager.cxx:6167
 TStyleManager.cxx:6168
 TStyleManager.cxx:6169
 TStyleManager.cxx:6170
 TStyleManager.cxx:6171
 TStyleManager.cxx:6172
 TStyleManager.cxx:6173
 TStyleManager.cxx:6174
 TStyleManager.cxx:6175
 TStyleManager.cxx:6176
 TStyleManager.cxx:6177
 TStyleManager.cxx:6178
 TStyleManager.cxx:6179
 TStyleManager.cxx:6180
 TStyleManager.cxx:6181
 TStyleManager.cxx:6182
 TStyleManager.cxx:6183
 TStyleManager.cxx:6184
 TStyleManager.cxx:6185
 TStyleManager.cxx:6186
 TStyleManager.cxx:6187
 TStyleManager.cxx:6188
 TStyleManager.cxx:6189
 TStyleManager.cxx:6190
 TStyleManager.cxx:6191
 TStyleManager.cxx:6192
 TStyleManager.cxx:6193
 TStyleManager.cxx:6194
 TStyleManager.cxx:6195
 TStyleManager.cxx:6196
 TStyleManager.cxx:6197
 TStyleManager.cxx:6198
 TStyleManager.cxx:6199
 TStyleManager.cxx:6200
 TStyleManager.cxx:6201
 TStyleManager.cxx:6202
 TStyleManager.cxx:6203
 TStyleManager.cxx:6204
 TStyleManager.cxx:6205
 TStyleManager.cxx:6206
 TStyleManager.cxx:6207
 TStyleManager.cxx:6208
 TStyleManager.cxx:6209
 TStyleManager.cxx:6210
 TStyleManager.cxx:6211
 TStyleManager.cxx:6212
 TStyleManager.cxx:6213
 TStyleManager.cxx:6214
 TStyleManager.cxx:6215
 TStyleManager.cxx:6216
 TStyleManager.cxx:6217
 TStyleManager.cxx:6218
 TStyleManager.cxx:6219
 TStyleManager.cxx:6220
 TStyleManager.cxx:6221
 TStyleManager.cxx:6222
 TStyleManager.cxx:6223
 TStyleManager.cxx:6224
 TStyleManager.cxx:6225
 TStyleManager.cxx:6226
 TStyleManager.cxx:6227
 TStyleManager.cxx:6228
 TStyleManager.cxx:6229
 TStyleManager.cxx:6230
 TStyleManager.cxx:6231
 TStyleManager.cxx:6232
 TStyleManager.cxx:6233
 TStyleManager.cxx:6234
 TStyleManager.cxx:6235
 TStyleManager.cxx:6236
 TStyleManager.cxx:6237
 TStyleManager.cxx:6238
 TStyleManager.cxx:6239
 TStyleManager.cxx:6240
 TStyleManager.cxx:6241
 TStyleManager.cxx:6242
 TStyleManager.cxx:6243
 TStyleManager.cxx:6244
 TStyleManager.cxx:6245
 TStyleManager.cxx:6246
 TStyleManager.cxx:6247
 TStyleManager.cxx:6248
 TStyleManager.cxx:6249
 TStyleManager.cxx:6250
 TStyleManager.cxx:6251
 TStyleManager.cxx:6252
 TStyleManager.cxx:6253
 TStyleManager.cxx:6254
 TStyleManager.cxx:6255
 TStyleManager.cxx:6256
 TStyleManager.cxx:6257
 TStyleManager.cxx:6258
 TStyleManager.cxx:6259
 TStyleManager.cxx:6260
 TStyleManager.cxx:6261
 TStyleManager.cxx:6262
 TStyleManager.cxx:6263
 TStyleManager.cxx:6264
 TStyleManager.cxx:6265
 TStyleManager.cxx:6266
 TStyleManager.cxx:6267
 TStyleManager.cxx:6268
 TStyleManager.cxx:6269
 TStyleManager.cxx:6270
 TStyleManager.cxx:6271
 TStyleManager.cxx:6272
 TStyleManager.cxx:6273
 TStyleManager.cxx:6274
 TStyleManager.cxx:6275
 TStyleManager.cxx:6276
 TStyleManager.cxx:6277
 TStyleManager.cxx:6278
 TStyleManager.cxx:6279
 TStyleManager.cxx:6280
 TStyleManager.cxx:6281
 TStyleManager.cxx:6282
 TStyleManager.cxx:6283
 TStyleManager.cxx:6284
 TStyleManager.cxx:6285
 TStyleManager.cxx:6286
 TStyleManager.cxx:6287
 TStyleManager.cxx:6288
 TStyleManager.cxx:6289
 TStyleManager.cxx:6290
 TStyleManager.cxx:6291
 TStyleManager.cxx:6292
 TStyleManager.cxx:6293
 TStyleManager.cxx:6294
 TStyleManager.cxx:6295
 TStyleManager.cxx:6296
 TStyleManager.cxx:6297
 TStyleManager.cxx:6298
 TStyleManager.cxx:6299
 TStyleManager.cxx:6300
 TStyleManager.cxx:6301
 TStyleManager.cxx:6302
 TStyleManager.cxx:6303
 TStyleManager.cxx:6304
 TStyleManager.cxx:6305
 TStyleManager.cxx:6306
 TStyleManager.cxx:6307
 TStyleManager.cxx:6308
 TStyleManager.cxx:6309
 TStyleManager.cxx:6310
 TStyleManager.cxx:6311
 TStyleManager.cxx:6312
 TStyleManager.cxx:6313
 TStyleManager.cxx:6314
 TStyleManager.cxx:6315
 TStyleManager.cxx:6316
 TStyleManager.cxx:6317
 TStyleManager.cxx:6318
 TStyleManager.cxx:6319
 TStyleManager.cxx:6320
 TStyleManager.cxx:6321
 TStyleManager.cxx:6322
 TStyleManager.cxx:6323
 TStyleManager.cxx:6324
 TStyleManager.cxx:6325
 TStyleManager.cxx:6326
 TStyleManager.cxx:6327
 TStyleManager.cxx:6328
 TStyleManager.cxx:6329
 TStyleManager.cxx:6330
 TStyleManager.cxx:6331
 TStyleManager.cxx:6332
 TStyleManager.cxx:6333
 TStyleManager.cxx:6334
 TStyleManager.cxx:6335
 TStyleManager.cxx:6336
 TStyleManager.cxx:6337
 TStyleManager.cxx:6338
 TStyleManager.cxx:6339
 TStyleManager.cxx:6340
 TStyleManager.cxx:6341
 TStyleManager.cxx:6342
 TStyleManager.cxx:6343
 TStyleManager.cxx:6344
 TStyleManager.cxx:6345
 TStyleManager.cxx:6346
 TStyleManager.cxx:6347
 TStyleManager.cxx:6348
 TStyleManager.cxx:6349
 TStyleManager.cxx:6350
 TStyleManager.cxx:6351
 TStyleManager.cxx:6352
 TStyleManager.cxx:6353
 TStyleManager.cxx:6354
 TStyleManager.cxx:6355
 TStyleManager.cxx:6356
 TStyleManager.cxx:6357
 TStyleManager.cxx:6358
 TStyleManager.cxx:6359
 TStyleManager.cxx:6360
 TStyleManager.cxx:6361
 TStyleManager.cxx:6362
 TStyleManager.cxx:6363
 TStyleManager.cxx:6364
 TStyleManager.cxx:6365
 TStyleManager.cxx:6366
 TStyleManager.cxx:6367
 TStyleManager.cxx:6368
 TStyleManager.cxx:6369
 TStyleManager.cxx:6370
 TStyleManager.cxx:6371
 TStyleManager.cxx:6372
 TStyleManager.cxx:6373
 TStyleManager.cxx:6374
 TStyleManager.cxx:6375
 TStyleManager.cxx:6376
 TStyleManager.cxx:6377
 TStyleManager.cxx:6378
 TStyleManager.cxx:6379
 TStyleManager.cxx:6380
 TStyleManager.cxx:6381
 TStyleManager.cxx:6382
 TStyleManager.cxx:6383
 TStyleManager.cxx:6384
 TStyleManager.cxx:6385
 TStyleManager.cxx:6386
 TStyleManager.cxx:6387
 TStyleManager.cxx:6388
 TStyleManager.cxx:6389
 TStyleManager.cxx:6390
 TStyleManager.cxx:6391
 TStyleManager.cxx:6392
 TStyleManager.cxx:6393
 TStyleManager.cxx:6394
 TStyleManager.cxx:6395
 TStyleManager.cxx:6396
 TStyleManager.cxx:6397
 TStyleManager.cxx:6398
 TStyleManager.cxx:6399
 TStyleManager.cxx:6400
 TStyleManager.cxx:6401
 TStyleManager.cxx:6402
 TStyleManager.cxx:6403
 TStyleManager.cxx:6404
 TStyleManager.cxx:6405
 TStyleManager.cxx:6406
 TStyleManager.cxx:6407
 TStyleManager.cxx:6408
 TStyleManager.cxx:6409
 TStyleManager.cxx:6410
 TStyleManager.cxx:6411
 TStyleManager.cxx:6412
 TStyleManager.cxx:6413
 TStyleManager.cxx:6414
 TStyleManager.cxx:6415
 TStyleManager.cxx:6416
 TStyleManager.cxx:6417
 TStyleManager.cxx:6418
 TStyleManager.cxx:6419
 TStyleManager.cxx:6420
 TStyleManager.cxx:6421
 TStyleManager.cxx:6422
 TStyleManager.cxx:6423