CMS 3D CMS Logo

FWInvMassDialog.h
Go to the documentation of this file.
1 #ifndef Fireworks_Core_FWInvMassDialog_h
2 #define Fireworks_Core_FWInvMassDialog_h
3 // -*- C++ -*-
4 //
5 // Package: Core
6 // Class : FWInvMassDialog
7 //
16 //
17 // Original Author: Matevz Tadel
18 // Created: Mon Nov 22 11:05:41 CET 2010
19 //
20 
21 // system include files
22 
23 // user include files
24 #include "TGFrame.h"
25 
26 // forward declarations
27 class FWSelectionManager;
28 
29 class TGTextView;
30 class TGTextButton;
31 
32 class FWInvMassDialog : public TGMainFrame {
33 public:
35  ~FWInvMassDialog() override;
36 
37  void CloseWindow() override;
38 
39  // ---------- const member functions ---------------------
40 
41  // ---------- static member functions --------------------
42 
43  // ---------- member functions ---------------------------
44 
45  void Calculate();
46 
47 protected:
48  void beginUpdate();
49  void addLine(const TString& line);
50  void endUpdate();
51 
52 private:
53  FWInvMassDialog(const FWInvMassDialog&); // stop default
54 
55  const FWInvMassDialog& operator=(const FWInvMassDialog&); // stop default
56 
57  // ---------- member data --------------------------------
58 
60 
61  TGTextView* m_text;
62  TGTextButton* m_button;
63 
65 
67 };
68 
69 #endif
~FWInvMassDialog() override
FWInvMassDialog(FWSelectionManager *sm)
TGTextView * m_text
void addLine(const TString &line)
void CloseWindow() override
ClassDefOverride(FWInvMassDialog, 0)
TGTextButton * m_button
FWSelectionManager * m_selectionMgr
const FWInvMassDialog & operator=(const FWInvMassDialog &)