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
|
#ifndef Fireworks_Core_FWBoxIconButton_h
#define Fireworks_Core_FWBoxIconButton_h
// -*- C++ -*-
//
// Package: Core
// Class : FWBoxIconButton
//
/**\class FWBoxIconButton FWBoxIconButton.h Fireworks/Core/interface/FWBoxIconButton.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Thu Feb 19 19:04:08 CST 2009
//
// system include files
#include "TGButton.h"
// user include files
// forward declarations
class FWBoxIconBase;
class FWBoxIconButton : public TGButton {
public:
FWBoxIconButton(const TGWindow* iParent,
FWBoxIconBase* iBase,
Int_t iID = -1,
GContext_t norm = TGButton::GetDefaultGC()(),
UInt_t option = 0);
~FWBoxIconButton() override;
// ---------- const member functions ---------------------
// ---------- static member functions --------------------
// ---------- member functions ---------------------------
void setNormCG(GContext_t);
protected:
void DoRedraw() override;
public:
FWBoxIconButton(const FWBoxIconButton&) = delete; // stop default
const FWBoxIconButton& operator=(const FWBoxIconButton&) = delete; // stop default
private:
// ---------- member data --------------------------------
FWBoxIconBase* m_iconBase;
};
#endif
|