efl/legacy/ecore/examples/config_basic_example.c

94 lines
2.3 KiB
C

/* Shows how to handle the Enlightened Properties Library.
*/
#include <stdio.h>
#include <string.h>
#include <Ecore_Config.h>
#define INT_VAL_KEY "int_val"
#define FLT_VAL_KEY "flt_val"
#define STR_VAL_KEY "str_val"
#define RGB_VAL_KEY "rgb_val"
#define THM_VAL_KEY "thm_val"
long int_val;
float flt_val;
char *str_val;
char *rgb_val;
char *thm_val;
void set_defaults (void) {
ecore_config_default_int(INT_VAL_KEY, 0);
ecore_config_default_float(FLT_VAL_KEY, 0.0);
ecore_config_default_string(STR_VAL_KEY, "test1");
ecore_config_default_rgb(RGB_VAL_KEY, "#000000");
ecore_config_default_theme(THM_VAL_KEY, "default");
}
void get_settings (void) {
/* Note the order here. Defaults are to be set before load, so that the
* types are definitely right.
*/
set_defaults();
ecore_config_load();
int_val = ecore_config_get_int(INT_VAL_KEY);
flt_val = ecore_config_get_float(FLT_VAL_KEY);
str_val = ecore_config_get_string(STR_VAL_KEY);
rgb_val = ecore_config_get_rgbstr(RGB_VAL_KEY);
thm_val = ecore_config_get_theme(THM_VAL_KEY);
}
void change_settings(void) {
int_val += 1;
flt_val += 0.1;
if('9' == str_val[4]) {
str_val[4] = '0';
} else {
str_val[4] += 1;
}
if('9' == rgb_val[1]) {
rgb_val[1] = '\0';
rgb_val[3] = '\0';
rgb_val[5] = '\0';
} else {
rgb_val[1] += 1;
rgb_val[3] += 1;
rgb_val[5] += 1;
}
if(!strcmp(thm_val, "default")) {
thm_val = strdup("winter");
} else {
thm_val = strdup("default");
}
}
void save_settings (void) {
ecore_config_set_int(INT_VAL_KEY, int_val);
ecore_config_set_float(FLT_VAL_KEY, flt_val);
ecore_config_set_string(STR_VAL_KEY, str_val);
ecore_config_set_rgb(RGB_VAL_KEY, rgb_val);
ecore_config_set_theme(THM_VAL_KEY, thm_val);
ecore_config_save();
}
void dump_settings (void) {
printf(" Int Value: %li\n", int_val);
printf(" Float Value: %f\n", flt_val);
printf(" String Value: %s\n", str_val);
printf(" RGB Value: %s\n", rgb_val);
printf(" Theme Value: %s\n", thm_val);
}
int main (int argc, char **argv) {
ecore_config_init("config_basic_example");
get_settings();
printf("--- Original Values ---\n");
dump_settings();
change_settings();
printf("--- Values to be Saved ---\n");
dump_settings();
save_settings();
ecore_config_shutdown();
return 0;
}