67 lines
2.0 KiB
C
67 lines
2.0 KiB
C
|
// File: fcheckmenuitem.h
|
||
|
// Provides: class FCheckMenuItem
|
||
|
//
|
||
|
// Inheritance diagram
|
||
|
// ═══════════════════
|
||
|
//
|
||
|
// ▕▔▔▔▔▔▔▔▔▔▏ ▕▔▔▔▔▔▔▔▔▔▏
|
||
|
// ▕ FObject ▏ ▕ FTerm ▏
|
||
|
// ▕▁▁▁▁▁▁▁▁▁▏ ▕▁▁▁▁▁▁▁▁▁▏
|
||
|
// ▲ ▲
|
||
|
// │ │
|
||
|
// └─────┬─────┘
|
||
|
// │
|
||
|
// ▕▔▔▔▔▔▔▔▔▔▏
|
||
|
// ▕ FWidget ▏
|
||
|
// ▕▁▁▁▁▁▁▁▁▁▏
|
||
|
// ▲
|
||
|
// │
|
||
|
// ▕▔▔▔▔▔▔▔▔▔▔▔▏
|
||
|
// ▕ FMenuItem ▏
|
||
|
// ▕▁▁▁▁▁▁▁▁▁▁▁▏
|
||
|
// ▲
|
||
|
// │
|
||
|
// ▕▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▏* 1▕▔▔▔▔▔▔▔▏
|
||
|
// ▕ FCheckMenuItem ▏- - - - -▕ FMenu ▏
|
||
|
// ▕▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▏ ▕▁▁▁▁▁▁▁▏
|
||
|
|
||
|
#ifndef _FCHECKMENUITEM_H
|
||
|
#define _FCHECKMENUITEM_H
|
||
|
|
||
|
#include "fmenuitem.h"
|
||
|
|
||
|
|
||
|
//----------------------------------------------------------------------
|
||
|
// class FCheckMenuItem
|
||
|
//----------------------------------------------------------------------
|
||
|
|
||
|
#pragma pack(push)
|
||
|
#pragma pack(1)
|
||
|
|
||
|
class FCheckMenuItem : public FMenuItem
|
||
|
{
|
||
|
private:
|
||
|
FCheckMenuItem (const FCheckMenuItem&);
|
||
|
FCheckMenuItem& operator = (const FCheckMenuItem&);
|
||
|
void init (FWidget*);
|
||
|
void processToggle();
|
||
|
void processClicked();
|
||
|
|
||
|
public:
|
||
|
explicit FCheckMenuItem (FWidget* = 0);
|
||
|
FCheckMenuItem (FString&, FWidget* = 0);
|
||
|
FCheckMenuItem (const std::string&, FWidget* = 0);
|
||
|
FCheckMenuItem (const char*, FWidget* = 0);
|
||
|
virtual ~FCheckMenuItem();
|
||
|
const char* getClassName() const;
|
||
|
};
|
||
|
#pragma pack(pop)
|
||
|
|
||
|
|
||
|
// FCheckMenuItem inline functions
|
||
|
//----------------------------------------------------------------------
|
||
|
inline const char* FCheckMenuItem::getClassName() const
|
||
|
{ return "FCheckMenuItem"; }
|
||
|
|
||
|
#endif // _FCHECKMENUITEM_H
|