CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Protected Member Functions | Private Attributes
FWBoxIconButton Class Reference

#include <Fireworks/Core/interface/FWBoxIconButton.h>

Inheritance diagram for FWBoxIconButton:

Public Member Functions

 FWBoxIconButton (const TGWindow *iParent, FWBoxIconBase *iBase, Int_t iID=-1, GContext_t norm=TGButton::GetDefaultGC()(), UInt_t option=0)
 
 FWBoxIconButton (const FWBoxIconButton &)=delete
 
const FWBoxIconButtonoperator= (const FWBoxIconButton &)=delete
 
void setNormCG (GContext_t)
 
 ~FWBoxIconButton () override
 

Protected Member Functions

void DoRedraw () override
 

Private Attributes

FWBoxIconBasem_iconBase
 

Detailed Description

Description: <one line="" class="" summary>="">

Usage: <usage>

Definition at line 29 of file FWBoxIconButton.h.

Constructor & Destructor Documentation

FWBoxIconButton::FWBoxIconButton ( const TGWindow *  iParent,
FWBoxIconBase iBase,
Int_t  iID = -1,
GContext_t  norm = TGButton::GetDefaultGC()(),
UInt_t  option = 0 
)

Definition at line 30 of file FWBoxIconButton.cc.

References FWBoxIconBase::edgeLength(), and m_iconBase.

32  : TGButton(iParent, iID, norm, option), m_iconBase(iBase) {
34 }
unsigned int edgeLength() const
Definition: FWBoxIconBase.h:36
FWBoxIconBase * m_iconBase
FWBoxIconButton::~FWBoxIconButton ( )
override

Definition at line 41 of file FWBoxIconButton.cc.

References m_iconBase.

41 { delete m_iconBase; }
FWBoxIconBase * m_iconBase
FWBoxIconButton::FWBoxIconButton ( const FWBoxIconButton )
delete

Member Function Documentation

void FWBoxIconButton::DoRedraw ( )
overrideprotected

Definition at line 58 of file FWBoxIconButton.cc.

References FWBoxIconBase::draw(), and m_iconBase.

58 { m_iconBase->draw(fId, fNormGC, 0, 0); }
void draw(Drawable_t iID, GContext_t iContext, int iX, int iY) const
FWBoxIconBase * m_iconBase
const FWBoxIconButton& FWBoxIconButton::operator= ( const FWBoxIconButton )
delete
void FWBoxIconButton::setNormCG ( GContext_t  iContext)

Definition at line 60 of file FWBoxIconButton.cc.

Referenced by FWCollectionSummaryWidget::setBackgroundToWhite().

60 { fNormGC = iContext; }

Member Data Documentation

FWBoxIconBase* FWBoxIconButton::m_iconBase
private

Definition at line 55 of file FWBoxIconButton.h.

Referenced by DoRedraw(), FWBoxIconButton(), and ~FWBoxIconButton().