source: releases/ICeCoffEE/1.4.4b1/ICeCoffEE/ICeCoffEEShared.m@ 336

Last change on this file since 336 was 142, checked in by Nicholas Riley, 21 years ago

ICeCoffEE 1.4a1

File size: 2.1 KB
Line 
1/*
2 * ICeCoffEEShared.m
3 * ICeCoffEE APE
4 *
5 * Created by Nicholas Riley on Wed Jan 22 2003.
6 * Copyright (c) 2003 Nicholas Riley. All rights reserved.
7 *
8 */
9
10#include "ICeCoffEEShared.h"
11#import <Foundation/NSString.h>
12
13const OSType kICCFCreator = 'ICCF';
14const CFStringRef kICBundleIdentifier = (CFStringRef)@"net.sabi.ICeCoffEE";
15
16// ICeCoffEE 1.1/1.2 CFPreferences
17const CFStringRef kIC12PrefExcluded = (CFStringRef)@"Excluded Applications"; // CFArray of CFDictionaries
18const CFStringRef kIC12PrefExcludedAppSpecifierBundleID = (CFStringRef)@"CFBundleID"; // CFDictionary key
19
20// CFPreferences
21const CFStringRef kICLastLoadedVersion = (CFStringRef)@"ICLastLoadedVersion"; // CFNumber (bool)
22const CFStringRef kICCommandClickEnabled = (CFStringRef)@"ICCommandClickEnabled"; // CFNumber (bool)
23const CFStringRef kICTextBlinkEnabled = (CFStringRef)@"ICTextBlinkEnabled"; // CFNumber (bool)
24const CFStringRef kICTextBlinkCount = (CFStringRef)@"ICTextBlinkCount"; // CFNumber (int)
25const CFStringRef kICServicesInContextualMenu = (CFStringRef)@"ICServicesInContextualMenu"; // CFNumber (bool)
26const CFStringRef kICServicesInMenuBar = (CFStringRef)@"ICServicesInMenuBar"; // CFNumber (bool)
27const CFStringRef kICServiceOptions = (CFStringRef)@"ICServiceOptions"; // CFDictionary
28const CFStringRef kICTerminalRequireOptionForSelfDrag = (CFStringRef)@"ICTerminalRequireOptionForSelfDrag"; // CFNumber (Boolean)
29const CFStringRef kICErrorSoundEnabled = (CFStringRef)@"ICErrorSoundEnabled"; // CFNumber (bool)
30const CFStringRef kICErrorDialogEnabled = (CFStringRef)@"ICErrorDialogEnabled"; // CFNumber (bool)
31
32// kICServiceOptions dictionary keys
33const CFStringRef kICServiceSubmenu = (CFStringRef)@"ICServiceSubmenu"; // CFDictionary
34const CFStringRef kICServiceHidden = (CFStringRef)@"ICServiceHidden"; // CFNumber (Boolean)
35const CFStringRef kICServiceShortcut = (CFStringRef)@"ICServiceShortcut"; // reserved for future use
36
37// APEBundleMessages
38const CFStringRef kICPreferencesChanged = (CFStringRef)@"ICPreferencesChanged";
39
40// UI constants
41const int kICHysteresisPixels = 4;
42const int kICBlinkDelayUsecs = 60000;
Note: See TracBrowser for help on using the repository browser.