1/*
2 * Copyright (c) 2004-2007 Apple Inc. All rights reserved.
3 *
4 * IMPORTANT:  This Apple software is supplied to you by Apple Inc. ("Apple") in
5 * consideration of your agreement to the following terms, and your use, installation,
6 * modification or redistribution of this Apple software constitutes acceptance of these
7 * terms.  If you do not agree with these terms, please do not use, install, modify or
8 * redistribute this Apple software.
9 *
10 * In consideration of your agreement to abide by the following terms, and subject to these
11 * terms, Apple grants you a personal, non exclusive license, under Apple�s copyrights in this
12 * original Apple software (the �Apple Software�), to use, reproduce, modify and redistribute
13 * the Apple Software, with or without modifications, in source and/or binary forms; provided
14 * that if you redistribute the Apple Software in its entirety and without modifications, you
15 * must retain this notice and the following text and disclaimers in all such redistributions
16 * of the Apple Software.  Neither the name, trademarks, service marks or logos of Apple
17 * Computer, Inc. may be used to endorse or promote products derived from the Apple Software
18 * without specific prior written permission from Apple. Except as expressly stated in this
19 * notice, no other rights or licenses, express or implied, are granted by Apple herein,
20 * including but not limited to any patent rights that may be infringed by your derivative
21 * works or by other works in which the Apple Software may be incorporated.
22 *
23 * The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO WARRANTIES,
24 * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-
25 * INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE
26 * SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
27 *
28 * IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
30 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE,
31 * REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND
32 * WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR
33 * OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */
35
36
37// NSUserDefaults strings
38#define kShowTargetIDString					@"showTargetID"
39#define kShowDescriptionString				@"showDescription"
40#define kShowRevisionString					@"showRevision"
41#define kShowFeaturesString					@"showFeatures"
42#define kShowPDTString						@"showPDT"
43
44// NSUserDefaults key path strings
45#define kShowTargetIDKeyPath				@"values.showTargetID"
46#define kShowDescriptionKeyPath				@"values.showDescription"
47#define kShowRevisionKeyPath				@"values.showRevision"
48#define kShowFeaturesKeyPath				@"values.showFeatures"
49#define kShowPDTKeyPath						@"values.showPDT"
50
51// Table column identifier strings
52#define kTableColumnIDString				@"id"
53#define kTableColumnDescriptionString		@"description"
54#define kTableColumnRevisionString			@"revision"
55#define kTableColumnFeaturesString			@"features"
56#define kTableColumnPDTString				@"pdt"
57
58
59// SCSIInitiator key path strings
60#define kInitiatorsKeyPath					@"initiators"
61#define kDevicesKeyPath						@"devices"
62
63// SCSIDevice key path strings
64#define kDeviceIdentifierKeyPath			@"deviceIdentifier"
65#define kDeviceTitleKeyPath					@"title"
66#define kDeviceRevisionKeyPath				@"revision"
67#define kDeviceFeaturesKeyPath				@"features"
68#define kDevicePDTKeyPath					@"peripheralDeviceType"
69
70// Localized resource strings
71#define kNoControllersFoundTitle			@"NoControllersFoundTitle"
72#define kNoControllersFoundText				@"NoControllersFoundText"
73
74#define kHideInfoMenuItemString				@"HideInfoMenuItemTitle"
75#define kGetInfoMenuItemString				@"GetInfoMenuItemTitle"
76#define kHideInfoToolbarItemString			@"HideInfoToolbarItemTitle"
77#define kHideInfoToolbarItemToolTipString	@"HideInfoToolbarItemToolTip"
78#define kGetInfoToolbarItemString			@"GetInfoToolbarItemTitle"
79#define kGetInfoToolbarItemToolTipString	@"GetInfoToolbarItemToolTip"
80#define kShowPrefsToolbarItemString			@"ShowPrefsToolbarItemTitle"
81#define kShowPrefsToolbarItemToolTipString	@"ShowPrefsToolbarItemToolTip"
82
83#define kIDString							@"ID"
84#define kDescriptionString					@"Description"
85#define kRevisionString						@"Revision"
86#define kFeaturesString						@"Features"
87#define kPDTString							@"PDT"
88
89#define kSCSIParallelFeatureSyncString		@"Sync"
90#define kSCSIParallelFeatureWideString		@"Wide"
91#define kSCSIParallelFeatureQASString		@"QAS"
92#define kSCSIParallelFeatureDTString		@"DT"
93#define kSCSIParallelFeatureIUString		@"IU"
94
95// Localized image resource strings
96#define kInfoImageString					@"info"
97#define kPrefsImageString					@"prefs"
98#define kHardDiskImageString				@"hd"
99#define kNothingImageString					@"nothing"
100#define kPCICardImageString					@"pcicard"
101#define kPCCardImageString					@"pccard"