blob: ed7eca9d557729f7c2b577fa001b405282c63a51 [file] [log] [blame]
Alexandre Lisionc65310c2015-04-23 16:44:23 -04001/*
Alexandre Lision9fe374b2016-01-06 10:17:31 -05002 * Copyright (C) 2015-2016 Savoir-faire Linux Inc.
Alexandre Lisionc65310c2015-04-23 16:44:23 -04003 * Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Alexandre Lisionc65310c2015-04-23 16:44:23 -040018 */
19
20#import <Foundation/Foundation.h>
21
22/**
23 * Defines a set of preferences constants
24 * WARNING: If you modify a KVO compliant value, make sure to change the string associated
25 * in the relative xib file in IB.
26 */
27namespace Preferences {
28 /* KVO compliant */
29 NSString * const HistoryLimit = @"history_limit";
30 /* KVO compliant */
31 NSString * const WindowBehaviour = @"window_behaviour";
32 /* KVO compliant */
Kateryna Kostiuke3503842018-12-12 16:39:45 -050033 NSString * const CallNotifications = @"enable_call_notifications";
34 /* KVO compliant */
35 NSString * const MessagesNotifications = @"enable_messages_notifications";
36 /* KVO compliant */
37 NSString * const ContactRequestNotifications = @"enable_invitations_notifications";
Kateryna Kostiuk67735232018-05-10 15:05:32 -040038 /* download folder for incoming images*/
39 NSString * const DownloadFolder = @"download_folder";
Alexandre Lisionc65310c2015-04-23 16:44:23 -040040}
Kateryna Kostiuk2f2ef952019-05-07 11:04:41 -040041
Kateryna Kostiuk61d41162019-10-25 16:51:44 -040042NSString * const SkipBackUpPage = @"always_skip_backup_page";
43
Kateryna Kostiuk2f2ef952019-05-07 11:04:41 -040044const CGFloat MAX_IMAGE_SIZE = 1024;