00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00026 #ifndef __SETTINGS_MANAGER_H
00027 #define __SETTINGS_MANAGER_H
00028 #ifdef __cplusplus
00029 extern "C" {
00030 #endif
00031 #include "data-types.h"
00032
00033
00034
00040 typedef struct __settings_t {
00041 refresh_freq_t refresh_freq;
00043 gboolean autosave_frames;
00044 gushort last_current_tab;
00046 gint unhandled_action_machine;
00047 gint unhandled_action_period;
00048 } settings_t;
00049
00050
00051
00062 settings_t *settings_load (const gchar *, const gchar *);
00063
00064
00065
00074 gint settings_save (settings_t *);
00075
00076
00077
00078
00079 void settings_dialog_show (GtkToolButton *addbutton, gpointer user_data);
00080 #ifdef __cplusplus
00081 }
00082 #endif
00083 #endif