about summary refs log tree commit diff stats
path: root/src/config/preferences.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/preferences.h')
-rw-r--r--src/config/preferences.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/config/preferences.h b/src/config/preferences.h
index c8b206ef..9590eb64 100644
--- a/src/config/preferences.h
+++ b/src/config/preferences.h
@@ -47,12 +47,15 @@
 #define PREFS_MIN_LOG_SIZE 64
 #define PREFS_MAX_LOG_SIZE 1048580
 
+// represents all settings in .profrc
+// each enum value is mapped to a group and key in .profrc (see preferences.c)
 typedef enum {
     PREF_SPLASH,
     PREF_BEEP,
     PREF_VERCHECK,
     PREF_THEME,
-    PREF_TITLEBAR,
+    PREF_TITLEBAR_SHOW,
+    PREF_TITLEBAR_GOODBYE,
     PREF_FLASH,
     PREF_INTYPE,
     PREF_HISTORY,
@@ -95,7 +98,10 @@ typedef enum {
     PREF_LOG_SHARED,
     PREF_OTR_LOG,
     PREF_OTR_WARN,
-    PREF_OTR_POLICY
+    PREF_OTR_POLICY,
+    PREF_RESOURCE_TITLE,
+    PREF_RESOURCE_MESSAGE,
+    PREF_INPBLOCK_DYNAMIC
 } preference_t;
 
 typedef struct prof_alias_t {