1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#ifndef Fireworks_TableWidget_FWTabularWidget_h
#define Fireworks_TableWidget_FWTabularWidget_h
// -*- C++ -*-
//
// Package: TableWidget
// Class : FWTabularWidget
//
/**\class FWTabularWidget FWTabularWidget.h Fireworks/TableWidget/interface/FWTabularWidget.h
Description: Widget that draws part of a table [Implementation detail of FWTableWidget]
Usage:
This class is used internally by FWTableWidget.
*/
//
// Original Author: Chris Jones
// Created: Mon Feb 2 16:45:19 EST 2009
//
// system include files
#include <vector>
#include "TGFrame.h"
#include "TVirtualX.h"
// user include files
// forward declarations
class FWTableManagerBase;
class FWTabularWidget : public TGFrame {
public:
static const TGGC& getDefaultGC();
static const int kTextBuffer;
static const int kSeperatorWidth;
FWTabularWidget(FWTableManagerBase* iManager, const TGWindow* p = nullptr, GContext_t context = getDefaultGC()());
~FWTabularWidget() override;
// ---------- const member functions ---------------------
const std::vector<unsigned int>& widthOfTextInColumns() const { return m_widthOfTextInColumns; }
UInt_t verticalOffset() const { return m_vOffset; }
UInt_t horizontalOffset() const { return m_hOffset; }
// ---------- static member functions --------------------
// ---------- member functions ---------------------------
void setWidthOfTextInColumns(const std::vector<unsigned int>&);
void DoRedraw() override;
TGDimension GetDefaultSize() const override;
void setVerticalOffset(UInt_t);
void setHorizontalOffset(UInt_t);
Bool_t HandleButton(Event_t* event) override;
void buttonPressed(Int_t row, Int_t column, Event_t* event, Int_t relX, Int_t relY); //*SIGNAL*
void buttonReleased(Int_t row, Int_t column, Event_t* event, Int_t relX, Int_t relY); //*SIGNAL*
void dataChanged();
void needToRedraw();
ClassDefOverride(FWTabularWidget, 0);
void setLineContext(GContext_t iContext);
void setBackgroundAreaContext(GContext_t iContext);
void disableGrowInWidth() { m_growInWidth = false; }
private:
//FWTabularWidget(const FWTabularWidget&); // stop default
//const FWTabularWidget& operator=(const FWTabularWidget&); // stop default
// ---------- member data --------------------------------
void translateToRowColumn(Int_t iX, Int_t iY, Int_t& oRow, Int_t& oCol, Int_t& oRelX, Int_t& oRelY) const;
FWTableManagerBase* m_table;
std::vector<unsigned int> m_widthOfTextInColumns;
std::vector<unsigned int> m_widthOfTextInColumnsMax;
int m_textHeight;
int m_tableWidth;
unsigned int m_vOffset;
unsigned int m_hOffset;
GContext_t m_normGC;
GContext_t m_backgroundGC;
bool m_growInWidth;
};
#endif
|