1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/*
* Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
*
* This program 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; version 2 of the
* License.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#ifndef _STUB_MENUITEM_H_
#define _STUB_MENUITEM_H_
#include "stub_base.h"
namespace mforms {
namespace stub {
class MenuItemWrapper : public ObjectWrapper
{
protected:
MenuItemWrapper(::mforms::MenuItem *self)
: ObjectWrapper(self)
{
}
static bool create_menu_bar(MenuBar *item)
{
return true;
}
static bool create_menu_item(MenuItem *item, const std::string &, const MenuItemType type)
{
return true;
}
static void set_title(MenuItem *item, const std::string&)
{
}
static std::string get_title(MenuItem *item)
{
return "";
}
static void set_shortcut(MenuItem *item, const std::string&)
{
}
static void set_enabled(MenuBase *item, bool)
{
}
static bool get_enabled(MenuBase *item)
{
return true;
}
static void set_checked(MenuItem *item, bool)
{
}
static bool get_checked(MenuItem *item)
{
return true;
}
static void insert_item(MenuBase *menu, int index, MenuItem *item)
{
}
static void remove_item(MenuBase *menu, MenuItem *item)
{
}
static bool create_context_menu(mforms::ContextMenu* item)
{
return false;
}
public:
static void init()
{
::mforms::ControlFactory *f = ::mforms::ControlFactory::get_instance();
f->_menu_item_impl.create_menu_bar = &MenuItemWrapper::create_menu_bar;
f->_menu_item_impl.create_menu_item = &MenuItemWrapper::create_menu_item;
f->_menu_item_impl.get_checked = &MenuItemWrapper::get_checked;
f->_menu_item_impl.get_enabled = &MenuItemWrapper::get_enabled;
f->_menu_item_impl.get_title = &MenuItemWrapper::get_title;
f->_menu_item_impl.insert_item = &MenuItemWrapper::insert_item;
f->_menu_item_impl.remove_item = &MenuItemWrapper::remove_item;
f->_menu_item_impl.set_checked = &MenuItemWrapper::set_checked;
f->_menu_item_impl.set_enabled = &MenuItemWrapper::set_enabled;
f->_menu_item_impl.set_shortcut = &MenuItemWrapper::set_shortcut;
f->_menu_item_impl.set_title = &MenuItemWrapper::set_title;
f->_menu_item_impl.create_context_menu = &MenuItemWrapper::create_context_menu;
}
};
}
}
#endif
|