!TOOLBARSTD.DEF [100] - Windows standard toolbar symbols (built-in images) !-------------------.-------------------.-------------------.-------------------. !EDIT HISTORY ! VEDIT = 100 ! Note: history reformatted 9-Feb-17 ! [100] 18-Jul-18 / jdm / Created !-------------------.-------------------.-------------------.-------------------. !Notes: !Contains symbol references needed for creating toolbars using Windows !built-in toolbar images. Not needed if you are supplying your own images. !A single toolbar can contain either one set of these built-in images, !-------------------.-------------------.-------------------.-------------------. ++ifndef IDB_STD_SMALL_COLOR ! IDs for built-in collections of images ! May be used in place of the Toolbarattrib imgdir= ! ex: ctext$ = "@imgdir="+IDB_STD_SMALL_COLOR+"~imgsiz=16,16,16~" ... ! note: only one IDB group may be used for a toolbar define IDB_STD_SMALL_COLOR = 0 define IDB_STD_LARGE_COLOR = 1 define IDB_VIEW_SMALL_COLOR = 4 define IDB_VIEW_LARGE_COLOR = 5 define IDB_HIST_SMALL_COLOR = 8 define IDB_HIST_LARGE_COLOR = 9 ! IDs for individual images associated with specific groups ! IDB_STD_xxxxx_COLOR images... define STD_CUT = 0 define STD_COPY = 1 define STD_PASTE = 2 define STD_UNDO = 3 define STD_REDO = 4 define STD_DELETE = 5 define STD_FILENEW = 6 define STD_FILEOPEN = 7 define STD_FILESAVE = 8 define STD_PRINTPRE = 9 define STD_PROPERTIES = 10 define STD_HELP = 11 define STD_FIND = 12 define STD_REPLACE = 13 define STD_PRINT = 14 ! IDB_VIEW_xxxxx_COLOR images... define VIEW_LARGEICONS = 0 define VIEW_SMALLICONS = 1 define VIEW_LIST = 2 define VIEW_DETAILS = 3 define VIEW_SORTNAME = 4 define VIEW_SORTSIZE = 5 define VIEW_SORTDATE = 6 define VIEW_SORTTYPE = 7 define VIEW_PARENTFOLDER = 8 define VIEW_NETCONNECT = 9 define VIEW_NETDISCONNECT = 10 define VIEW_NEWFOLDER = 11 define VIEW_VIEWMENU = 12 ! IDB_HIST_xxxxx_COLOR images... define HIST_BACK = 0 define HIST_FORWARD = 1 define HIST_FAVORITES = 2 define HIST_ADDTOFAVORITES = 3 define HIST_VIEWTREE = 4 ++endif