2015-09-25 21:37:19 +02:00
|
|
|
// File: fmenulist.h
|
|
|
|
// Provides: class FMenuList
|
|
|
|
//
|
|
|
|
// Base class
|
|
|
|
// ══════════
|
|
|
|
//
|
|
|
|
// ▕▔▔▔▔▔▔▔▔▔▔▔▏1 *▕▔▔▔▔▔▔▔▔▔▔▔▏
|
|
|
|
// ▕ FMenuList ▏- - - -▕ FMenuItem ▏
|
|
|
|
// ▕▁▁▁▁▁▁▁▁▁▁▁▏ ▕▁▁▁▁▁▁▁▁▁▁▁▏
|
|
|
|
|
2015-08-09 23:47:08 +02:00
|
|
|
|
|
|
|
#ifndef _FMENULIST_H
|
|
|
|
#define _FMENULIST_H
|
|
|
|
|
|
|
|
#include "fmenuitem.h"
|
2015-08-16 20:05:39 +02:00
|
|
|
#include "fwidget.h"
|
2015-08-09 23:47:08 +02:00
|
|
|
|
|
|
|
/*
|
2015-09-27 16:00:13 +02:00
|
|
|
┌─────────┐ ┌──────────┐
|
|
|
|
│ FWindow │◄───┐ ┌───┤ FMenuBar │
|
|
|
|
└─────────┘ │ │ └──────────┘
|
|
|
|
├──┤
|
|
|
|
┌───────────┐ │ │ ┌───────┐
|
|
|
|
│ FMenuList │◄───┘ └───┤ FMenu │
|
2015-10-01 03:48:58 +02:00
|
|
|
└─────┬─────┘ └───────┘
|
2015-09-27 16:00:13 +02:00
|
|
|
: ┌───────────┐
|
|
|
|
└-----------------┤ FMenuItem │
|
|
|
|
└───────────┘
|
2015-08-09 23:47:08 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FMenuList
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
#pragma pack(push)
|
|
|
|
#pragma pack(1)
|
|
|
|
|
|
|
|
class FMenuList
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
std::vector<FMenuItem*> itemlist;
|
|
|
|
|
|
|
|
private:
|
|
|
|
FMenuList (const FMenuList&);
|
|
|
|
FMenuList& operator = (const FMenuList&);
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit FMenuList();
|
|
|
|
virtual ~FMenuList();
|
|
|
|
virtual const char* getClassName() const;
|
|
|
|
|
2015-09-15 23:07:24 +02:00
|
|
|
uInt count() const;
|
|
|
|
FMenuItem* item (int) const;
|
2015-10-29 21:10:50 +01:00
|
|
|
void enableItem (int);
|
|
|
|
void disableItem (int);
|
2015-09-15 23:07:24 +02:00
|
|
|
bool isSelected (int) const;
|
|
|
|
bool hasSelectedItem();
|
|
|
|
|
|
|
|
virtual void insert (FMenuItem*);
|
|
|
|
virtual void remove (FMenuItem*);
|
|
|
|
void remove (int);
|
|
|
|
void clear();
|
2015-08-09 23:47:08 +02:00
|
|
|
};
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
|
|
|
|
// FMenuList inline functions
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline const char* FMenuList::getClassName() const
|
|
|
|
{ return "FMenuList"; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline uInt FMenuList::count() const
|
|
|
|
{ return uInt(itemlist.size()); }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline FMenuItem* FMenuList::item(int index) const
|
|
|
|
{ return itemlist[uInt(index-1)]; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2015-10-29 21:10:50 +01:00
|
|
|
inline void FMenuList::enableItem (int index)
|
|
|
|
{ itemlist[uInt(index-1)]->setEnable(); }
|
2015-08-09 23:47:08 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2015-10-29 21:10:50 +01:00
|
|
|
inline void FMenuList::disableItem (int index)
|
|
|
|
{ itemlist[uInt(index-1)]->unsetEnable(); }
|
2015-08-09 23:47:08 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
inline bool FMenuList::isSelected(int index) const
|
|
|
|
{ return itemlist[uInt(index-1)]->isSelected(); }
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _FMENULIST_H
|