// @(#)root/ged:$Id$
// 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.             *
 *************************************************************************/

#ifndef ROOT_TStyleManager
#define ROOT_TStyleManager

//////////////////////////////////////////////////////////////////////////
//                                                                      //
//  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.                                   //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TGFrame
#include "TGFrame.h"
#endif
#ifndef ROOT_TGNumberEntry
#include "TGNumberEntry.h"
#endif

class TGButtonGroup;
class TGCheckButton;
class TGColorSelect;
class TGComboBox;
class TGCompositeFrame;
class TGedMarkerSelect;
class TGedPatternSelect;
class TGFileInfo;
class TGFontTypeComboBox;
class TGHButtonGroup;
class TGHorizontal3DLine;
class TGHorizontalFrame;
class TGLabel;
class TGLayoutHints;
class TGLineStyleComboBox;
class TGLineWidthComboBox;
class TGMainFrame;
class TGMatrixLayout;
class TGMenuBar;
class TGPicture;
class TGPictureButton;
class TGPopupMenu;
class TGRadioButton;
class TGStatusBar;
class TGTab;
class TGTextButton;
class TGTextEntry;
class TGToolBar;
class TGVerticalFrame;
class TList;
class TObject;
class TStyle;
class TStylePreview;
class TVirtualPad;

class TStyleManager : public TGMainFrame {

private:
   static TStyleManager *fgStyleManager;     // singleton style manager

   TStyle              *fCurSelStyle;        // current selected style
   Bool_t               fLastChoice;         //=kTRUE if the user choose OK in the last TStyleDialog
   Bool_t               fRealTimePreview;    //=kTRUE if auto refreshed preview
   Int_t                fCurTabNum;          // current opened tab number
   Int_t                fCurTabAxisNum;      // current opened axis tab number
   UInt_t               fSMWidth;            // style manager's width
   UInt_t               fSMHeight;           // style manager's height
   Bool_t               fStyleChanged;       //=kTRUE if the style has been modified

   Bool_t               fMoreAndNotLess;     //=kTRUE when editor is open
   Bool_t               fSigSlotConnected;   //=kTRUE when signal/slots connected
   Bool_t               fAllAndNotCurrent;   //=kTRUE when apply on 'All canvases'
   TList               *fTrashListFrame;     // to avoid memory leak
   TList               *fTrashListLayout;    // to avoid memory leak

   TGMenuBar           *fMenuBar;            // the main window menu bar
   TGPopupMenu         *fMenuStyle;          // the 'Style' popup menu
   TGPopupMenu         *fImportCascade;      // Cascaded menu 'Import'
   TGPopupMenu         *fMenuHelp;           // the 'Help' popup menu

   TGToolBar           *fToolBar;            // the tool bar
   TGPictureButton     *fToolBarNew;         // tool bar 'New' button
   TGPictureButton     *fToolBarDelete;      // tool bar 'Delete' button
   TGPictureButton     *fToolBarImportCanvas;// tool bar 'Import from canvas' button
   TGPictureButton     *fToolBarImportMacro; // tool bar 'Import from macro' button
   TGPictureButton     *fToolBarExport;      // tool bar 'Export' button
   TGPictureButton     *fToolBarHelp;        // tool bar 'Help' button
   const TGPicture     *fToolBarNewPic;      // tool bar 'New' picture
   const TGPicture     *fToolBarDeletePic;   // tool bar 'Delete' picture
   const TGPicture     *fToolBarImportCanvasPic;// tool bar 'Import from canvas' picture
   const TGPicture     *fToolBarImportMacroPic; // tool bar 'Import from macro' picture
   const TGPicture     *fToolBarExportPic;   // tool bar 'Export' picture
   const TGPicture     *fToolBarHelpPic;     // tool bar 'Help' picture
   TGHorizontal3DLine  *fHorizontal3DLine;   // a line under the tool bar

   TGLabel             *fListLabel;          // label 'Available Styles:'
   TGComboBox          *fListComboBox;       // list of available styles
   TGFileInfo          *fCurMacro;           // current macro
   TGLabel             *fCurStylabel;        // label 'gStyle is set to:'
   TGTextEntry         *fCurStyle;           // label showing gStyle's name
   TGLabel             *fCurPadLabel;        // label 'Canvas:'
   TGTextEntry         *fCurPadTextEntry;    // label showing current pad's name
   TVirtualPad         *fCurPad;             // current pad
   TGLabel             *fCurObjLabel;        // label 'Object:'
   TGTextEntry         *fCurObjTextEntry;    // label showing current object's name
   TObject             *fCurObj;             // current object
   TGCheckButton       *fPreviewButton;      // if checked, preview is visible
   TGCheckButton       *fPreviewRealTime;    // if checked, real time preview
   TStylePreview       *fPreviewWindow;      // preview
   TGPictureButton     *fMakeDefault;        // selected style becom gStyle
   const TGPicture     *fMakeDefaultPic;     // button picture

   TGHButtonGroup      *fApplyOnGroup;       // 'Apply on' button group
   TGRadioButton       *fApplyOnAll;         // 'Apply on' button group
   TGRadioButton       *fApplyOnSel;         // 'Apply on' button group
   TGTextButton        *fApplyOnButton;      // apply style on object(s)

   TGTextButton        *fMoreLess;           // open/close the editor
   TGStatusBar         *fStatusBar;          // status bar

   TGVerticalFrame     *fEditionFrame;       // editor
   TGTab               *fEditionTab;         // editor's tabs
   TGTab               *fHistosTab;          // histos' tabs
   TGTab               *fAxisTab;            // axis' tabs
   TGHorizontalFrame   *fEditionButtonFrame; // editor's buttons

   TGTextButton        *fEditionHelp;           // help button
   TGTextButton        *fEditionUpdatePreview;  // update preview button
   TGTextButton        *fEditionReset;          // reset button

   TGColorSelect       *fFillColor;          // general fill color selection widget
   TGedPatternSelect   *fFillStyle;          // general fill pattern selection widget
   TGLineWidthComboBox *fHatchesLineWidth;   // general hatches width combo box
   TGNumberEntry       *fHatchesSpacing;     // general hatches spacing number entry
   TGColorSelect       *fTextColor;          // general text color selection widget
   TGNumberEntry       *fTextSize;           // general text size number entry
   TGCheckButton       *fTextSizeInPixels;   // general text size check box
   TGFontTypeComboBox  *fTextFont;           // general text font combo box
   TGComboBox          *fTextAlign;          // general text align combo box
   TGNumberEntry       *fTextAngle;          // general text angle number entry
   TGColorSelect       *fLineColor;          // general line color selection widget
   TGLineWidthComboBox *fLineWidth;          // general line width combo box
   TGLineStyleComboBox *fLineStyle;          // general line style combo box
   TGTextButton        *fLineStyleEdit;      // general line style editor open button
   TGColorSelect       *fMarkerColor;        // general marker color selection widget
   TGedMarkerSelect    *fMarkerStyle;        // general marker style entry
   TGComboBox          *fMarkerSize;         // general marker size combo box
   TGNumberEntry       *fScreenFactor;       // general screen factor number entry
   TGColorSelect       *fCanvasColor;        // canvas fill color selection widget
   TGNumberEntry       *fCanvasDefX;         // canvas abscissa number entry
   TGNumberEntry       *fCanvasDefY;         // canvas ordinate number entry
   TGNumberEntry       *fCanvasDefW;         // canvas width number entry
   TGNumberEntry       *fCanvasDefH;         // canvas height number entry
   TGButtonGroup       *fCanvasBorderMode;   // canvas border mode button group
   TGLineWidthComboBox *fCanvasBorderSize;   // canvas border size combo box
   TGCheckButton       *fOptDateBool;        // canvas date show/hide check box
   TGColorSelect       *fAttDateTextColor;   // canvas date color selection widget
   TGNumberEntry       *fAttDateTextSize;    // canvas date size number entry
   TGCheckButton       *fAttDateTextSizeInPixels;  // canvas date size check box
   TGComboBox          *fOptDateFormat;      // canvas date format text entry
   TGFontTypeComboBox  *fAttDateTextFont;    // canvas date font combo box
   TGNumberEntry       *fAttDateTextAngle;   // canvas date angle number entry
   TGComboBox          *fAttDateTextAlign;   // canvas date align combo box
   TGNumberEntry       *fDateX;              // canvas date abscissa number entry
   TGNumberEntry       *fDateY;              // canvas date ordinate number entry
   TGNumberEntry       *fPadLeftMargin;      // pad left margin number entry
   TGNumberEntry       *fPadRightMargin;     // pad right margin number entry
   TGNumberEntry       *fPadTopMargin;       // pad top margin number entry
   TGNumberEntry       *fPadBottomMargin;    // pad bottom margin number entry
   TGButtonGroup       *fPadBorderMode;      // pad border mode button group
   TGLineWidthComboBox *fPadBorderSize;      // pad border size combo box
   TGColorSelect       *fPadColor;           // pad fill color selection widget
   TGCheckButton       *fPadTickX;           // pad ticks along X show/hide check box
   TGCheckButton       *fPadTickY;           // pad ticks along Y show/hide check box
   TGCheckButton       *fPadGridX;           // pad grid along X show/hide check box
   TGCheckButton       *fPadGridY;           // pad grid along Y show/hide check box
   TGColorSelect       *fGridColor;          // pad grid line color selection widget
   TGLineWidthComboBox *fGridWidth;          // pad grid line width combo box
   TGLineStyleComboBox *fGridStyle;          // pad grid line style combo box
   TGColorSelect       *fHistFillColor;      // histograms fill color selection widget
   TGedPatternSelect   *fHistFillStyle;      // histograms fill pattern selection widget
   TGColorSelect       *fHistLineColor;      // histograms fill color selection widget
   TGLineWidthComboBox *fHistLineWidth;      // histograms line width combo box
   TGLineStyleComboBox *fHistLineStyle;      // histograms line style combo box
   TGNumberEntry       *fBarWidth;           // histograms bar width number entry
   TGNumberEntry       *fBarOffset;          // histograms bar offset number entry
   TGCheckButton       *fHistMinimumZero;    // histograms minimum zero check box
   TGTextEntry         *fPaintTextFormat;    // histograms format text entry
   TGNumberEntry       *fNumberContours;     // histograms number of contours number entry
   TGNumberEntry       *fLegoInnerR;         // histograms lego inner radius number entry
   TGColorSelect       *fFrameFillColor;     // frame fill color selection widget
   TGedPatternSelect   *fFrameFillStyle;     // frame fill pattern selection widget
   TGColorSelect       *fFrameLineColor;     // frame line color selection widget
   TGLineWidthComboBox *fFrameLineWidth;     // frame line width combo box
   TGLineStyleComboBox *fFrameLineStyle;     // frame line style combo box
   TGTextButton        *fPaletteEdit;        // palette editor open button
   TGButtonGroup       *fFrameBorderMode;    // frame border mode button group
   TGLineWidthComboBox *fFrameBorderSize;    // frame border size combo box
   TGColorSelect       *fFuncColor;          // function color selection widget
   TGLineWidthComboBox *fFuncWidth;          // function width number entry
   TGLineStyleComboBox *fFuncStyle;          // function line style combo box
   TGCheckButton       *fDrawBorder;         // function border show/hide check box
   TGNumberEntry       *fEndErrorSize;       // end error size number entry
   TGNumberEntry       *fErrorX;             // error along abscissa number entry
   TGNumberEntry       *fTimeOffsetDate;     // axis time offset (mm/dd/yyyy) number entry
   TGNumberEntry       *fTimeOffsetTime;     // axis time offset (hh:mm:ss) number entry
   TGCheckButton       *fStripDecimals;      // axis label's decimal part show/hide check box
   TGTextButton        *fApplyOnXYZ;         // axis apply on XYZ text button
   TGNumberEntry       *fXTitleSize;         // X axis title size number entry
   TGCheckButton       *fXTitleSizeInPixels; // X axis title size check box
   TGColorSelect       *fXTitleColor;        // X axis title color selection widget
   TGNumberEntry       *fXTitleOffset;       // X axis title offset number entry
   TGFontTypeComboBox  *fXTitleFont;         // X axis title font combo box
   TGNumberEntry       *fXLabelSize;         // X axis label size number entry
   TGCheckButton       *fXLabelSizeInPixels; // X axis label size check box
   TGColorSelect       *fXLabelColor;        // X axis label color selection widget
   TGNumberEntry       *fXLabelOffset;       // X axis label offset number entry
   TGFontTypeComboBox  *fXLabelFont;         // X axis label font combo box
   TGColorSelect       *fXAxisColor;         // X axis color selection widget
   TGNumberEntry       *fXTickLength;        // X axis tick length number entry
   TGCheckButton       *fOptLogx;            // X axis logarithmic scale check box
   TGNumberEntry       *fXNdivMain;          // X axis primary division number entry
   TGNumberEntry       *fXNdivSub;           // X axis secondary division number entry
   TGNumberEntry       *fXNdivSubSub;        // X axis tertiary division number entry
   TGCheckButton       *fXNdivisionsOptimize;// X axis division optimization check box
   TGNumberEntry       *fYTitleSize;         // Y axis title size number entry
   TGCheckButton       *fYTitleSizeInPixels; // Y axis title size check box
   TGColorSelect       *fYTitleColor;        // Y axis title color selection widget
   TGNumberEntry       *fYTitleOffset;       // Y axis title offset number entry
   TGFontTypeComboBox  *fYTitleFont;         // Y axis title font combo box
   TGNumberEntry       *fYLabelSize;         // Y axis label size number entry
   TGCheckButton       *fYLabelSizeInPixels; // Y axis label size check box
   TGColorSelect       *fYLabelColor;        // Y axis label color selection widget
   TGNumberEntry       *fYLabelOffset;       // Y axis label offset number entry
   TGFontTypeComboBox  *fYLabelFont;         // Y axis label font combo box
   TGColorSelect       *fYAxisColor;         // Y axis color selection widget
   TGNumberEntry       *fYTickLength;        // Y axis tick length number entry
   TGCheckButton       *fOptLogy;            // Y axis logarithmic scale check box
   TGNumberEntry       *fYNdivMain;          // Y axis primary division number entry
   TGNumberEntry       *fYNdivSub;           // Y axis secondary division number entry
   TGNumberEntry       *fYNdivSubSub;        // Y axis tertiary division number entry
   TGCheckButton       *fYNdivisionsOptimize;// Y axis division optimization check box
   TGNumberEntry       *fZTitleSize;         // Z axis title size number entry
   TGCheckButton       *fZTitleSizeInPixels; // Z axis title size check box
   TGColorSelect       *fZTitleColor;        // Z axis title color selection widget
   TGNumberEntry       *fZTitleOffset;       // Z axis title offset number entry
   TGFontTypeComboBox  *fZTitleFont;         // Z axis title font combo box
   TGNumberEntry       *fZLabelSize;         // Z axis label size number entry
   TGCheckButton       *fZLabelSizeInPixels; // Z axis label size check box
   TGColorSelect       *fZLabelColor;        // Z axis label color selection widget
   TGNumberEntry       *fZLabelOffset;       // Z axis label offset number entry
   TGFontTypeComboBox  *fZLabelFont;         // Z axis label font combo box
   TGColorSelect       *fZAxisColor;         // Z axis color selection widget
   TGNumberEntry       *fZTickLength;        // Z axis tick length number entry
   TGCheckButton       *fOptLogz;            // Z axis logarithmic scale check box
   TGNumberEntry       *fZNdivMain;          // Z axis primary division number entry
   TGNumberEntry       *fZNdivSub;           // Z axis secondary division number entry
   TGNumberEntry       *fZNdivSubSub;        // Z axis tertiary division number entry
   TGCheckButton       *fZNdivisionsOptimize;// Z axis division optimization check box
   TGCheckButton       *fOptTitle;           // title show/hide check box
   TGColorSelect       *fTitleColor;         // title fill color selection widget
   TGedPatternSelect   *fTitleStyle;         // title fill pattern selection widget
   TGColorSelect       *fTitleTextColor;     // title text color selection widget
   TGNumberEntry       *fTitleFontSize;      // title font size number entry
   TGCheckButton       *fTitleFontSizeInPixels; // title font size check box
   TGFontTypeComboBox  *fTitleFont;          // title font combo box
   TGComboBox          *fTitleAlign;         // title align combo box
   TGLabel             *fTitleBorderSizeLabel;  // label 'Title's'
   TGLineWidthComboBox *fTitleBorderSize;    // title border size combo box
   TGNumberEntry       *fTitleX;             // title abscissa number entry
   TGNumberEntry       *fTitleY;             // title ordinate number entry
   TGNumberEntry       *fTitleW;             // title width number entry
   TGNumberEntry       *fTitleH;             // title height number entry
   TGLabel             *fLegendBorderSizeLabel; // label 'Legend's'
   TGLineWidthComboBox *fLegendBorderSize;   // legend border size combo box
   TGColorSelect       *fStatColor;          // stats fill color selection widget
   TGedPatternSelect   *fStatStyle;          // stats fill pattern selection widget
   TGColorSelect       *fStatTextColor;      // stats text color selection widget
   TGNumberEntry       *fStatFontSize;       // stats font size number entry
   TGCheckButton       *fStatFontSizeInPixels;  // stats font size check box
   TGFontTypeComboBox  *fStatFont;           // stats font type combo box
   TGNumberEntry       *fStatX;              // stats abscissa number entry
   TGNumberEntry       *fStatY;              // stats ordinate number entry
   TGNumberEntry       *fStatW;              // stats width number entry
   TGNumberEntry       *fStatH;              // stats height number entry
   TGLabel             *fStatBorderSizeLabel;   // label 'stats' shadow
   TGLineWidthComboBox *fStatBorderSize;     // stats border size combo box
   TGCheckButton       *fOptStatName;        // stats name show/hide check box
   TGCheckButton       *fOptStatEntries;     // stats entries show/hide check box
   TGCheckButton       *fOptStatOverflow;    // stats overflow show/hide check box
   TGCheckButton       *fOptStatMean;        // stats mean show/hide check box
   TGCheckButton       *fOptStatUnderflow;   // stats underflow show/hide check box
   TGCheckButton       *fOptStatRMS;         // stats RMS show/hide check box
   TGCheckButton       *fOptStatSkewness;    // stats Skewness show/hide check box
   TGCheckButton       *fOptStatIntegral;    // stats integral show/hide check box
   TGCheckButton       *fOptStatKurtosis;    // stats kurtosis show/hide check box
   TGCheckButton       *fOptStatErrors;      // stats errors check box
   TGLabel             *fStatFormatLabel;    // label 'stats format'
   TGTextEntry         *fStatFormat;         // stats format text entry
   TGCheckButton       *fOptFitValues;       // fit values show/hide check box
   TGCheckButton       *fOptFitErrors;       // fit errors check box
   TGCheckButton       *fOptFitProbability;  // fit probability show/hide check box
   TGCheckButton       *fOptFitChi;          // fit Chi show/hide check box
   TGLabel             *fFitFormatLabel;     // label 'fit format'
   TGTextEntry         *fFitFormat;          // fit format text entry
   TGTextEntry         *fHeaderPS;           // ps/pdf header text entry
   TGTextEntry         *fTitlePS;            // ps/pdf title text entry
   TGButtonGroup       *fColorModelPS;       // ps/pdf color model button group
   TGRadioButton       *fColorModelPSRGB;    // RGB radio button
   TGRadioButton       *fColorModelPSCMYK;   // CMYB radio button
   TGNumberEntry       *fLineScalePS;        // ps/pdf line scale number entry
   TGComboBox          *fPaperSizePredef;    // ps/pdf paper size combo box
   Bool_t               fPaperSizeEnCm;      //=kTRUE if the paper size is in cm
   TGNumberEntry       *fPaperSizeX;         // ps/pdf paper size width number entry
   TGNumberEntry       *fPaperSizeY;         // ps/pdf paper size height number entry

   TGLayoutHints       *fLayoutExpandX;               // often used layout
   TGLayoutHints       *fLayoutExpandXMargin;         // often used layout
   TGLayoutHints       *fLayoutExpandXY;              // often used layout
   TGLayoutHints       *fLayoutExpandXYMargin;        // often used layout
   TGLayoutHints       *fLayoutExpandXCenterYMargin;  // often used layout

   void AddMenus(TGCompositeFrame *p);
   void DoNew();
   void DoDelete();
   void DoRename();
   void DoExport();
   void DoExit();
   void DoHelp(Int_t i);
   void DoImportCanvas();
   void CreateMacro();

   void AddToolbar(TGCompositeFrame *p);

   void AddTopLevelInterface(TGCompositeFrame *cf);
   void UpdateStatusBar();
   void UpdateEditor(Int_t tabNum);
   void ConnectAll();
   void DisconnectAll();
   void ConnectEditor(Int_t tabNum);
   void DisconnectEditor(Int_t tabNum);
   void DoEditor();

   void AddEdition(TGCompositeFrame *p);

   void CreateTabGeneral(TGCompositeFrame *tab);
   void AddGeneralLine(TGCompositeFrame *f);
   void AddGeneralFill(TGCompositeFrame *f);
   void AddGeneralText(TGCompositeFrame *f);
   void AddGeneralMarker(TGCompositeFrame *f);

   void CreateTabCanvas(TGCompositeFrame *tab);
   void AddCanvasFill(TGCompositeFrame *f);
   void AddCanvasGeometry(TGCompositeFrame *f);
   void AddCanvasBorder(TGCompositeFrame *f);
   void AddCanvasDate(TGCompositeFrame *f);

   void CreateTabPad(TGCompositeFrame *tab);
   void AddPadMargin(TGCompositeFrame *f);
   void AddPadBorder(TGCompositeFrame *f);
   void AddPadFill(TGCompositeFrame *f);
   void AddPadTicks(TGCompositeFrame *f);
   void AddPadGrid(TGCompositeFrame *f);

   void CreateTabHistos(TGCompositeFrame *tab);
   void CreateTabHistosHistos(TGCompositeFrame *tab);
   void AddHistosHistosFill(TGCompositeFrame *f);
   void AddHistosHistosLine(TGCompositeFrame *f);
   void AddHistosHistosBar(TGCompositeFrame *f);
   void AddHistosHistosContours(TGCompositeFrame *f);
   void AddHistosHistosAxis(TGCompositeFrame *f);
   void AddHistosHistosLegoInnerR(TGCompositeFrame *f);

   void CreateTabHistosFrames(TGCompositeFrame *tab);
   void AddHistosFramesFill(TGCompositeFrame *f);
   void AddHistosFramesLine(TGCompositeFrame *f);
   void AddHistosFramesBorder(TGCompositeFrame *f);

   void CreateTabHistosGraphs(TGCompositeFrame *tab);
   void AddHistosGraphsLine(TGCompositeFrame *f);
   void AddHistosGraphsBorder(TGCompositeFrame *f);
   void AddHistosGraphsErrors(TGCompositeFrame *f);

   void CreateTabAxis(TGCompositeFrame *tab);
   void CreateTabAxisX(TGCompositeFrame *tab);
   void AddAxisXTitle(TGCompositeFrame *f);
   void AddAxisXLine(TGCompositeFrame *f);
   void AddAxisXLabels(TGCompositeFrame *f);
   void AddAxisXDivisions(TGCompositeFrame *f);

   void CreateTabAxisY(TGCompositeFrame *tab);
   void AddAxisYTitle(TGCompositeFrame *f);
   void AddAxisYLine(TGCompositeFrame *f);
   void AddAxisYLabels(TGCompositeFrame *f);
   void AddAxisYDivisions(TGCompositeFrame *f);

   void CreateTabAxisZ(TGCompositeFrame *tab);
   void AddAxisZTitle(TGCompositeFrame *f);
   void AddAxisZLine(TGCompositeFrame *f);
   void AddAxisZLabels(TGCompositeFrame *f);
   void AddAxisZDivisions(TGCompositeFrame *f);

   void CreateTabTitle(TGCompositeFrame *tab);
   void AddTitleFill(TGCompositeFrame *f);
   void AddTitleBorderSize(TGCompositeFrame *f);
   void AddTitleText(TGCompositeFrame *f);
   void AddTitleGeometry(TGCompositeFrame *f);

   void CreateTabStats(TGCompositeFrame *tab);
   void AddStatsFill(TGCompositeFrame *f);
   void AddStatsText(TGCompositeFrame *f);
   void AddStatsGeometry(TGCompositeFrame *f);
   void AddStatsStats(TGCompositeFrame *f);
   void AddStatsFit(TGCompositeFrame *f);

   void CreateTabPsPdf(TGCompositeFrame *tab);
   void AddPsPdfHeader(TGCompositeFrame *f);
   void AddPsPdfTitle(TGCompositeFrame *f);
   void AddPsPdfColorModel(TGCompositeFrame *f);
   void AddPsPdfPaperSize(TGCompositeFrame *f);
   void AddPsPdfLineScale(TGCompositeFrame *f);

   void                 AddTitle(TGCompositeFrame *f, const char *s);
   TGColorSelect       *AddColorEntry(TGCompositeFrame *f, Int_t id);
   TGedPatternSelect   *AddFillStyleEntry(TGCompositeFrame *f, Int_t id);
   TGedMarkerSelect    *AddMarkerStyleEntry(TGCompositeFrame *f, Int_t id);
   TGComboBox          *AddMarkerSizeEntry(TGCompositeFrame *f, Int_t id);
   TGNumberEntry       *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);
   TGLineWidthComboBox *AddLineWidthEntry(TGCompositeFrame *f, Int_t id);
   TGLineStyleComboBox *AddLineStyleEntry(TGCompositeFrame *f, Int_t id);
   TGTextButton        *AddTextButton(TGCompositeFrame *f, const char *s, Int_t id);
   TGFontTypeComboBox  *AddFontTypeEntry(TGCompositeFrame *f, Int_t id);
   TGComboBox          *AddTextAlignEntry(TGCompositeFrame *f, Int_t id);
   TGButtonGroup       *AddBorderModeEntry(TGCompositeFrame *f, Int_t id1, Int_t id2, Int_t id3);
   TGComboBox          *AddDateFormatEntry(TGCompositeFrame *f, Int_t id);
   TGCheckButton       *AddCheckButton(TGCompositeFrame *f, const char *s, Int_t id, Int_t e1 = 0, Int_t e2 = 2);
   TGTextEntry         *AddTextEntry(TGCompositeFrame *f, const char *s, Int_t id);
   TGComboBox          *AddPaperSizeEntry(TGCompositeFrame *f, Int_t id);

public:
   TStyleManager(const TGWindow *);
   virtual ~TStyleManager();

   static void Show();
   static void Terminate();
   static TStyleManager *&GetSM();

   void Init();
   void Hide();

   void SetCurSelStyle(TStyle *style) { fCurSelStyle = style; }
   void SetLastChoice(Bool_t choice)  { fLastChoice = choice; }

   void DoMenu(Int_t menuID);                // SLOT
   void DoImportMacro(Bool_t create);        // SLOT
   void DoListSelect();                      // SLOT
   void DoRealTime(Bool_t b);                // SLOT
   void DoPreview(Bool_t b);                 // SLOT
   void DoPreviewClosed();                   // SLOT
   void DoMakeDefault();                     // SLOT
   void DoApplyOnSelect(Int_t i);            // SLOT
   void DoApplyOn();                         // SLOT
   void DoMoreLess();                        // SLOT
   void DoEditionUpdatePreview();            // SLOT
   void DoChangeTab(Int_t i);                // SLOT
   void DoChangeAxisTab(Int_t i);            // SLOT
   void BuildList(TStyle *style = 0);
   void DoSelectNoCanvas();                  // SLOT
   void DoSelectCanvas(TVirtualPad *pad,
         TObject *obj, Int_t mouseButton);   // SLOT
   void CloseWindow();                       // SLOT

// GENERAL
   void ModFillColor();                      // SLOT
   void ModFillStyle();                      // SLOT
   void ModHatchesLineWidth();               // SLOT
   void ModHatchesSpacing();                 // SLOT
   void ModMarkerColor();                    // SLOT
   void ModMarkerStyle();                    // SLOT
   void ModMarkerSize();                     // SLOT
   void ModScreenFactor();                   // SLOT
   void ModLineColor();                      // SLOT
   void ModLineWidth();                      // SLOT
   void ModLineStyle();                      // SLOT
   void ModLineStyleEdit();                  // SLOT
   void ModTextColor();                      // SLOT
   void ModTextSize();                       // SLOT
   void ModTextSizeInPixels(Bool_t b);       // SLOT
   void ModTextFont();                       // SLOT
   void ModTextAlign();                      // SLOT
   void ModTextAngle();                      // SLOT

// CANVAS
   void ModCanvasColor();                    // SLOT
   void ModCanvasDefX();                     // SLOT
   void ModCanvasDefY();                     // SLOT
   void ModCanvasDefW();                     // SLOT
   void ModCanvasDefH();                     // SLOT
   void ModCanvasBorderMode();               // SLOT
   void ModCanvasBorderSize();               // SLOT
   void ModOptDateBool();                    // SLOT
   void ModAttDateTextColor();               // SLOT
   void ModAttDateTextSize();                // SLOT
   void ModAttDateTextSizeInPixels(Bool_t b);// SLOT
   void ModOptDateFormat();                  // SLOT
   void ModAttDateTextFont();                // SLOT
   void ModAttDateTextAngle();               // SLOT
   void ModAttDateTextAlign();               // SLOT
   void ModDateX();                          // SLOT
   void ModDateY();                          // SLOT

// PAD
   void ModPadTopMargin();                   // SLOT
   void ModPadBottomMargin();                // SLOT
   void ModPadLeftMargin();                  // SLOT
   void ModPadRightMargin();                 // SLOT
   void ModPadBorderMode();                  // SLOT
   void ModPadBorderSize();                  // SLOT
   void ModPadColor();                       // SLOT
   void ModPadTickX();                       // SLOT
   void ModPadTickY();                       // SLOT
   void ModPadGridX();                       // SLOT
   void ModPadGridY();                       // SLOT
   void ModGridColor();                      // SLOT
   void ModGridWidth();                      // SLOT
   void ModGridStyle();                      // SLOT

 // HISTOS HISTOS
   void ModHistFillColor();                  // SLOT
   void ModHistFillStyle();                  // SLOT
   void ModHistLineColor();                  // SLOT
   void ModHistLineWidth();                  // SLOT
   void ModHistLineStyle();                  // SLOT
   void ModBarWidth();                       // SLOT
   void ModBarOffset();                      // SLOT
   void ModHistMinimumZero();                // SLOT
   void ModPaintTextFormat();                // SLOT
   void ModNumberContours();                 // SLOT
   void ModLegoInnerR();                     // SLOT

// HISTOS FRAMES
   void ModFrameFillColor();                 // SLOT
   void ModFrameFillStyle();                 // SLOT
   void ModFrameLineColor();                 // SLOT
   void ModFrameLineWidth();                 // SLOT
   void ModFrameLineStyle();                 // SLOT
   void ModPaletteEdit();                    // SLOT
   void ModFrameBorderMode();                // SLOT
   void ModFrameBorderSize();                // SLOT

// HISTOS GRAPHS
   void ModFuncColor();                      // SLOT
   void ModFuncWidth();                      // SLOT
   void ModFuncStyle();                      // SLOT
   void ModDrawBorder();                     // SLOT
   void ModEndErrorSize();                   // SLOT
   void ModErrorX();                         // SLOT

// AXIS
   void ModTimeOffset();                     // SLOT
   void ModStripDecimals();                  // SLOT
   void ModApplyOnXYZ();                     // SLOT

// AXIS X AXIS
   void ModXTitleSize();                     // SLOT
   void ModXTitleSizeInPixels(Bool_t b);     // SLOT
   void ModXTitleColor();                    // SLOT
   void ModXTitleOffset();                   // SLOT
   void ModXTitleFont();                     // SLOT
   void ModXLabelSize();                     // SLOT
   void ModXLabelSizeInPixels(Bool_t b);     // SLOT
   void ModXLabelColor();                    // SLOT
   void ModXLabelOffset();                   // SLOT
   void ModXLabelFont();                     // SLOT
   void ModXAxisColor();                     // SLOT
   void ModXTickLength();                    // SLOT
   void ModOptLogx();                        // SLOT
   void ModXNdivisions();                    // SLOT

// AXIS Y AXIS
   void ModYTitleSize();                     // SLOT
   void ModYTitleSizeInPixels(Bool_t b);     // SLOT
   void ModYTitleColor();                    // SLOT
   void ModYTitleOffset();                   // SLOT
   void ModYTitleFont();                     // SLOT
   void ModYLabelSize();                     // SLOT
   void ModYLabelSizeInPixels(Bool_t b);     // SLOT
   void ModYLabelColor();                    // SLOT
   void ModYLabelOffset();                   // SLOT
   void ModYLabelFont();                     // SLOT
   void ModYAxisColor();                     // SLOT
   void ModYTickLength();                    // SLOT
   void ModOptLogy();                        // SLOT
   void ModYNdivisions();                    // SLOT

// AXIS Z AXIS
   void ModZTitleSize();                     // SLOT
   void ModZTitleSizeInPixels(Bool_t b);     // SLOT
   void ModZTitleColor();                    // SLOT
   void ModZTitleOffset();                   // SLOT
   void ModZTitleFont();                     // SLOT
   void ModZLabelSize();                     // SLOT
   void ModZLabelSizeInPixels(Bool_t b);     // SLOT
   void ModZLabelColor();                    // SLOT
   void ModZLabelOffset();                   // SLOT
   void ModZLabelFont();                     // SLOT
   void ModZAxisColor();                     // SLOT
   void ModZTickLength();                    // SLOT
   void ModOptLogz();                        // SLOT
   void ModZNdivisions();                    // SLOT

// TITLES
   void ModOptTitle();                       // SLOT
   void ModTitleFillColor();                 // SLOT
   void ModTitleStyle();                     // SLOT
   void ModTitleTextColor();                 // SLOT
   void ModTitleFontSize();                  // SLOT
   void ModTitleFontSizeInPixels(Bool_t b);  // SLOT
   void ModTitleFont();                      // SLOT
   void ModTitleAlign();                     // SLOT
   void ModTitleBorderSize();                // SLOT
   void ModTitleX();                         // SLOT
   void ModTitleY();                         // SLOT
   void ModTitleW();                         // SLOT
   void ModTitleH();                         // SLOT
   void ModLegendBorderSize();               // SLOT

// STATS
   void ModStatColor(Pixel_t color);         // SLOT
   void ModStatStyle(Style_t pattern);       // SLOT
   void ModStatTextColor(Pixel_t color);     // SLOT
   void ModStatFontSize();                   // SLOT
   void ModStatFontSizeInPixels(Bool_t b);   // SLOT
   void ModStatFont();                       // SLOT
   void ModStatX();                          // SLOT
   void ModStatY();                          // SLOT
   void ModStatW();                          // SLOT
   void ModStatH();                          // SLOT
   void ModStatBorderSize();                 // SLOT
   void ModOptStat();                        // SLOT
   void ModStatFormat(const char *sformat);  // SLOT
   void ModOptFit();                         // SLOT
   void ModFitFormat(const char *fitformat); // SLOT

// PS / PDF
   void ModHeaderPS();                       // SLOT
   void ModTitlePS();                        // SLOT
   void ModColorModelPS();                   // SLOT
   void ModLineScalePS();                    // SLOT
   void ModPaperSizePredef();                // SLOT
   void ModPaperSizeXY();                    // SLOT

   ClassDef(TStyleManager, 0) // Graphical User Interface for managing styles
};

#endif
 TStyleManager.h:1
 TStyleManager.h:2
 TStyleManager.h:3
 TStyleManager.h:4
 TStyleManager.h:5
 TStyleManager.h:6
 TStyleManager.h:7
 TStyleManager.h:8
 TStyleManager.h:9
 TStyleManager.h:10
 TStyleManager.h:11
 TStyleManager.h:12
 TStyleManager.h:13
 TStyleManager.h:14
 TStyleManager.h:15
 TStyleManager.h:16
 TStyleManager.h:17
 TStyleManager.h:18
 TStyleManager.h:19
 TStyleManager.h:20
 TStyleManager.h:21
 TStyleManager.h:22
 TStyleManager.h:23
 TStyleManager.h:24
 TStyleManager.h:25
 TStyleManager.h:26
 TStyleManager.h:27
 TStyleManager.h:28
 TStyleManager.h:29
 TStyleManager.h:30
 TStyleManager.h:31
 TStyleManager.h:32
 TStyleManager.h:33
 TStyleManager.h:34
 TStyleManager.h:35
 TStyleManager.h:36
 TStyleManager.h:37
 TStyleManager.h:38
 TStyleManager.h:39
 TStyleManager.h:40
 TStyleManager.h:41
 TStyleManager.h:42
 TStyleManager.h:43
 TStyleManager.h:44
 TStyleManager.h:45
 TStyleManager.h:46
 TStyleManager.h:47
 TStyleManager.h:48
 TStyleManager.h:49
 TStyleManager.h:50
 TStyleManager.h:51
 TStyleManager.h:52
 TStyleManager.h:53
 TStyleManager.h:54
 TStyleManager.h:55
 TStyleManager.h:56
 TStyleManager.h:57
 TStyleManager.h:58
 TStyleManager.h:59
 TStyleManager.h:60
 TStyleManager.h:61
 TStyleManager.h:62
 TStyleManager.h:63
 TStyleManager.h:64
 TStyleManager.h:65
 TStyleManager.h:66
 TStyleManager.h:67
 TStyleManager.h:68
 TStyleManager.h:69
 TStyleManager.h:70
 TStyleManager.h:71
 TStyleManager.h:72
 TStyleManager.h:73
 TStyleManager.h:74
 TStyleManager.h:75
 TStyleManager.h:76
 TStyleManager.h:77
 TStyleManager.h:78
 TStyleManager.h:79
 TStyleManager.h:80
 TStyleManager.h:81
 TStyleManager.h:82
 TStyleManager.h:83
 TStyleManager.h:84
 TStyleManager.h:85
 TStyleManager.h:86
 TStyleManager.h:87
 TStyleManager.h:88
 TStyleManager.h:89
 TStyleManager.h:90
 TStyleManager.h:91
 TStyleManager.h:92
 TStyleManager.h:93
 TStyleManager.h:94
 TStyleManager.h:95
 TStyleManager.h:96
 TStyleManager.h:97
 TStyleManager.h:98
 TStyleManager.h:99
 TStyleManager.h:100
 TStyleManager.h:101
 TStyleManager.h:102
 TStyleManager.h:103
 TStyleManager.h:104
 TStyleManager.h:105
 TStyleManager.h:106
 TStyleManager.h:107
 TStyleManager.h:108
 TStyleManager.h:109
 TStyleManager.h:110
 TStyleManager.h:111
 TStyleManager.h:112
 TStyleManager.h:113
 TStyleManager.h:114
 TStyleManager.h:115
 TStyleManager.h:116
 TStyleManager.h:117
 TStyleManager.h:118
 TStyleManager.h:119
 TStyleManager.h:120
 TStyleManager.h:121
 TStyleManager.h:122
 TStyleManager.h:123
 TStyleManager.h:124
 TStyleManager.h:125
 TStyleManager.h:126
 TStyleManager.h:127
 TStyleManager.h:128
 TStyleManager.h:129
 TStyleManager.h:130
 TStyleManager.h:131
 TStyleManager.h:132
 TStyleManager.h:133
 TStyleManager.h:134
 TStyleManager.h:135
 TStyleManager.h:136
 TStyleManager.h:137
 TStyleManager.h:138
 TStyleManager.h:139
 TStyleManager.h:140
 TStyleManager.h:141
 TStyleManager.h:142
 TStyleManager.h:143
 TStyleManager.h:144
 TStyleManager.h:145
 TStyleManager.h:146
 TStyleManager.h:147
 TStyleManager.h:148
 TStyleManager.h:149
 TStyleManager.h:150
 TStyleManager.h:151
 TStyleManager.h:152
 TStyleManager.h:153
 TStyleManager.h:154
 TStyleManager.h:155
 TStyleManager.h:156
 TStyleManager.h:157
 TStyleManager.h:158
 TStyleManager.h:159
 TStyleManager.h:160
 TStyleManager.h:161
 TStyleManager.h:162
 TStyleManager.h:163
 TStyleManager.h:164
 TStyleManager.h:165
 TStyleManager.h:166
 TStyleManager.h:167
 TStyleManager.h:168
 TStyleManager.h:169
 TStyleManager.h:170
 TStyleManager.h:171
 TStyleManager.h:172
 TStyleManager.h:173
 TStyleManager.h:174
 TStyleManager.h:175
 TStyleManager.h:176
 TStyleManager.h:177
 TStyleManager.h:178
 TStyleManager.h:179
 TStyleManager.h:180
 TStyleManager.h:181
 TStyleManager.h:182
 TStyleManager.h:183
 TStyleManager.h:184
 TStyleManager.h:185
 TStyleManager.h:186
 TStyleManager.h:187
 TStyleManager.h:188
 TStyleManager.h:189
 TStyleManager.h:190
 TStyleManager.h:191
 TStyleManager.h:192
 TStyleManager.h:193
 TStyleManager.h:194
 TStyleManager.h:195
 TStyleManager.h:196
 TStyleManager.h:197
 TStyleManager.h:198
 TStyleManager.h:199
 TStyleManager.h:200
 TStyleManager.h:201
 TStyleManager.h:202
 TStyleManager.h:203
 TStyleManager.h:204
 TStyleManager.h:205
 TStyleManager.h:206
 TStyleManager.h:207
 TStyleManager.h:208
 TStyleManager.h:209
 TStyleManager.h:210
 TStyleManager.h:211
 TStyleManager.h:212
 TStyleManager.h:213
 TStyleManager.h:214
 TStyleManager.h:215
 TStyleManager.h:216
 TStyleManager.h:217
 TStyleManager.h:218
 TStyleManager.h:219
 TStyleManager.h:220
 TStyleManager.h:221
 TStyleManager.h:222
 TStyleManager.h:223
 TStyleManager.h:224
 TStyleManager.h:225
 TStyleManager.h:226
 TStyleManager.h:227
 TStyleManager.h:228
 TStyleManager.h:229
 TStyleManager.h:230
 TStyleManager.h:231
 TStyleManager.h:232
 TStyleManager.h:233
 TStyleManager.h:234
 TStyleManager.h:235
 TStyleManager.h:236
 TStyleManager.h:237
 TStyleManager.h:238
 TStyleManager.h:239
 TStyleManager.h:240
 TStyleManager.h:241
 TStyleManager.h:242
 TStyleManager.h:243
 TStyleManager.h:244
 TStyleManager.h:245
 TStyleManager.h:246
 TStyleManager.h:247
 TStyleManager.h:248
 TStyleManager.h:249
 TStyleManager.h:250
 TStyleManager.h:251
 TStyleManager.h:252
 TStyleManager.h:253
 TStyleManager.h:254
 TStyleManager.h:255
 TStyleManager.h:256
 TStyleManager.h:257
 TStyleManager.h:258
 TStyleManager.h:259
 TStyleManager.h:260
 TStyleManager.h:261
 TStyleManager.h:262
 TStyleManager.h:263
 TStyleManager.h:264
 TStyleManager.h:265
 TStyleManager.h:266
 TStyleManager.h:267
 TStyleManager.h:268
 TStyleManager.h:269
 TStyleManager.h:270
 TStyleManager.h:271
 TStyleManager.h:272
 TStyleManager.h:273
 TStyleManager.h:274
 TStyleManager.h:275
 TStyleManager.h:276
 TStyleManager.h:277
 TStyleManager.h:278
 TStyleManager.h:279
 TStyleManager.h:280
 TStyleManager.h:281
 TStyleManager.h:282
 TStyleManager.h:283
 TStyleManager.h:284
 TStyleManager.h:285
 TStyleManager.h:286
 TStyleManager.h:287
 TStyleManager.h:288
 TStyleManager.h:289
 TStyleManager.h:290
 TStyleManager.h:291
 TStyleManager.h:292
 TStyleManager.h:293
 TStyleManager.h:294
 TStyleManager.h:295
 TStyleManager.h:296
 TStyleManager.h:297
 TStyleManager.h:298
 TStyleManager.h:299
 TStyleManager.h:300
 TStyleManager.h:301
 TStyleManager.h:302
 TStyleManager.h:303
 TStyleManager.h:304
 TStyleManager.h:305
 TStyleManager.h:306
 TStyleManager.h:307
 TStyleManager.h:308
 TStyleManager.h:309
 TStyleManager.h:310
 TStyleManager.h:311
 TStyleManager.h:312
 TStyleManager.h:313
 TStyleManager.h:314
 TStyleManager.h:315
 TStyleManager.h:316
 TStyleManager.h:317
 TStyleManager.h:318
 TStyleManager.h:319
 TStyleManager.h:320
 TStyleManager.h:321
 TStyleManager.h:322
 TStyleManager.h:323
 TStyleManager.h:324
 TStyleManager.h:325
 TStyleManager.h:326
 TStyleManager.h:327
 TStyleManager.h:328
 TStyleManager.h:329
 TStyleManager.h:330
 TStyleManager.h:331
 TStyleManager.h:332
 TStyleManager.h:333
 TStyleManager.h:334
 TStyleManager.h:335
 TStyleManager.h:336
 TStyleManager.h:337
 TStyleManager.h:338
 TStyleManager.h:339
 TStyleManager.h:340
 TStyleManager.h:341
 TStyleManager.h:342
 TStyleManager.h:343
 TStyleManager.h:344
 TStyleManager.h:345
 TStyleManager.h:346
 TStyleManager.h:347
 TStyleManager.h:348
 TStyleManager.h:349
 TStyleManager.h:350
 TStyleManager.h:351
 TStyleManager.h:352
 TStyleManager.h:353
 TStyleManager.h:354
 TStyleManager.h:355
 TStyleManager.h:356
 TStyleManager.h:357
 TStyleManager.h:358
 TStyleManager.h:359
 TStyleManager.h:360
 TStyleManager.h:361
 TStyleManager.h:362
 TStyleManager.h:363
 TStyleManager.h:364
 TStyleManager.h:365
 TStyleManager.h:366
 TStyleManager.h:367
 TStyleManager.h:368
 TStyleManager.h:369
 TStyleManager.h:370
 TStyleManager.h:371
 TStyleManager.h:372
 TStyleManager.h:373
 TStyleManager.h:374
 TStyleManager.h:375
 TStyleManager.h:376
 TStyleManager.h:377
 TStyleManager.h:378
 TStyleManager.h:379
 TStyleManager.h:380
 TStyleManager.h:381
 TStyleManager.h:382
 TStyleManager.h:383
 TStyleManager.h:384
 TStyleManager.h:385
 TStyleManager.h:386
 TStyleManager.h:387
 TStyleManager.h:388
 TStyleManager.h:389
 TStyleManager.h:390
 TStyleManager.h:391
 TStyleManager.h:392
 TStyleManager.h:393
 TStyleManager.h:394
 TStyleManager.h:395
 TStyleManager.h:396
 TStyleManager.h:397
 TStyleManager.h:398
 TStyleManager.h:399
 TStyleManager.h:400
 TStyleManager.h:401
 TStyleManager.h:402
 TStyleManager.h:403
 TStyleManager.h:404
 TStyleManager.h:405
 TStyleManager.h:406
 TStyleManager.h:407
 TStyleManager.h:408
 TStyleManager.h:409
 TStyleManager.h:410
 TStyleManager.h:411
 TStyleManager.h:412
 TStyleManager.h:413
 TStyleManager.h:414
 TStyleManager.h:415
 TStyleManager.h:416
 TStyleManager.h:417
 TStyleManager.h:418
 TStyleManager.h:419
 TStyleManager.h:420
 TStyleManager.h:421
 TStyleManager.h:422
 TStyleManager.h:423
 TStyleManager.h:424
 TStyleManager.h:425
 TStyleManager.h:426
 TStyleManager.h:427
 TStyleManager.h:428
 TStyleManager.h:429
 TStyleManager.h:430
 TStyleManager.h:431
 TStyleManager.h:432
 TStyleManager.h:433
 TStyleManager.h:434
 TStyleManager.h:435
 TStyleManager.h:436
 TStyleManager.h:437
 TStyleManager.h:438
 TStyleManager.h:439
 TStyleManager.h:440
 TStyleManager.h:441
 TStyleManager.h:442
 TStyleManager.h:443
 TStyleManager.h:444
 TStyleManager.h:445
 TStyleManager.h:446
 TStyleManager.h:447
 TStyleManager.h:448
 TStyleManager.h:449
 TStyleManager.h:450
 TStyleManager.h:451
 TStyleManager.h:452
 TStyleManager.h:453
 TStyleManager.h:454
 TStyleManager.h:455
 TStyleManager.h:456
 TStyleManager.h:457
 TStyleManager.h:458
 TStyleManager.h:459
 TStyleManager.h:460
 TStyleManager.h:461
 TStyleManager.h:462
 TStyleManager.h:463
 TStyleManager.h:464
 TStyleManager.h:465
 TStyleManager.h:466
 TStyleManager.h:467
 TStyleManager.h:468
 TStyleManager.h:469
 TStyleManager.h:470
 TStyleManager.h:471
 TStyleManager.h:472
 TStyleManager.h:473
 TStyleManager.h:474
 TStyleManager.h:475
 TStyleManager.h:476
 TStyleManager.h:477
 TStyleManager.h:478
 TStyleManager.h:479
 TStyleManager.h:480
 TStyleManager.h:481
 TStyleManager.h:482
 TStyleManager.h:483
 TStyleManager.h:484
 TStyleManager.h:485
 TStyleManager.h:486
 TStyleManager.h:487
 TStyleManager.h:488
 TStyleManager.h:489
 TStyleManager.h:490
 TStyleManager.h:491
 TStyleManager.h:492
 TStyleManager.h:493
 TStyleManager.h:494
 TStyleManager.h:495
 TStyleManager.h:496
 TStyleManager.h:497
 TStyleManager.h:498
 TStyleManager.h:499
 TStyleManager.h:500
 TStyleManager.h:501
 TStyleManager.h:502
 TStyleManager.h:503
 TStyleManager.h:504
 TStyleManager.h:505
 TStyleManager.h:506
 TStyleManager.h:507
 TStyleManager.h:508
 TStyleManager.h:509
 TStyleManager.h:510
 TStyleManager.h:511
 TStyleManager.h:512
 TStyleManager.h:513
 TStyleManager.h:514
 TStyleManager.h:515
 TStyleManager.h:516
 TStyleManager.h:517
 TStyleManager.h:518
 TStyleManager.h:519
 TStyleManager.h:520
 TStyleManager.h:521
 TStyleManager.h:522
 TStyleManager.h:523
 TStyleManager.h:524
 TStyleManager.h:525
 TStyleManager.h:526
 TStyleManager.h:527
 TStyleManager.h:528
 TStyleManager.h:529
 TStyleManager.h:530
 TStyleManager.h:531
 TStyleManager.h:532
 TStyleManager.h:533
 TStyleManager.h:534
 TStyleManager.h:535
 TStyleManager.h:536
 TStyleManager.h:537
 TStyleManager.h:538
 TStyleManager.h:539
 TStyleManager.h:540
 TStyleManager.h:541
 TStyleManager.h:542
 TStyleManager.h:543
 TStyleManager.h:544
 TStyleManager.h:545
 TStyleManager.h:546
 TStyleManager.h:547
 TStyleManager.h:548
 TStyleManager.h:549
 TStyleManager.h:550
 TStyleManager.h:551
 TStyleManager.h:552
 TStyleManager.h:553
 TStyleManager.h:554
 TStyleManager.h:555
 TStyleManager.h:556
 TStyleManager.h:557
 TStyleManager.h:558
 TStyleManager.h:559
 TStyleManager.h:560
 TStyleManager.h:561
 TStyleManager.h:562
 TStyleManager.h:563
 TStyleManager.h:564
 TStyleManager.h:565
 TStyleManager.h:566
 TStyleManager.h:567
 TStyleManager.h:568
 TStyleManager.h:569
 TStyleManager.h:570
 TStyleManager.h:571
 TStyleManager.h:572
 TStyleManager.h:573
 TStyleManager.h:574
 TStyleManager.h:575
 TStyleManager.h:576
 TStyleManager.h:577
 TStyleManager.h:578
 TStyleManager.h:579
 TStyleManager.h:580
 TStyleManager.h:581
 TStyleManager.h:582
 TStyleManager.h:583
 TStyleManager.h:584
 TStyleManager.h:585
 TStyleManager.h:586
 TStyleManager.h:587
 TStyleManager.h:588
 TStyleManager.h:589
 TStyleManager.h:590
 TStyleManager.h:591
 TStyleManager.h:592
 TStyleManager.h:593
 TStyleManager.h:594
 TStyleManager.h:595
 TStyleManager.h:596
 TStyleManager.h:597
 TStyleManager.h:598
 TStyleManager.h:599
 TStyleManager.h:600
 TStyleManager.h:601
 TStyleManager.h:602
 TStyleManager.h:603
 TStyleManager.h:604
 TStyleManager.h:605
 TStyleManager.h:606
 TStyleManager.h:607
 TStyleManager.h:608
 TStyleManager.h:609
 TStyleManager.h:610
 TStyleManager.h:611
 TStyleManager.h:612
 TStyleManager.h:613
 TStyleManager.h:614
 TStyleManager.h:615
 TStyleManager.h:616
 TStyleManager.h:617
 TStyleManager.h:618
 TStyleManager.h:619
 TStyleManager.h:620
 TStyleManager.h:621
 TStyleManager.h:622
 TStyleManager.h:623
 TStyleManager.h:624
 TStyleManager.h:625
 TStyleManager.h:626
 TStyleManager.h:627
 TStyleManager.h:628
 TStyleManager.h:629
 TStyleManager.h:630
 TStyleManager.h:631
 TStyleManager.h:632
 TStyleManager.h:633
 TStyleManager.h:634
 TStyleManager.h:635
 TStyleManager.h:636
 TStyleManager.h:637
 TStyleManager.h:638
 TStyleManager.h:639
 TStyleManager.h:640
 TStyleManager.h:641
 TStyleManager.h:642
 TStyleManager.h:643
 TStyleManager.h:644
 TStyleManager.h:645
 TStyleManager.h:646
 TStyleManager.h:647
 TStyleManager.h:648
 TStyleManager.h:649
 TStyleManager.h:650
 TStyleManager.h:651
 TStyleManager.h:652
 TStyleManager.h:653
 TStyleManager.h:654
 TStyleManager.h:655
 TStyleManager.h:656
 TStyleManager.h:657
 TStyleManager.h:658
 TStyleManager.h:659
 TStyleManager.h:660
 TStyleManager.h:661
 TStyleManager.h:662
 TStyleManager.h:663
 TStyleManager.h:664
 TStyleManager.h:665
 TStyleManager.h:666
 TStyleManager.h:667
 TStyleManager.h:668
 TStyleManager.h:669
 TStyleManager.h:670
 TStyleManager.h:671