//
// DecorMenu.hh for pekwm
// Copyright (C) 2003-2004 Claes Nasten <pekdon at pekdon dot>
//
// This program is licensed under the GNU GPL.
// See the LICENSE file for more information.
//

#include "../config.h"

#ifdef MENUS

#ifndef _DECORMENU_HH_
#define _DECORMENU_HH_

#include "pekwm.hh"

#include <string>

class WORefMenu;
class PScreen;
class Theme;
class ActionHandler;

class PMenu::Item;

class DecorMenu : public WORefMenu
{
public:
	DecorMenu(PScreen *scr, Theme *theme, ActionHandler *act);
	virtual ~DecorMenu(void);

	virtual void handleItemExec(PMenu::Item *item);
	virtual void reload(void);

private:
	ActionHandler *_act;
};

#endif //  _DECORMENU_HH_

#endif // MENUS


syntax highlighted by Code2HTML, v. 0.9.1