2010-08-03 15:24:44 +02:00
|
|
|
#ifndef GAME_MWCLASS_ITEMLEVLIST_H
|
|
|
|
#define GAME_MWCLASS_ITEMLEVLIST_H
|
|
|
|
|
|
|
|
#include "../mwworld/class.hpp"
|
|
|
|
|
|
|
|
namespace MWClass
|
|
|
|
{
|
|
|
|
class ItemLevList : public MWWorld::Class
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2015-12-18 15:27:06 +01:00
|
|
|
virtual std::string getName (const MWWorld::ConstPtr& ptr) const;
|
2019-09-11 00:06:50 +03:00
|
|
|
///< \return name or ID; can return an empty string.
|
2010-08-03 15:24:44 +02:00
|
|
|
|
2019-09-10 21:56:10 +03:00
|
|
|
virtual bool hasToolTip (const MWWorld::ConstPtr& ptr) const;
|
|
|
|
///< @return true if this object has a tooltip when focused (default implementation: true)
|
|
|
|
|
2010-08-03 15:24:44 +02:00
|
|
|
static void registerSelf();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|