mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-20 06:03:20 +00:00
HTML Composing, see changelog
Monotone-Parent: b895c283a3da52c67fd91339f704dc8cd49b743f Monotone-Revision: 5f0e6bd5b6298ffdd908398135216841ba3b6909 Monotone-Author: crobert@inverse.ca Monotone-Date: 2009-06-23T17:53:18 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -584,6 +584,27 @@ static BOOL defaultShowSubscribedFoldersOnly = NO;
|
||||
return [userDefaults stringForKey: @"SignaturePlacement"];
|
||||
}
|
||||
|
||||
- (NSArray *) composeMessagesType
|
||||
{
|
||||
return [NSArray arrayWithObjects: @"text", @"html", nil];
|
||||
}
|
||||
|
||||
- (NSString *) itemComposeMessagesText
|
||||
{
|
||||
return [self labelForKey: [NSString stringWithFormat: @"composemessagestype_%@", item]];
|
||||
}
|
||||
|
||||
- (NSString *) userComposeMessagesType
|
||||
{
|
||||
return [userDefaults stringForKey: @"ComposeMessagesType"];
|
||||
}
|
||||
|
||||
- (void) setUserComposeMessagesType: (NSString *) newType
|
||||
{
|
||||
[userDefaults setObject: newType forKey: @"ComposeMessagesType"];
|
||||
}
|
||||
|
||||
|
||||
- (void) setUserSignaturePlacement: (NSString *) newSignaturePlacement
|
||||
{
|
||||
[userDefaults setObject: newSignaturePlacement forKey: @"SignaturePlacement"];
|
||||
|
||||
Reference in New Issue
Block a user