Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 // Author: Matevz Tadel 2011
0002 
0003 #ifndef Fireworks_Core_RootGuiUtils
0004 #define Fireworks_Core_RootGuiUtils
0005 
0006 class TGCompositeFrame;
0007 class TGHorizontalFrame;
0008 
0009 class TGLabel;
0010 
0011 namespace fireworks_root_gui {
0012 
0013   TGHorizontalFrame* makeHorizontalFrame(TGCompositeFrame* p = nullptr);
0014   TGLabel* makeLabel(TGCompositeFrame* p, const char* txt, int width, int lo = 0, int ro = 0, int to = 2, int bo = 0);
0015 
0016 }  // namespace fireworks_root_gui
0017 
0018 #endif