3a6c62a965
In newer doxygen versions, the label was being used as the caption for the image and not appearing in the 3rd column. The only way to really fix this seems to be to make the image the last column so that it doesn't eat the remaining text (there is no way to escape it apparently).
101 lines
3.5 KiB
C
101 lines
3.5 KiB
C
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: const_stockitems.h
|
|
// Purpose: stock item values enumerated
|
|
// Author: wxWidgets team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
/**
|
|
|
|
@page page_stockitems Stock Items
|
|
|
|
The following is the list of the window IDs for which stock buttons and menu
|
|
items are created.
|
|
|
|
See the wxButton constructor and the wxMenuItem constructor for classes which
|
|
automatically add stock bitmaps when using stock IDs.
|
|
|
|
Also note that you can retrieve stock bitmaps using wxArtProvider.
|
|
|
|
@beginDefList
|
|
@row3col{<b>Stock ID</b>, <b>Stock label</b>, <b>GTK icon</b>}
|
|
@stock{wxID_ABOUT,&About,about}
|
|
@stock{wxID_ADD,Add,add}
|
|
@stock{wxID_APPLY,&Apply,apply}
|
|
@stock{wxID_BACKWARD,&Back,go-back-ltr}
|
|
@stock{wxID_BOLD,&Bold,bold}
|
|
@stock{wxID_BOTTOM,&Bottom,goto-bottom}
|
|
@stock{wxID_CANCEL,&Cancel,cancel}
|
|
@stock{wxID_CDROM,&CD-ROM,cdrom}
|
|
@stock{wxID_CLEAR,&Clear,clear}
|
|
@stock{wxID_CLOSE,&Close,close}
|
|
@stock{wxID_CONVERT,&Convert,convert}
|
|
@stock{wxID_COPY,&Copy,copy}
|
|
@stock{wxID_CUT,Cu&t,cut}
|
|
@stock{wxID_DELETE,&Delete,delete}
|
|
@stock{wxID_DOWN,&Down,go-down}
|
|
@stock{wxID_EDIT,&Edit,edit}
|
|
@stock{wxID_EXECUTE,&Execute,execute}
|
|
@stock{wxID_EXIT,&Quit,quit}
|
|
@stock{wxID_FILE,&File,file}
|
|
@stock{wxID_FIND,&Find...,find}
|
|
@stock{wxID_FIRST,&First,goto-first-ltr}
|
|
@stock{wxID_FLOPPY,&Floppy,floppy}
|
|
@stock{wxID_FORWARD,&Forward,go-forward-ltr}
|
|
@stock{wxID_HARDDISK,&Harddisk,harddisk}
|
|
@stock{wxID_HELP,&Help,help}
|
|
@stock{wxID_HOME,&Home,home}
|
|
@stock{wxID_INDENT,Indent,indent-ltr}
|
|
@stock{wxID_INDEX,&Index,index}
|
|
@stock{wxID_INFO,&Info,info}
|
|
@stock{wxID_ITALIC,&Italic,italic}
|
|
@stock{wxID_JUMP_TO,&Jump to,jump-to-ltr}
|
|
@stock{wxID_JUSTIFY_CENTER,Centered,justify-center}
|
|
@stock{wxID_JUSTIFY_FILL,Justified,justify-fill}
|
|
@stock{wxID_JUSTIFY_LEFT,Align Left,justify-left}
|
|
@stock{wxID_JUSTIFY_RIGHT,Align Right,justify-right}
|
|
@stock{wxID_LAST,&Last,goto-last-ltr}
|
|
@stock{wxID_NETWORK,&Network,network}
|
|
@stock{wxID_NEW,&New,new}
|
|
@stock{wxID_NO,&No,no}
|
|
@stock{wxID_OK,&OK,ok}
|
|
@stock{wxID_OPEN,&Open...,open}
|
|
@stock{wxID_PASTE,&Paste,paste}
|
|
@stock{wxID_PREFERENCES,&Preferences,preferences}
|
|
@stock{wxID_PREVIEW,Print previe&w,print-preview}
|
|
@stock{wxID_PRINT,&Print...,print}
|
|
@stock{wxID_PROPERTIES,&Properties,properties}
|
|
@stock{wxID_REDO,&Redo,redo-ltr}
|
|
@stock{wxID_REFRESH,Refresh,refresh}
|
|
@stock{wxID_REMOVE,Remove,remove}
|
|
@stock{wxID_REPLACE,Rep&lace...,find-and-replace}
|
|
@stock{wxID_REVERT_TO_SAVED,Revert to Saved,revert-to-saved-ltr}
|
|
@stock{wxID_SAVE,&Save,save}
|
|
@stock{wxID_SAVEAS,Save &As...,save-as}
|
|
@stock{wxID_SELECTALL,Select &All,select-all}
|
|
@stock{wxID_SELECT_COLOR,&Color,select-color}
|
|
@stock{wxID_SELECT_FONT,&Font,select-font}
|
|
@stock{wxID_SORT_ASCENDING,&Ascending,sort-ascending}
|
|
@stock{wxID_SORT_DESCENDING,&Descending,sort-descending}
|
|
@stock{wxID_SPELL_CHECK,&Spell Check,spell-check}
|
|
@stock{wxID_STOP,&Stop,stop}
|
|
@stock{wxID_STRIKETHROUGH,&Strikethrough,strikethrough}
|
|
@stock{wxID_TOP,&Top,goto-top}
|
|
@stock{wxID_UNDELETE,Undelete,undelete-ltr}
|
|
@stock{wxID_UNDERLINE,&Underline,underline}
|
|
@stock{wxID_UNDO,&Undo,undo-ltr}
|
|
@stock{wxID_UNINDENT,&Unindent,unindent-ltr}
|
|
@stock{wxID_UP,&Up,go-up}
|
|
@stock{wxID_YES,&Yes,yes}
|
|
@stock{wxID_ZOOM_100,&Actual Size,zoom-100}
|
|
@stock{wxID_ZOOM_FIT,Zoom to &Fit,zoom-fit}
|
|
@stock{wxID_ZOOM_IN,Zoom &In,zoom-in}
|
|
@stock{wxID_ZOOM_OUT,Zoom &Out,zoom-out}
|
|
@endDefList
|
|
|
|
Note that some of the IDs listed above also have a stock accelerator and an
|
|
associated help string.
|
|
|
|
*/
|