Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:31

0001 #ifndef Fireworks_Core_FWEveLegoView_h
0002 #define Fireworks_Core_FWEveLegoView_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Core
0006 // Class  :     FWEveLegoView
0007 //
0008 /**\class FWEveLegoView FWEveLegoView.h Fireworks/Core/interface/FWEveLegoView.h
0009 
0010  Description: [one line class summary]
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Alja Mrak-Tadel
0018 //         Created:  Mon May 31 13:09:38 CEST 2010
0019 //
0020 
0021 #include "Fireworks/Core/interface/FWLegoViewBase.h"
0022 
0023 class TEveStraightLineSet;
0024 
0025 class FWEveLegoView : public FWLegoViewBase {
0026 public:
0027   FWEveLegoView(TEveWindowSlot*, FWViewType::EType);
0028   ~FWEveLegoView() override;
0029 
0030   void setContext(const fireworks::Context&) override;
0031   void setBackgroundColor(Color_t) override;
0032 
0033   // ---------- const member functions ---------------------
0034 
0035   // ---------- static member functions --------------------
0036 
0037   // ---------- member functions ---------------------------
0038 
0039   FWEveLegoView(const FWEveLegoView&) = delete;  // stop default
0040 
0041   const FWEveLegoView& operator=(const FWEveLegoView&) = delete;  // stop default
0042 
0043 private:
0044   // ---------- member data --------------------------------
0045   TEveStraightLineSet* m_boundaries;
0046 };
0047 
0048 #endif