#include <libgnomeuimm/ui-items-derived.h>
Go to the source code of this file.
Namespaces | |
namespace | Gnome |
namespace | Gnome::UI |
namespace | Gnome::UI::Items |
namespace | Gnome::UI::MenuItems |
namespace | Gnome::UI::Menus |
Defines | |
#define | STOCK_MENU_ITEM(X, Y) |
#define | STOCK_MENU_ITEM_EXTRA(X, Y) |
#define | STOCK_MENU(X, Y) |
|
Value: struct X : public Items::Menu \ { \ X(const Items::Array<Info>& tree = Items::Array<Info>()) \ : Items::Menu(Y,tree) \ {} \ ~X() \ {} \ } |
|
Value: struct X : public Items::ConfigureItem \ { \ X(const Callback& cb) \ { \ init(cb, Y); \ } \ X(const CallbackWithWidget& cb = CallbackWithWidget()) \ { \ init(cb, Y); \ } \ ~X() {} \ } |
|
Value: struct X : public Items::ConfigureItem \ { \ X(const Glib::ustring& strLabel, const Glib::ustring& strHint, const Callback& cb) \ { \ init(cb, Y, strLabel, strHint); \ } \ X(const Glib::ustring& strLabel, const Glib::ustring& strHint, const CallbackWithWidget& cb = CallbackWithWidget()) \ { \ init(cb, Y, strLabel, strHint); \ } \ ~X() {} \ } |