From 3978cee519402cd06e658fcf45deca07c806ba52 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Mon, 26 Mar 2018 23:02:13 +0200 Subject: Add option to hide pointer (or not) --- src/colloquium.c | 47 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 39 insertions(+), 8 deletions(-) (limited to 'src/colloquium.c') 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; } -- cgit v1.2.3