Make AddMouseRegion's index unsigned
[dockapps.git] / wmcalendar / Src / settings.h
blob490617ebd50f69e8db2eca7c485a0e727f49a45a
1 #define WMCALENDAR_VERSION "0.5.1"
2 #include <gtk/gtk.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <time.h>
6 #include <string.h>
10 char rcfile[250]; /* location of settings file */
11 char icsfile[250]; /* location of icalendar file */
12 char application[250]; /* command for starting external application */
13 int start_of_week; /* defines the first day of week */
14 char* daystr[8];
15 int appicon; /* sets the application icon evol(0) moz(1) other(2)*/
16 int lang; /* defines the language 0:english(default) 1:farsi */
17 int debug; /* debug mode off(0) or on(1) */
20 void destroy (GtkWidget * widget, gpointer data);
21 void getSettings();
22 void writeSettings();
23 void openSettings();
24 void changeFilename();
25 void setFirstDay(GtkWidget *widget, GtkWidget *combo );
26 static void file_ok_sel( GtkWidget *w,
27 GtkFileSelection *fs );
28 void set_lang(int language);
29 void setAppicon(int app);
30 void enter_callback( GtkWidget *widget, GtkWidget *entry );
31 int getAppicon();
32 int get_start_of_week();
33 int get_lang();
34 int get_debug();
35 void set_debug(int deb);
36 char* getVersion();
37 const char* get_application();
38 const char* get_icsfile();