git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54903 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			97 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        const_stockitems.h
 | |
| // Purpose:     stock item values enumerated
 | |
| // Author:      wxWidgets team
 | |
| // RCS-ID:      $Id$
 | |
| // Licence:     wxWindows license
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| 
 | |
| /**
 | |
| 
 | |
| @page page_stockitems Stock items
 | |
| 
 | |
| Window IDs for which stock buttons and menu items are created
 | |
| (see the wxButton constructor and the wxMenuItem constructor):
 | |
| 
 | |
| @beginDefList
 | |
| @itemdef{<b>Stock ID</b>, <b>Stock label</b>}
 | |
| @itemdef{wxID_ABOUT, "&About..."}
 | |
| @itemdef{wxID_ADD, "Add"}
 | |
| @itemdef{wxID_APPLY, "&Apply"}
 | |
| @itemdef{wxID_BACKWARD, "&Back"}
 | |
| @itemdef{wxID_BOLD, "&Bold"}
 | |
| @itemdef{wxID_BOTTOM, "&Bottom"}
 | |
| @itemdef{wxID_CANCEL, "&Cancel"}
 | |
| @itemdef{wxID_CDROM, "&CD-Rom"}
 | |
| @itemdef{wxID_CLEAR, "&Clear"}
 | |
| @itemdef{wxID_CLOSE, "&Close"}
 | |
| @itemdef{wxID_CONVERT, "&Convert"}
 | |
| @itemdef{wxID_COPY, "&Copy"}
 | |
| @itemdef{wxID_CUT, "Cu&t"}
 | |
| @itemdef{wxID_DELETE, "&Delete"}
 | |
| @itemdef{wxID_DOWN, "&Down"}
 | |
| @itemdef{wxID_EDIT, "&Edit"}
 | |
| @itemdef{wxID_EXECUTE, "&Execute"}
 | |
| @itemdef{wxID_EXIT, "&Quit"}
 | |
| @itemdef{wxID_FILE, "&File"}
 | |
| @itemdef{wxID_FIND, "&Find"}
 | |
| @itemdef{wxID_FIRST, "&First"}
 | |
| @itemdef{wxID_FLOPPY, "&Floppy"}
 | |
| @itemdef{wxID_FORWARD, "&Forward"}
 | |
| @itemdef{wxID_HARDDISK, "&Harddisk"}
 | |
| @itemdef{wxID_HELP, "&Help"}
 | |
| @itemdef{wxID_HOME, "&Home"}
 | |
| @itemdef{wxID_INDENT, "Indent"}
 | |
| @itemdef{wxID_INDEX, "&Index"}
 | |
| @itemdef{wxID_INFO, "&Info"}
 | |
| @itemdef{wxID_ITALIC, "&Italic"}
 | |
| @itemdef{wxID_JUMP_TO, "&Jump to"}
 | |
| @itemdef{wxID_JUSTIFY_CENTER, "Centered"}
 | |
| @itemdef{wxID_JUSTIFY_FILL, "Justified"}
 | |
| @itemdef{wxID_JUSTIFY_LEFT, "Align Left"}
 | |
| @itemdef{wxID_JUSTIFY_RIGHT, "Align Right"}
 | |
| @itemdef{wxID_LAST, "&Last"}
 | |
| @itemdef{wxID_NETWORK, "&Network"}
 | |
| @itemdef{wxID_NEW, "&New"}
 | |
| @itemdef{wxID_NO, "&No"}
 | |
| @itemdef{wxID_OK, "&OK"}
 | |
| @itemdef{wxID_OPEN, "&Open..."}
 | |
| @itemdef{wxID_PASTE, "&Paste"}
 | |
| @itemdef{wxID_PREFERENCES, "&Preferences"}
 | |
| @itemdef{wxID_PREVIEW, "Print previe&w"}
 | |
| @itemdef{wxID_PRINT, "&Print..."}
 | |
| @itemdef{wxID_PROPERTIES, "&Properties"}
 | |
| @itemdef{wxID_REDO, "&Redo"}
 | |
| @itemdef{wxID_REFRESH, "Refresh"}
 | |
| @itemdef{wxID_REMOVE, "Remove"}
 | |
| @itemdef{wxID_REPLACE, "Rep&lace"}
 | |
| @itemdef{wxID_REVERT_TO_SAVED, "Revert to Saved"}
 | |
| @itemdef{wxID_SAVE, "&Save"}
 | |
| @itemdef{wxID_SAVEAS, "Save &As..."}
 | |
| @itemdef{wxID_SELECTALL, "Select &All"}
 | |
| @itemdef{wxID_SELECT_COLOR, "&Color"}
 | |
| @itemdef{wxID_SELECT_FONT, "&Font"}
 | |
| @itemdef{wxID_SORT_ASCENDING, "&Ascending"}
 | |
| @itemdef{wxID_SORT_DESCENDING, "&Descending"}
 | |
| @itemdef{wxID_SPELL_CHECK, "&Spell Check"}
 | |
| @itemdef{wxID_STOP, "&Stop"}
 | |
| @itemdef{wxID_STRIKETHROUGH, "&Strikethrough"}
 | |
| @itemdef{wxID_TOP, "&Top"}
 | |
| @itemdef{wxID_UNDELETE, "Undelete"}
 | |
| @itemdef{wxID_UNDERLINE, "&Underline"}
 | |
| @itemdef{wxID_UNDO, "&Undo"}
 | |
| @itemdef{wxID_UNINDENT, "&Unindent"}
 | |
| @itemdef{wxID_UP, "&Up"}
 | |
| @itemdef{wxID_YES, "&Yes"}
 | |
| @itemdef{wxID_ZOOM_100, "&Actual Size"}
 | |
| @itemdef{wxID_ZOOM_FIT, "Zoom to &Fit"}
 | |
| @itemdef{wxID_ZOOM_IN, "Zoom &In"}
 | |
| @itemdef{wxID_ZOOM_OUT, "Zoom &Out"}
 | |
| @endDefList
 | |
| 
 | |
| Note that some of the IDs listed above have also a stock accelerator
 | |
| and an help string associated.
 | |
| 
 | |
| */
 |