Synopsis
#include <gtk/gtk.h>
GtkStockItem;
void gtk_stock_add (const GtkStockItem *items,
guint n_items);
void gtk_stock_add_static (const GtkStockItem *items,
guint n_items);
GtkStockItem* gtk_stock_item_copy (const GtkStockItem *item);
void gtk_stock_item_free (GtkStockItem *item);
GSList* gtk_stock_list_ids (void);
gboolean gtk_stock_lookup (const gchar *stock_id,
GtkStockItem *item);
void gtk_stock_set_translate_func (const gchar *domain,
GtkTranslateFunc func,
gpointer data,
GDestroyNotify notify);
#define GTK_STOCK_ABOUT
#define GTK_STOCK_ADD
#define GTK_STOCK_APPLY
#define GTK_STOCK_BOLD
#define GTK_STOCK_CANCEL
#define GTK_STOCK_CDROM
#define GTK_STOCK_CLEAR
#define GTK_STOCK_CLOSE
#define GTK_STOCK_COLOR_PICKER
#define GTK_STOCK_CONVERT
#define GTK_STOCK_CONNECT
#define GTK_STOCK_COPY
#define GTK_STOCK_CUT
#define GTK_STOCK_DELETE
#define GTK_STOCK_DIALOG_AUTHENTICATION
#define GTK_STOCK_DIALOG_ERROR
#define GTK_STOCK_DIALOG_INFO
#define GTK_STOCK_DIALOG_QUESTION
#define GTK_STOCK_DIALOG_WARNING
#define GTK_STOCK_DIRECTORY
#define GTK_STOCK_DISCARD
#define GTK_STOCK_DISCONNECT
#define GTK_STOCK_DND
#define GTK_STOCK_DND_MULTIPLE
#define GTK_STOCK_EDIT
#define GTK_STOCK_EXECUTE
#define GTK_STOCK_FILE
#define GTK_STOCK_FIND
#define GTK_STOCK_FIND_AND_REPLACE
#define GTK_STOCK_FLOPPY
#define GTK_STOCK_FULLSCREEN
#define GTK_STOCK_GOTO_BOTTOM
#define GTK_STOCK_GOTO_FIRST
#define GTK_STOCK_GOTO_LAST
#define GTK_STOCK_GOTO_TOP
#define GTK_STOCK_GO_BACK
#define GTK_STOCK_GO_DOWN
#define GTK_STOCK_GO_FORWARD
#define GTK_STOCK_GO_UP
#define GTK_STOCK_HARDDISK
#define GTK_STOCK_HELP
#define GTK_STOCK_HOME
#define GTK_STOCK_INDENT
#define GTK_STOCK_INDEX
#define GTK_STOCK_INFO
#define GTK_STOCK_ITALIC
#define GTK_STOCK_JUMP_TO
#define GTK_STOCK_JUSTIFY_CENTER
#define GTK_STOCK_JUSTIFY_FILL
#define GTK_STOCK_JUSTIFY_LEFT
#define GTK_STOCK_JUSTIFY_RIGHT
#define GTK_STOCK_LEAVE_FULLSCREEN
#define GTK_STOCK_MEDIA_FORWARD
#define GTK_STOCK_MEDIA_NEXT
#define GTK_STOCK_MEDIA_PAUSE
#define GTK_STOCK_MEDIA_PLAY
#define GTK_STOCK_MEDIA_PREVIOUS
#define GTK_STOCK_MEDIA_RECORD
#define GTK_STOCK_MEDIA_REWIND
#define GTK_STOCK_MEDIA_STOP
#define GTK_STOCK_MISSING_IMAGE
#define GTK_STOCK_NETWORK
#define GTK_STOCK_NEW
#define GTK_STOCK_NO
#define GTK_STOCK_OK
#define GTK_STOCK_OPEN
#define GTK_STOCK_ORIENTATION_LANDSCAPE
#define GTK_STOCK_ORIENTATION_PORTRAIT
#define GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE
#define GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT
#define GTK_STOCK_PAGE_SETUP
#define GTK_STOCK_PASTE
#define GTK_STOCK_PREFERENCES
#define GTK_STOCK_PRINT
#define GTK_STOCK_PRINT_ERROR
#define GTK_STOCK_PRINT_PAUSED
#define GTK_STOCK_PRINT_PREVIEW
#define GTK_STOCK_PRINT_REPORT
#define GTK_STOCK_PRINT_WARNING
#define GTK_STOCK_PROPERTIES
#define GTK_STOCK_QUIT
#define GTK_STOCK_REDO
#define GTK_STOCK_REFRESH
#define GTK_STOCK_REMOVE
#define GTK_STOCK_REVERT_TO_SAVED
#define GTK_STOCK_SAVE
#define GTK_STOCK_SAVE_AS
#define GTK_STOCK_SELECT_ALL
#define GTK_STOCK_SELECT_COLOR
#define GTK_STOCK_SELECT_FONT
#define GTK_STOCK_SORT_ASCENDING
#define GTK_STOCK_SORT_DESCENDING
#define GTK_STOCK_SPELL_CHECK
#define GTK_STOCK_STOP
#define GTK_STOCK_STRIKETHROUGH
#define GTK_STOCK_UNDELETE
#define GTK_STOCK_UNDERLINE
#define GTK_STOCK_UNDO
#define GTK_STOCK_UNINDENT
#define GTK_STOCK_YES
#define GTK_STOCK_ZOOM_100
#define GTK_STOCK_ZOOM_FIT
#define GTK_STOCK_ZOOM_IN
#define GTK_STOCK_ZOOM_OUT
DescriptionStock items represent commonly-used menu or toolbar items such as "Open" or "Exit". Each stock item is identified by a stock ID; stock IDs are just strings, but macros such as GTK_STOCK_OPEN are provided to avoid typing mistakes in the strings. Applications can register their own stock items in addition to those built-in to GTK+. Each stock ID can be associated with a GtkStockItem, which contains the user-visible label, keyboard accelerator, and translation domain of the menu or toolbar item; and/or with an icon stored in a GtkIconFactory. See GtkIconFactory for more information on stock icons. The connection between a GtkStockItem and stock icons is purely conventional (by virtue of using the same stock ID); it's possible to register a stock item but no icon, and vice versa. Stock icons may have a RTL variant which gets used for right-to-left locales. DetailsGtkStockItemtypedef struct {
gchar *stock_id;
gchar *label;
GdkModifierType modifier;
guint keyval;
gchar *translation_domain;
} GtkStockItem;
gtk_stock_add ()void gtk_stock_add (const GtkStockItem *items, guint n_items);
Registers each of the stock items in
gtk_stock_add_static ()void gtk_stock_add_static (const GtkStockItem *items, guint n_items);
Same as
gtk_stock_item_copy ()GtkStockItem* gtk_stock_item_copy (const GtkStockItem *item); Copies a stock item, mostly useful for language bindings and not in applications.
gtk_stock_item_free ()void gtk_stock_item_free (GtkStockItem *item);
Frees a stock item allocated on the heap, such as one returned by
gtk_stock_list_ids ()GSList* gtk_stock_list_ids (void);
Retrieves a list of all known stock IDs added to a GtkIconFactory
or registered with
gtk_stock_lookup ()gboolean gtk_stock_lookup (const gchar *stock_id,
GtkStockItem *item);
Fills
gtk_stock_set_translate_func ()void gtk_stock_set_translate_func (const gchar *domain,
GtkTranslateFunc func,
gpointer data,
GDestroyNotify notify);
Sets a function to be used for translating the
If no function is registered for a translation domain,
Since 2.8 GTK_STOCK_COLOR_PICKER#define GTK_STOCK_COLOR_PICKER "gtk-color-picker"
The "Color Picker" item.
Since 2.2 GTK_STOCK_DIALOG_AUTHENTICATION#define GTK_STOCK_DIALOG_AUTHENTICATION
The "Authentication" item.
Since 2.4 GTK_STOCK_DIALOG_QUESTION#define GTK_STOCK_DIALOG_QUESTION "gtk-dialog-question"
The "Question" item.
GTK_STOCK_DND_MULTIPLE#define GTK_STOCK_DND_MULTIPLE "gtk-dnd-multiple"
The "Drag-And-Drop multiple" icon.
GTK_STOCK_FIND_AND_REPLACE#define GTK_STOCK_FIND_AND_REPLACE "gtk-find-and-replace"
The "Find and Replace" item.
GTK_STOCK_LEAVE_FULLSCREEN#define GTK_STOCK_LEAVE_FULLSCREEN "gtk-leave-fullscreen"
The "Leave Fullscreen" item.
Since 2.8 GTK_STOCK_MEDIA_FORWARD#define GTK_STOCK_MEDIA_FORWARD "gtk-media-forward"
The "Media Forward" item.
Since 2.6 GTK_STOCK_MEDIA_NEXT#define GTK_STOCK_MEDIA_NEXT "gtk-media-next"
The "Media Next" item.
Since 2.6 GTK_STOCK_MEDIA_PAUSE#define GTK_STOCK_MEDIA_PAUSE "gtk-media-pause"
The "Media Pause" item.
Since 2.6 GTK_STOCK_MEDIA_PLAY#define GTK_STOCK_MEDIA_PLAY "gtk-media-play"
The "Media Play" item.
Since 2.6 GTK_STOCK_MEDIA_PREVIOUS#define GTK_STOCK_MEDIA_PREVIOUS "gtk-media-previous"
The "Media Previous" item.
Since 2.6 GTK_STOCK_MEDIA_RECORD#define GTK_STOCK_MEDIA_RECORD "gtk-media-record"
The "Media Record" item.
Since 2.6 GTK_STOCK_MEDIA_REWIND#define GTK_STOCK_MEDIA_REWIND "gtk-media-rewind"
The "Media Rewind" item.
Since 2.6 GTK_STOCK_MISSING_IMAGE#define GTK_STOCK_MISSING_IMAGE "gtk-missing-image"
The "Missing image" icon.
GTK_STOCK_ORIENTATION_LANDSCAPE#define GTK_STOCK_ORIENTATION_LANDSCAPE "gtk-orientation-landscape"
The "Landscape Orientation" item.
Since 2.10 GTK_STOCK_ORIENTATION_PORTRAIT#define GTK_STOCK_ORIENTATION_PORTRAIT "gtk-orientation-portrait"
The "Portrait Orientation" item.
Since 2.10 GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE#define GTK_STOCK_ORIENTATION_REVERSE_LANDSCAPE "gtk-orientation-reverse-landscape"
The "Reverse Landscape Orientation" item.
Since 2.10 GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT#define GTK_STOCK_ORIENTATION_REVERSE_PORTRAIT "gtk-orientation-reverse-portrait"
The "Reverse Portrait Orientation" item.
Since 2.10 GTK_STOCK_PAGE_SETUP#define GTK_STOCK_PAGE_SETUP "gtk-page-setup"
The "Page Setup" item.
Since 2.14 GTK_STOCK_PRINT_ERROR#define GTK_STOCK_PRINT_ERROR "gtk-print-error"
The "Print Error" icon.
Since 2.14 GTK_STOCK_PRINT_PAUSED#define GTK_STOCK_PRINT_PAUSED "gtk-print-paused"
The "Print Paused" icon.
Since 2.14 GTK_STOCK_PRINT_PREVIEW#define GTK_STOCK_PRINT_PREVIEW "gtk-print-preview"
The "Print Preview" item.
GTK_STOCK_PRINT_REPORT#define GTK_STOCK_PRINT_REPORT "gtk-print-report"
The "Print Report" icon.
Since 2.14 GTK_STOCK_PRINT_WARNING#define GTK_STOCK_PRINT_WARNING "gtk-print-warning"
The "Print Warning" icon.
Since 2.14 GTK_STOCK_REVERT_TO_SAVED#define GTK_STOCK_REVERT_TO_SAVED "gtk-revert-to-saved"
The "Revert" item.
GTK_STOCK_SELECT_ALL#define GTK_STOCK_SELECT_ALL "gtk-select-all"
The "Select All" item.
Since 2.10 GTK_STOCK_SORT_ASCENDING#define GTK_STOCK_SORT_ASCENDING "gtk-sort-ascending"
The "Ascending" item.
GTK_STOCK_SORT_DESCENDING#define GTK_STOCK_SORT_DESCENDING "gtk-sort-descending"
The "Descending" item.
GTK_STOCK_STRIKETHROUGH#define GTK_STOCK_STRIKETHROUGH "gtk-strikethrough"
The "Strikethrough" item.
GTK_STOCK_UNINDENT#define GTK_STOCK_UNINDENT "gtk-unindent"
The "Unindent" item.
Since 2.4 | ||||||||||||||||||||||||||||||||||||||||