-
Notifications
You must be signed in to change notification settings - Fork 8
/
WebmailerShared.h
50 lines (37 loc) · 2.08 KB
/
WebmailerShared.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#define WebmailerAppDomain ComBelkadanWebmailer_AppDomain
/*! The domain "com.belkadan.Webmailer", used for all Webmailer defaults. */
extern NSString * const WebmailerAppDomain;
#define WebmailerMailtoScheme ComBelkadanWebmailer_MailtoScheme
/*! The URL scheme "mailto". */
extern NSString * const WebmailerMailtoScheme;
#define WebmailerConfigurationsKey ComBelkadanWebmailer_ConfigurationsKey
/*! The key used to retrieve the list of configurations from the defaults. */
extern NSString * const WebmailerConfigurationsKey;
#define WebmailerCurrentDestinationKey ComBelkadanWebmailer_CurrentDestinationKey
/*! The key used to retrieve the current destination from the defaults. */
extern NSString * const WebmailerCurrentDestinationKey;
#define WebmailerBrowserChoosingModeKey ComBelkadanWebmailer_BrowserChoosingModeKey
/*! The key used to retrieve the current browser choosing mode. */
extern NSString * const WebmailerBrowserChoosingModeKey;
enum {
BrowserChoiceBestGuess = 0,
BrowserChoiceSystemDefault,
BrowserChoiceSpecific,
BrowserChoiceLast = BrowserChoiceSpecific
};
typedef NSUInteger BrowserChoice;
#define WebmailerChosenBrowserIDKey ComBelkadanWebmailer_ChosenBrowserIDKey
/*! The key used to retrieve the current browser choosing mode. */
extern NSString * const WebmailerChosenBrowserIDKey;
#define WebmailerDisableAppChoosingKey ComBelkadanWebmailer_DisableAppChoosingKey
/*! The old key for whether or not the user wants smart app choosing. */
extern NSString * const WebmailerDisableAppChoosingKey;
#define WebmailerDestinationIsActiveKey ComBelkadanWebmailer_DestinationIsActiveKey
/*! The key in a destination dictionary for whether or not the destination is active. */
extern NSString * const WebmailerDestinationIsActiveKey;
#define WebmailerDestinationURLKey ComBelkadanWebmailer_DestinationURLKey
/*! The key in a destination dictionary for its URL. */
extern NSString * const WebmailerDestinationURLKey;
#define WebmailerDestinationNameKey ComBelkadanWebmailer_DestinationNameKey
/*! The key in a destination dictionary for its name. */
extern NSString * const WebmailerDestinationNameKey;