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 | Private Member Functions | Private Attributes | Friends
FWViewContextMenuHandlerBase::MenuEntryAdder Class Reference

#include <FWViewContextMenuHandlerBase.h>

Public Member Functions

int addEntry (const char *iEntryName, int idx, bool enable=true)
 

Private Member Functions

 MenuEntryAdder (FWModelContextMenuHandler &)
 

Private Attributes

FWModelContextMenuHandlerm_handler
 

Friends

class FWViewContextMenuHandlerBase
 

Detailed Description

Definition at line 34 of file FWViewContextMenuHandlerBase.h.

Constructor & Destructor Documentation

FWViewContextMenuHandlerBase::MenuEntryAdder::MenuEntryAdder ( FWModelContextMenuHandler iHandler)
private

Definition at line 26 of file FWViewContextMenuHandlerBase.cc.

27  : m_handler(&iHandler) {}

Member Function Documentation

int FWViewContextMenuHandlerBase::MenuEntryAdder::addEntry ( const char *  iEntryName,
int  idx,
bool  enable = true 
)

Add an entry by name of iEntryName to the context menu. Returns the entry index which simply increments after each 'addEntry' call and starts at 0

Definition at line 29 of file FWViewContextMenuHandlerBase.cc.

Referenced by FWViewContextMenuHandlerGL::init().

29  {
30  m_handler->addViewEntry(iEntryName, idx, enabled);
31  return idx;
32 }
void addViewEntry(const char *, int, bool enabled=true)

Friends And Related Function Documentation

friend class FWViewContextMenuHandlerBase
friend

Definition at line 35 of file FWViewContextMenuHandlerBase.h.

Member Data Documentation

FWModelContextMenuHandler* FWViewContextMenuHandlerBase::MenuEntryAdder::m_handler
private

Definition at line 37 of file FWViewContextMenuHandlerBase.h.