Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TEveJetConeEditor.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/eve:$Id$
0002 // Author: Matevz Tadel, Jochen Thaeder 2009
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TEveJetConeEditor
0013 #define ROOT_TEveJetConeEditor
0014 
0015 #include "TGedFrame.h"
0016 
0017 class TGButton;
0018 class TGCheckButton;
0019 class TGNumberEntry;
0020 class TGColorSelect;
0021 
0022 class TEveJetCone;
0023 
0024 class TEveJetConeEditor : public TGedFrame
0025 {
0026 private:
0027    TEveJetConeEditor(const TEveJetConeEditor&);            // Not implemented
0028    TEveJetConeEditor& operator=(const TEveJetConeEditor&); // Not implemented
0029 
0030 protected:
0031    TEveJetCone            *fM; // Model object.
0032 
0033    // Declare widgets
0034    // TGSomeWidget*   fXYZZ;
0035 
0036 public:
0037    TEveJetConeEditor(const TGWindow *p = nullptr, Int_t width=170, Int_t height=30,
0038                      UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
0039    ~TEveJetConeEditor() override {}
0040 
0041    void SetModel(TObject* obj) override;
0042 
0043    // Declare callback/slot methods
0044    // void DoXYZZ();
0045 
0046    ClassDefOverride(TEveJetConeEditor, 0); // GUI editor for TEveJetCone.
0047 };
0048 
0049 #endif