2007-09-27 20:57:58 +00:00
|
|
|
/*
|
2008-01-01 17:20:20 +00:00
|
|
|
* This file Copyright (C) 2007-2008 Charles Kerr <charles@rebelbase.com>
|
2007-02-19 22:09:05 +00:00
|
|
|
*
|
2007-09-27 20:57:58 +00:00
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
2007-09-28 00:46:22 +00:00
|
|
|
* $Id$
|
2007-09-27 20:57:58 +00:00
|
|
|
*/
|
2007-02-19 22:09:05 +00:00
|
|
|
|
|
|
|
#ifndef TR_PREFS_H
|
|
|
|
#define TR_PREFS_H
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
GtkWidget * tr_prefs_dialog_new( GObject * core, GtkWindow * parent );
|
|
|
|
|
2007-09-28 00:46:22 +00:00
|
|
|
/* if you add a key here, you /must/ add its
|
|
|
|
* default in tr_prefs_init_global( void ) */
|
|
|
|
|
2007-12-22 00:06:38 +00:00
|
|
|
#define PREF_KEY_DL_LIMIT_ENABLED "download-limit-enabled"
|
|
|
|
#define PREF_KEY_DL_LIMIT "download-limit"
|
|
|
|
#define PREF_KEY_UL_LIMIT_ENABLED "upload-limit-enabled"
|
|
|
|
#define PREF_KEY_UL_LIMIT "upload-limit"
|
2008-02-13 03:00:21 +00:00
|
|
|
#define PREF_KEY_OPTIONS_PROMPT "show-options-window"
|
2007-12-22 00:06:38 +00:00
|
|
|
#define PREF_KEY_DIR_DEFAULT "default-download-directory"
|
2008-03-09 15:27:08 +00:00
|
|
|
#define PREF_KEY_DIR_WATCH "watch-folder"
|
|
|
|
#define PREF_KEY_DIR_WATCH_ENABLED "watch-folder-enabled"
|
2008-02-13 03:00:21 +00:00
|
|
|
#define PREF_KEY_START "start-added-torrents"
|
2008-03-09 15:27:08 +00:00
|
|
|
#define PREF_KEY_TRASH_ORIGINAL "trash-original-torrent-files"
|
2007-12-22 00:06:38 +00:00
|
|
|
#define PREF_KEY_PORT "listening-port"
|
|
|
|
#define PREF_KEY_NAT "nat-traversal-enabled"
|
|
|
|
#define PREF_KEY_PEX "pex-enabled"
|
|
|
|
#define PREF_KEY_ASKQUIT "prompt-before-exit"
|
|
|
|
#define PREF_KEY_ENCRYPTED_ONLY "encrypted-connections-only"
|
|
|
|
#define PREF_KEY_MSGLEVEL "debug-message-level"
|
2008-02-24 16:10:18 +00:00
|
|
|
#define PREF_KEY_NOTIFY "notify-when-complete"
|
2007-12-22 00:06:38 +00:00
|
|
|
#define PREF_KEY_SORT_MODE "sort-mode"
|
|
|
|
#define PREF_KEY_SORT_REVERSED "sort-reversed"
|
|
|
|
#define PREF_KEY_MINIMAL_VIEW "minimal-view"
|
2007-12-24 00:14:39 +00:00
|
|
|
#define PREF_KEY_FILTER_BAR "show-filter-bar"
|
2007-12-22 00:06:38 +00:00
|
|
|
#define PREF_KEY_STATUS_BAR "show-status-bar"
|
|
|
|
#define PREF_KEY_STATUS_BAR_STATS "status-bar-stats"
|
|
|
|
#define PREF_KEY_TOOLBAR "show-toolbar"
|
|
|
|
#define PREF_KEY_MAX_PEERS_GLOBAL "max-peers-global"
|
|
|
|
#define PREF_KEY_MAX_PEERS_PER_TORRENT "max-peers-per-torrent"
|
|
|
|
|
2007-09-27 20:57:58 +00:00
|
|
|
|
|
|
|
void tr_prefs_init_global( void );
|
|
|
|
|
2007-02-19 22:09:05 +00:00
|
|
|
#endif
|