blob: 808ef1b6ccfe250b6bbcb1c32c63ec191fd803ac [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 */
33 NSString * const Notifications = @"enable_notifications";
Kateryna Kostiuk67735232018-05-10 15:05:32 -040034 /* download folder for incoming images*/
35 NSString * const DownloadFolder = @"download_folder";
Alexandre Lisionc65310c2015-04-23 16:44:23 -040036}