CMS 3D CMS Logo

RootGuiUtils.h
Go to the documentation of this file.
1 // Author: Matevz Tadel 2011
2 
3 #ifndef Fireworks_Core_RootGuiUtils
4 #define Fireworks_Core_RootGuiUtils
5 
6 class TGCompositeFrame;
7 class TGHorizontalFrame;
8 
9 class TGLabel;
10 
11 namespace fireworks_root_gui {
12 
13  TGHorizontalFrame* makeHorizontalFrame(TGCompositeFrame* p = nullptr);
14  TGLabel* makeLabel(TGCompositeFrame* p, const char* txt, int width, int lo = 0, int ro = 0, int to = 2, int bo = 0);
15 
16 } // namespace fireworks_root_gui
17 
18 #endif
TGHorizontalFrame * makeHorizontalFrame(TGCompositeFrame *p=nullptr)
Definition: RootGuiUtils.cc:11
TGLabel * makeLabel(TGCompositeFrame *p, const char *txt, int width, int lo=0, int ro=0, int to=2, int bo=0)
Definition: RootGuiUtils.cc:19