reworked settings: made it look more like other maemo dialogs, made some things stati...
[maemo-recorder] / src / settings.h
1 /* vim: set sts=4 sw=4 et: */
2 /*
3  * settings.h
4  * GConf settings
5  *
6  * Copyright (C) 2006 Nokia Corporation
7  *
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16  * for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #ifndef _SETTINGS_H
25 #define _SETTINGS_H
26
27 #include <gconf/gconf-client.h>
28
29 void settings_edit(GtkWidget* widget, AppData *data);
30
31 gint get_default_filter(void);
32 void set_default_filter(gint filter);
33         
34 gchar* get_default_dir(void);
35 void set_default_dir(gchar* selected);
36         
37 GConfClient *settings_init(gint argc, gchar *argv[]);
38
39 #endif /* _SETTINGS_H */
40