aboutsummaryrefslogtreecommitdiff
path: root/src/colloquium.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2018-03-26 23:02:13 +0200
committerThomas White <taw@physics.org>2018-03-26 23:02:13 +0200
commit3978cee519402cd06e658fcf45deca07c806ba52 (patch)
tree59d05d5dfdcae2eb762b80264a5ecefb395377e8 /src/colloquium.c
parentbd4c1352535ddb2bc67adc1065a7c1902a3ac86f (diff)
Add option to hide pointer (or not)
Diffstat (limited to 'src/colloquium.c')
-rw-r--r--src/colloquium.c47
1 files changed, 39 insertions, 8 deletions
diff --git a/src/colloquium.c b/src/colloquium.c
index 830c2f7..1963780 100644
--- a/src/colloquium.c
+++ b/src/colloquium.c
@@ -45,6 +45,7 @@ struct _colloquium
char *mydir;
int first_run;
char *imagestore;
+ int hidepointer;
};
@@ -232,11 +233,29 @@ static void create_config(const char *filename)
fprintf(fh, "imagestore: %s\n",
g_get_user_special_dir(G_USER_DIRECTORY_PICTURES));
+ fprintf(fh, "hidepointer: no\n");
fclose(fh);
}
+static int yesno(const char *a)
+{
+ if ( a == NULL ) return 0;
+
+ if ( strcmp(a, "1") == 0 ) return 1;
+ if ( strcasecmp(a, "yes") == 0 ) return 1;
+ if ( strcasecmp(a, "true") == 0 ) return 1;
+
+ if ( strcasecmp(a, "0") == 0 ) return 0;
+ if ( strcasecmp(a, "no") == 0 ) return 0;
+ if ( strcasecmp(a, "false") == 0 ) return 0;
+
+ fprintf(stderr, "Don't understand '%s', assuming false\n", a);
+ return 0;
+}
+
+
static void read_config(const char *filename, Colloquium *app)
{
FILE *fh;
@@ -248,15 +267,19 @@ static void read_config(const char *filename, Colloquium *app)
return;
}
- if ( fgets(line, 1024, fh) == NULL ) {
- fprintf(stderr, "Failed to read from config\n");
- return;
- }
- chomp(line);
+ do {
- if ( strncmp(line, "imagestore: ", 11) == 0 ) {
- app->imagestore = strdup(line+12);
- }
+ if ( fgets(line, 1024, fh) == NULL ) break;
+ chomp(line);
+
+ if ( strncmp(line, "imagestore: ", 11) == 0 ) {
+ app->imagestore = strdup(line+12);
+ }
+
+ if ( strncmp(line, "hidepointer: ", 12) == 0 ) {
+ app->hidepointer = yesno(line+13);
+ }
+ } while ( !feof(fh) );
fclose(fh);
}
@@ -268,6 +291,12 @@ const char *colloquium_get_imagestore(Colloquium *app)
}
+int colloquium_get_hidepointer(Colloquium *app)
+{
+ return app->hidepointer;
+}
+
+
static void colloquium_startup(GApplication *papp)
{
Colloquium *app = COLLOQUIUM(papp);
@@ -510,6 +539,8 @@ static void colloquium_class_init(ColloquiumClass *class)
static void colloquium_init(Colloquium *app)
{
+ app->imagestore = NULL;
+ app->hidepointer = 0;
}