summaryrefslogtreecommitdiffstats
path: root/src/conf.c
blob: acfa03fc650b9ed7082842a339caa3f26111f431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include "conf.h"
#include "utils/dictionary.h"

void store_default_config_values() {
    put(user_conf_d, "half_page_scroll", "0");
    put(user_conf_d, "autocalc", "1");
    put(user_conf_d, "numeric", "0");
    put(user_conf_d, "nocurses", "0");
    put(user_conf_d, "newline_action", "0");
    put(user_conf_d, "external_functions", "0");
    put(user_conf_d, "xlsx_readformulas", "0");
    put(user_conf_d, "import_delimited_as_text", "0");
    put(user_conf_d, "quit_afterload", "0");
    put(user_conf_d, "numeric_zero", "0");
    put(user_conf_d, "numeric_decimal", "0");
    put(user_conf_d, "overlap", "0");
    put(user_conf_d, "debug", "0");
    put(user_conf_d, "ignorecase", "0");
    put(user_conf_d, "trigger", "1");
    put(user_conf_d, "version", "0");
    #ifdef AUTOBACKUP
    put(user_conf_d, "autobackup", "0"); // 0:noautobackup, n>0: backup every n in seconds
    #endif

    #ifdef DEFAULT_COPY_TO_CLIPBOARD_CMD
    put(user_conf_d, "default_copy_to_clipboard_cmd", DEFAULT_COPY_TO_CLIPBOARD_CMD);
    #else
    put(user_conf_d, "default_copy_to_clipboard_cmd", "");
    #endif

    put(user_conf_d, "copy_to_clipboard_delimited_tab", "0");

    #ifdef DEFAULT_PASTE_FROM_CLIPBOARD_CMD
    put(user_conf_d, "default_paste_from_clipboard_cmd", DEFAULT_PASTE_FROM_CLIPBOARD_CMD);
    #else
    put(user_conf_d, "default_paste_from_clipboard_cmd", "");
    #endif

    // we calc get gmtoffset
    #ifdef USELOCALE
    time_t t = time(NULL);
    struct tm * lt = localtime(&t);
    char strgmtoff[7];
    sprintf(strgmtoff, "%ld", lt->tm_gmtoff);
    put(user_conf_d, "tm_gmtoff", strgmtoff);
    #else
    put(user_conf_d, "tm_gmtoff", "0");
    #endif

}

char * get_conf_values(char * salida) {
   if (user_conf_d == NULL) return NULL;
   struct nlist * nl;

   nl = user_conf_d->list;
   salida[0]='\0';
   while (nl != NULL) {
       // ignore version conf variable here so that its not shown in :set command
       if (! strcmp(nl->key, "version")) { nl = nl->next; continue; }

       sprintf(salida + strlen(salida), "%s=%s\n", nl->key, nl->val);
       nl = nl->next;
   }
   return salida;
}

char * get_conf_value(char * key) {
   char * val = get(user_conf_d, key);

   if ( val != '\0' )
       return val;
   else
       return get(predefined_conf_d, key);
}