// {{{ the iWear header
/**
 * $Id$
 * $Revision$
 * $Author$
 * $Date$
 *
 * This file is part of The iWear Framework.
 * In particular this file is part of the Framework Output
 *
 * The iWear Framework is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by the
 * Free Software Foundation as in version 2 of the License.

 * 
 * The iWear Framework is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 * 
 * You should have received a copy of the GNU General Public License along with
 * The iWear Framework; if not, write to the Free Software Foundation, Inc., 59
 * Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
// }}}

#ifndef __SIMPLEMENUFUNCTOR_H
#define __SIMPLEMENUFUNCTOR_H

#ifndef __MENUFUNCTOR_H
#include <iwear_uiservices/menufunctor.h>
#endif

#ifndef __APPLICATION_H
#include <iwear_uiservices/applicationbase.h>
#endif

namespace iwear{
    namespace uiservices{


class SimpleMenuFunctor : public MenuFunctor 
{

public:

    /**
     * The constructor
     * @param controller pointer to the Daemon Controller
     */
    SimpleMenuFunctor(ApplicationBase* father_application)
	: father_application(father_application)
    {
	// Nothing yet to do!
    }

    /**
     * The destructor
     */
    virtual ~SimpleMenuFunctor( void )
    {
	// Nothing yet to do!
    }

protected:

    /**
     * The daemon controller needs to toggle dynamic daemons
     * whenever a user activates a button which represents such an
     * daemon.
     */
    inline virtual void on_element_activated( void ){
	this->father_application->push_button_event(this->get_element_id());
    }

    /**
     * Handle to the daemon controller
     */
    ApplicationBase* father_application;


}; // class SimpleMenuFunctor


    } // namespace iwear
} // namespace iwear


#endif  // __SIMPLEMENUFUNCTOR_H


