a7a306d1a6
Marius Middelthon - Thanks! * Sorted vector icons a bit more like original bitmap icons. * Renamed BeBox icon to Root icon. * Commented out some dead code which caused a warning in TrackerInitialState.cpp git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24596 a95241bf-73f2-0310-859d-f6bbb57e9c96
107 lines
3.4 KiB
C
107 lines
3.4 KiB
C
/*
|
|
Open Tracker License
|
|
|
|
Terms and Conditions
|
|
|
|
Copyright (c) 1991-2000, Be Incorporated. All rights reserved.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
the Software without restriction, including without limitation the rights to
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
of the Software, and to permit persons to whom the Software is furnished to do
|
|
so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice applies to all licensees
|
|
and shall be included in all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF TITLE, MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
BE INCORPORATED BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
|
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
Except as contained in this notice, the name of Be Incorporated shall not be
|
|
used in advertising or otherwise to promote the sale, use or other dealings in
|
|
this Software without prior written authorization from Be Incorporated.
|
|
|
|
Tracker(TM), Be(R), BeOS(R), and BeIA(TM) are trademarks or registered trademarks
|
|
of Be Incorporated in the United States and other countries. Other brand product
|
|
names are registered trademarks or trademarks of their respective holders.
|
|
All rights reserved.
|
|
*/
|
|
|
|
enum {
|
|
R_AppIcon = 1000,
|
|
R_FileIcon = 1001,
|
|
R_TrashIcon = 1003,
|
|
R_TrashFullIcon = 1004,
|
|
R_PrinterIcon = 1007,
|
|
R_FloppyIcon = 1011,
|
|
R_CDIcon = 1013,
|
|
R_RootIcon = 1014,
|
|
R_BookmarkIcon = 1015,
|
|
R_PersonIcon = 1016,
|
|
R_BrokenLinkIcon = 1017,
|
|
R_DeskIcon = 1018,
|
|
R_HomeDirIcon = 1019,
|
|
R_BeosFolderIcon = 1020,
|
|
R_BootVolumeIcon = 1021,
|
|
R_FontDirIcon = 1022,
|
|
R_AppsDirIcon = 1023,
|
|
R_PrefsDirIcon = 1024,
|
|
R_MailDirIcon = 1025,
|
|
R_QueryDirIcon = 1026,
|
|
R_SpoolFileIcon = 1027,
|
|
R_GenericPrinterIcon = 1028,
|
|
R_DevelopDirIcon = 1029,
|
|
R_DownloadDirIcon = 1030,
|
|
R_PersonDirIcon = 1031,
|
|
R_UtilDirIcon = 1032,
|
|
R_ConfigDirIcon = 1033,
|
|
R_MICN_AppIcon = 1000,
|
|
R_MICN_FileIcon = 1001,
|
|
R_MICN_TrashIcon = 1003,
|
|
R_MICN_TrashFullIcon = 1004,
|
|
R_MICN_PrinterIcon = 1007,
|
|
R_MICN_FloppyIcon = 1011,
|
|
R_MICN_CDIcon = 1013,
|
|
R_MICN_BeBoxIcon = 1014,
|
|
R_MICN_BookmarkIcon = 1015,
|
|
R_MICN_PersonIcon = 1016,
|
|
R_MICN_BrokenLinkIcon = 1017,
|
|
R_MICN_DeskIcon = 1018,
|
|
R_MICN_HomeDirIcon = 1019,
|
|
R_MICN_BeosFolderIcon = 1020,
|
|
R_MICN_BootVolumeIcon = 1021,
|
|
R_MICN_FontDirIcon = 1022,
|
|
R_MICN_AppsDirIcon = 1023,
|
|
R_MICN_PrefsDirIcon = 1024,
|
|
R_MICN_MailDirIcon = 1025,
|
|
R_MICN_QueryDirIcon = 1026,
|
|
R_MICN_SpoolFileIcon = 1027,
|
|
R_MICN_GenericPrinterIcon = 1028,
|
|
R_MICN_DevelopDirIcon = 1029,
|
|
R_MICN_DownloadDirIcon = 1030,
|
|
R_MICN_PersonDirIcon = 1031,
|
|
R_MICN_UtilDirIcon = 1032,
|
|
R_MICN_ConfigDirIcon = 1033,
|
|
R_MSGG_RedBarberPoleBits = 1037,
|
|
R_BarberPoleBitmap = 1038,
|
|
R_MoveStatusBitmap = 1039,
|
|
R_CopyStatusBitmap = 1040,
|
|
R_TrashStatusBitmap = 1041,
|
|
R_ResBackNavActive = 1042,
|
|
R_ResBackNavInactive = 1043,
|
|
R_ResForwNavActive = 1044,
|
|
R_ResForwNavInactive = 1045,
|
|
R_ResUpNavActive = 1046,
|
|
R_ResUpNavInactive = 1047,
|
|
R_ResBackNavActiveSel = 1048,
|
|
R_ResForwNavActiveSel = 1049,
|
|
R_ResUpNavActiveSel = 1050,
|
|
R_ShareIcon = 1051,
|
|
R_MICN_ShareIcon = 1051
|
|
};
|