const_stockitems.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: const_stockitems.h
  3. // Purpose: stock item values enumerated
  4. // Author: wxWidgets team
  5. // Licence: wxWindows licence
  6. /////////////////////////////////////////////////////////////////////////////
  7. /**
  8. @page page_stockitems Stock Items
  9. The following is the list of the window IDs for which stock buttons and menu
  10. items are created.
  11. See the wxButton constructor and the wxMenuItem constructor for classes which
  12. automatically add stock bitmaps when using stock IDs.
  13. Also note that you can retrieve stock bitmaps using wxArtProvider.
  14. @beginDefList
  15. @row3col{<b>Stock ID</b>, <b>GTK icon</b>, <b>Stock label</b>}
  16. @stock{wxID_ABOUT,about,&About}
  17. @stock{wxID_ADD,add,Add}
  18. @stock{wxID_APPLY,apply,&Apply}
  19. @stock{wxID_BACKWARD,go-back-ltr,&Back}
  20. @stock{wxID_BOLD,bold,&Bold}
  21. @stock{wxID_BOTTOM,goto-bottom,&Bottom}
  22. @stock{wxID_CANCEL,cancel,&Cancel}
  23. @stock{wxID_CDROM,cdrom,&CD-Rom}
  24. @stock{wxID_CLEAR,clear,&Clear}
  25. @stock{wxID_CLOSE,close,&Close}
  26. @stock{wxID_CONVERT,convert,&Convert}
  27. @stock{wxID_COPY,copy,&Copy}
  28. @stock{wxID_CUT,cut,Cu&t}
  29. @stock{wxID_DELETE,delete,&Delete}
  30. @stock{wxID_DOWN,go-down,&Down}
  31. @stock{wxID_EDIT,edit,&Edit}
  32. @stock{wxID_EXECUTE,execute,&Execute}
  33. @stock{wxID_EXIT,quit,&Quit}
  34. @stock{wxID_FILE,file,&File}
  35. @stock{wxID_FIND,find,&Find}
  36. @stock{wxID_FIRST,goto-first-ltr,&First}
  37. @stock{wxID_FLOPPY,floppy,&Floppy}
  38. @stock{wxID_FORWARD,go-forward-ltr,&Forward}
  39. @stock{wxID_HARDDISK,harddisk,&Harddisk}
  40. @stock{wxID_HELP,help,&Help}
  41. @stock{wxID_HOME,home,&Home}
  42. @stock{wxID_INDENT,indent-ltr,Indent}
  43. @stock{wxID_INDEX,index,&Index}
  44. @stock{wxID_INFO,info,&Info}
  45. @stock{wxID_ITALIC,italic,&Italic}
  46. @stock{wxID_JUMP_TO,jump-to-ltr,&Jump to}
  47. @stock{wxID_JUSTIFY_CENTER,justify-center,Centered}
  48. @stock{wxID_JUSTIFY_FILL,justify-fill,Justified}
  49. @stock{wxID_JUSTIFY_LEFT,justify-left,Align Left}
  50. @stock{wxID_JUSTIFY_RIGHT,justify-right,Align Right}
  51. @stock{wxID_LAST,goto-last-ltr,&Last}
  52. @stock{wxID_NETWORK,network,&Network}
  53. @stock{wxID_NEW,new,&New}
  54. @stock{wxID_NO,no,&No}
  55. @stock{wxID_OK,ok,&OK}
  56. @stock{wxID_OPEN,open,&Open...}
  57. @stock{wxID_PASTE,paste,&Paste}
  58. @stock{wxID_PREFERENCES,preferences,&Preferences}
  59. @stock{wxID_PREVIEW,print-preview,Print previe&w}
  60. @stock{wxID_PRINT,print,&Print...}
  61. @stock{wxID_PROPERTIES,properties,&Properties}
  62. @stock{wxID_REDO,redo-ltr,&Redo}
  63. @stock{wxID_REFRESH,refresh,Refresh}
  64. @stock{wxID_REMOVE,remove,Remove}
  65. @stock{wxID_REPLACE,find-and-replace,Rep&lace}
  66. @stock{wxID_REVERT_TO_SAVED,revert-to-saved-ltr,Revert to Saved}
  67. @stock{wxID_SAVE,save,&Save}
  68. @stock{wxID_SAVEAS,save-as,Save &As...}
  69. @stock{wxID_SELECTALL,select-all,Select &All}
  70. @stock{wxID_SELECT_COLOR,select-color,&Color}
  71. @stock{wxID_SELECT_FONT,select-font,&Font}
  72. @stock{wxID_SORT_ASCENDING,sort-ascending,&Ascending}
  73. @stock{wxID_SORT_DESCENDING,sort-descending,&Descending}
  74. @stock{wxID_SPELL_CHECK,spell-check,&Spell Check}
  75. @stock{wxID_STOP,stop,&Stop}
  76. @stock{wxID_STRIKETHROUGH,strikethrough,&Strikethrough}
  77. @stock{wxID_TOP,goto-top,&Top}
  78. @stock{wxID_UNDELETE,undelete-ltr,Undelete}
  79. @stock{wxID_UNDERLINE,underline,&Underline}
  80. @stock{wxID_UNDO,undo-ltr,&Undo}
  81. @stock{wxID_UNINDENT,unindent-ltr,&Unindent}
  82. @stock{wxID_UP,go-up,&Up}
  83. @stock{wxID_YES,yes,&Yes}
  84. @stock{wxID_ZOOM_100,zoom-100,&Actual Size}
  85. @stock{wxID_ZOOM_FIT,zoom-fit,Zoom to &Fit}
  86. @stock{wxID_ZOOM_IN,zoom-in,Zoom &In}
  87. @stock{wxID_ZOOM_OUT,zoom-out,Zoom &Out}
  88. @endDefList
  89. Note that some of the IDs listed above also have a stock accelerator and an
  90. associated help string.
  91. */