mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-17 06:55:03 -05:00
Added new settings to AccountSettings
This commit is contained in:
parent
3967654a3e
commit
f08b1ef739
@ -27,6 +27,7 @@ public class AccountSettings {
|
|||||||
s.put("chipColor", new ColorSetting(0xFF0000FF));
|
s.put("chipColor", new ColorSetting(0xFF0000FF));
|
||||||
s.put("cryptoApp", new StringSetting(Apg.NAME));
|
s.put("cryptoApp", new StringSetting(Apg.NAME));
|
||||||
s.put("cryptoAutoSignature", new BooleanSetting(false));
|
s.put("cryptoAutoSignature", new BooleanSetting(false));
|
||||||
|
s.put("defaultQuotedTextShown", new BooleanSetting(Account.DEFAULT_QUOTED_TEXT_SHOWN));
|
||||||
s.put("deletePolicy", new DeletePolicySetting(Account.DELETE_POLICY_NEVER));
|
s.put("deletePolicy", new DeletePolicySetting(Account.DELETE_POLICY_NEVER));
|
||||||
s.put("displayCount", new IntegerResourceSetting(K9.DEFAULT_VISIBLE_LIMIT,
|
s.put("displayCount", new IntegerResourceSetting(K9.DEFAULT_VISIBLE_LIMIT,
|
||||||
R.array.account_settings_display_count_values));
|
R.array.account_settings_display_count_values));
|
||||||
@ -43,6 +44,7 @@ public class AccountSettings {
|
|||||||
s.put("hideMoveButtonsEnum", new EnumSetting(ScrollButtons.class, ScrollButtons.NEVER));
|
s.put("hideMoveButtonsEnum", new EnumSetting(ScrollButtons.class, ScrollButtons.NEVER));
|
||||||
s.put("idleRefreshMinutes", new IntegerResourceSetting(24,
|
s.put("idleRefreshMinutes", new IntegerResourceSetting(24,
|
||||||
R.array.idle_refresh_period_values));
|
R.array.idle_refresh_period_values));
|
||||||
|
s.put("inboxFolderName", new StringSetting("INBOX"));
|
||||||
s.put("led", new BooleanSetting(true));
|
s.put("led", new BooleanSetting(true));
|
||||||
s.put("ledColor", new ColorSetting(0xFF0000FF));
|
s.put("ledColor", new ColorSetting(0xFF0000FF));
|
||||||
s.put("localStorageProvider", new StorageProviderSetting());
|
s.put("localStorageProvider", new StorageProviderSetting());
|
||||||
@ -53,6 +55,7 @@ public class AccountSettings {
|
|||||||
R.array.account_settings_message_age_values));
|
R.array.account_settings_message_age_values));
|
||||||
s.put("messageFormat",
|
s.put("messageFormat",
|
||||||
new EnumSetting(Account.MessageFormat.class, Account.DEFAULT_MESSAGE_FORMAT));
|
new EnumSetting(Account.MessageFormat.class, Account.DEFAULT_MESSAGE_FORMAT));
|
||||||
|
s.put("messageReadReceipt", new BooleanSetting(Account.DEFAULT_MESSAGE_READ_RECEIPT));
|
||||||
s.put("notificationUnreadCount", new BooleanSetting(true));
|
s.put("notificationUnreadCount", new BooleanSetting(true));
|
||||||
s.put("notifyMailCheck", new BooleanSetting(false));
|
s.put("notifyMailCheck", new BooleanSetting(false));
|
||||||
s.put("notifyNewMail", new BooleanSetting(false));
|
s.put("notifyNewMail", new BooleanSetting(false));
|
||||||
|
Loading…
Reference in New Issue
Block a user