Line | |
---|
1 | /* |
---|
2 | * ICeCoffEEShared.h |
---|
3 | * ICeCoffEE APE |
---|
4 | * |
---|
5 | * Created by Nicholas Riley on Mon Jan 20 2003. |
---|
6 | * Copyright (c) 2003 Nicholas Riley. All rights reserved. |
---|
7 | * |
---|
8 | */ |
---|
9 | |
---|
10 | #ifndef _H_ICeCoffEEShared |
---|
11 | #define _H_ICeCoffEEShared |
---|
12 | |
---|
13 | #include <CoreFoundation/CoreFoundation.h> |
---|
14 | |
---|
15 | #define ICCF_DEBUG 0 |
---|
16 | |
---|
17 | #if ICCF_DEBUG |
---|
18 | #define ICLog NSLog |
---|
19 | #define ICapeprintf apeprintf |
---|
20 | #else |
---|
21 | #define ICLog (void) |
---|
22 | #define ICapeprintf (void) |
---|
23 | #endif |
---|
24 | |
---|
25 | extern const OSType kICCFCreator; |
---|
26 | |
---|
27 | extern const CFStringRef kICBundleIdentifier; |
---|
28 | |
---|
29 | // ICeCoffEE 1.1/1.2 CFPreferences |
---|
30 | extern const CFStringRef kIC12PrefExcluded; |
---|
31 | extern const CFStringRef kIC12PrefExcludedAppSpecifierBundleID; |
---|
32 | |
---|
33 | // CFPreferences |
---|
34 | extern const CFStringRef kICCommandClickEnabled; // CFNumber (Boolean) |
---|
35 | extern const CFStringRef kICTextBlinkEnabled; // CFNumber (Boolean) |
---|
36 | extern const CFStringRef kICTextBlinkCount; // CFNumber (int) |
---|
37 | extern const CFStringRef kICServicesInContextualMenu; // CFNumber (Boolean) |
---|
38 | extern const CFStringRef kICServicesInMenuBar; // CFNumber (Boolean) |
---|
39 | extern const CFStringRef kICErrorSoundEnabled; // CFNumber (Boolean) |
---|
40 | extern const CFStringRef kICErrorDialogEnabled; // CFNumber (Boolean) |
---|
41 | |
---|
42 | // APEBundleMessages |
---|
43 | extern const CFStringRef kICPreferencesChanged; |
---|
44 | |
---|
45 | // UI constants |
---|
46 | extern const int kICHysteresisPixels; |
---|
47 | extern const int kICBlinkDelayUsecs; |
---|
48 | |
---|
49 | #endif /* _H_ICeCoffEEShared */ |
---|
Note: See
TracBrowser
for help on using the repository browser.