2013-03-28 17:04:07 +00:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
2007-05-20 18:03:49 +00:00
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#ifndef __C_GUI_MENU_H_INCLUDED__
|
|
|
|
#define __C_GUI_MENU_H_INCLUDED__
|
|
|
|
|
2007-07-26 05:30:19 +00:00
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
#ifdef _IRR_COMPILE_WITH_GUI_
|
|
|
|
|
2007-05-20 18:03:49 +00:00
|
|
|
#include "CGUIContextMenu.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
namespace gui
|
|
|
|
{
|
|
|
|
|
|
|
|
//! GUI menu interface.
|
|
|
|
class CGUIMenu : public CGUIContextMenu
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! constructor
|
|
|
|
CGUIMenu(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle);
|
|
|
|
|
|
|
|
//! draws the element and its children
|
|
|
|
virtual void draw();
|
|
|
|
|
|
|
|
//! called if an event happened.
|
2007-09-16 23:41:55 +00:00
|
|
|
virtual bool OnEvent(const SEvent& event);
|
2007-05-20 18:03:49 +00:00
|
|
|
|
|
|
|
//! Updates the absolute position.
|
|
|
|
virtual void updateAbsolutePosition();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
virtual void recalculateSize();
|
|
|
|
|
|
|
|
//! returns the item highlight-area
|
2007-09-18 07:54:34 +00:00
|
|
|
virtual core::rect<s32> getHRect(const SItem& i, const core::rect<s32>& absolute) const;
|
2007-05-20 18:03:49 +00:00
|
|
|
|
|
|
|
//! Gets drawing rect of Item
|
2007-09-18 07:54:34 +00:00
|
|
|
virtual core::rect<s32> getRect(const SItem& i, const core::rect<s32>& absolute) const;
|
2007-05-20 18:03:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace gui
|
|
|
|
} // end namespace irr
|
|
|
|
|
2007-08-29 23:37:24 +00:00
|
|
|
|
2007-07-26 05:30:19 +00:00
|
|
|
#endif // __C_GUI_MENU_H_INCLUDED__
|
|
|
|
#endif // _IRR_COMPILE_WITH_GUI_
|
2009-01-27 13:23:36 +00:00
|
|
|
|