Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

ui-items-stock.h File Reference

#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

Classes

class  Gnome::UI::Items::ConfigureItem
struct  Gnome::UI::Menus::New

Defines

#define STOCK_MENU_ITEM(X, Y)
#define STOCK_MENU_ITEM_EXTRA(X, Y)
#define STOCK_MENU(X, Y)

Functions

 Gnome::UI::MenuItems::STOCK_MENU_ITEM_EXTRA (New, GNOME_APP_CONFIGURABLE_ITEM_NEW)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Open, GNOME_APP_CONFIGURABLE_ITEM_OPEN)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Save, GNOME_APP_CONFIGURABLE_ITEM_SAVE)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (SaveAs, GNOME_APP_CONFIGURABLE_ITEM_SAVE_AS)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Revert, GNOME_APP_CONFIGURABLE_ITEM_REVERT)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Print, GNOME_APP_CONFIGURABLE_ITEM_PRINT)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (PrintSetup, GNOME_APP_CONFIGURABLE_ITEM_PRINT_SETUP)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Close, GNOME_APP_CONFIGURABLE_ITEM_CLOSE)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Exit, GNOME_APP_CONFIGURABLE_ITEM_EXIT)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Cut, GNOME_APP_CONFIGURABLE_ITEM_CUT)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Copy, GNOME_APP_CONFIGURABLE_ITEM_COPY)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Paste, GNOME_APP_CONFIGURABLE_ITEM_PASTE)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (SelectAll, GNOME_APP_CONFIGURABLE_ITEM_SELECT_ALL)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Clear, GNOME_APP_CONFIGURABLE_ITEM_CLEAR)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Undo, GNOME_APP_CONFIGURABLE_ITEM_UNDO)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Redo, GNOME_APP_CONFIGURABLE_ITEM_REDO)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Find, GNOME_APP_CONFIGURABLE_ITEM_FIND)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (FindAgain, GNOME_APP_CONFIGURABLE_ITEM_FIND_AGAIN)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Replace, GNOME_APP_CONFIGURABLE_ITEM_REPLACE)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Properties, GNOME_APP_CONFIGURABLE_ITEM_PROPERTIES)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Preferences, GNOME_APP_CONFIGURABLE_ITEM_PREFERENCES)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (NewWindow, GNOME_APP_CONFIGURABLE_ITEM_NEW_WINDOW)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (CloseWindow, GNOME_APP_CONFIGURABLE_ITEM_CLOSE_WINDOW)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (About, GNOME_APP_CONFIGURABLE_ITEM_ABOUT)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (NewGame, GNOME_APP_CONFIGURABLE_ITEM_NEW_GAME)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (PauseGame, GNOME_APP_CONFIGURABLE_ITEM_PAUSE_GAME)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (RestartGame, GNOME_APP_CONFIGURABLE_ITEM_RESTART_GAME)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (UndoMove, GNOME_APP_CONFIGURABLE_ITEM_UNDO_MOVE)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (RedoMove, GNOME_APP_CONFIGURABLE_ITEM_REDO_MOVE)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Hint, GNOME_APP_CONFIGURABLE_ITEM_HINT)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (Scores, GNOME_APP_CONFIGURABLE_ITEM_SCORES)
 Gnome::UI::MenuItems::STOCK_MENU_ITEM (EndGame, GNOME_APP_CONFIGURABLE_ITEM_END_GAME)
 Gnome::UI::Menus::STOCK_MENU (File,"_File")
 Gnome::UI::Menus::STOCK_MENU (Files,"Fi_les")
 Gnome::UI::Menus::STOCK_MENU (Edit,"_Edit")
 Gnome::UI::Menus::STOCK_MENU (View,"_View")
 Gnome::UI::Menus::STOCK_MENU (Help,"_Help")
 Gnome::UI::Menus::STOCK_MENU (Game,"_Game")
 Gnome::UI::Menus::STOCK_MENU (Settings,"_Settings")
 Gnome::UI::Menus::STOCK_MENU (Windows,"_Windows")


Define Documentation

#define STOCK_MENU X,
 ) 
 

Value:

struct X : public Items::Menu \
{ \
  X(const Items::Array<Info>& tree = Items::Array<Info>()) \
  : Items::Menu(Y,tree) \
  {} \
  ~X() \
  {} \
}

#define STOCK_MENU_ITEM X,
 ) 
 

Value:

struct X : public Items::ConfigureItem \
  { \
    X(const Callback& cb) \
    { \
     init(cb, Y); \
    } \
    X(const CallbackWithWidget& cb = CallbackWithWidget()) \
    { \
     init(cb, Y); \
    } \
    ~X() {} \
  }

#define STOCK_MENU_ITEM_EXTRA 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() {} \
  }


Generated on Sun Sep 11 19:04:58 2005 for libgnomeuimm by  doxygen 1.4.4