Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Fireworks_Core_FWCompactVerticalLayout_h
0002 #define Fireworks_Core_FWCompactVerticalLayout_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Core
0006 // Class  :     FWCompactVerticalLayout
0007 //
0008 /**\class FWCompactVerticalLayout FWCompactVerticalLayout.h Fireworks/Core/interface/FWCompactVerticalLayout.h
0009 
0010  Description: <one line class summary>
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Tue Mar 17 12:10:41 CDT 2009
0019 //
0020 
0021 // system include files
0022 #include "TGLayout.h"
0023 
0024 // user include files
0025 
0026 // forward declarations
0027 
0028 class FWCompactVerticalLayout : public TGVerticalLayout {
0029 public:
0030   FWCompactVerticalLayout(TGCompositeFrame* iMain);
0031   ~FWCompactVerticalLayout() override;
0032 
0033   // ---------- const member functions ---------------------
0034   void Layout() override;
0035   TGDimension GetDefaultSize() const override;
0036 
0037   // ---------- static member functions --------------------
0038 
0039   // ---------- member functions ---------------------------
0040   ClassDefOverride(FWCompactVerticalLayout, 0)  // Vertical layout manager
0041 
0042       private : FWCompactVerticalLayout(const FWCompactVerticalLayout&);  // stop default
0043 
0044   const FWCompactVerticalLayout& operator=(const FWCompactVerticalLayout&);  // stop default
0045 
0046   // ---------- member data --------------------------------
0047 };
0048 
0049 #endif