X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fcfg.h;h=f945956afcc74c55a2e06f38e72bb8225153d667;hb=66aa25bbb5834e9278226680087f4e8b325f23e7;hp=c7d764bf9ba5a5571ca11bd48a4ff1d8458ff9ff;hpb=d6141b1d4fea0db9b115b06c668be6195ac4e5c6;p=psensor.git diff --git a/src/cfg.h b/src/cfg.h index c7d764b..f945956 100644 --- a/src/cfg.h +++ b/src/cfg.h @@ -19,7 +19,7 @@ #ifndef _PSENSOR_CONFIG_H_ #define _PSENSOR_CONFIG_H_ -#include +#include #include #include @@ -47,8 +47,6 @@ struct config { /* Position of the sensors list table */ enum sensorlist_position sensorlist_position; - bool window_decoration_enabled; - bool window_keep_below_enabled; bool window_restore_enabled; /* Last saved position of the window. */ int window_x; @@ -84,13 +82,13 @@ void config_save(const struct config *); void config_cleanup(void); -struct color *config_get_sensor_color(const char *sid, const struct color *); -void config_set_sensor_color(const char *sid, const struct color *); +GdkRGBA *config_get_sensor_color(const char *); +void config_set_sensor_color(const char *, const GdkRGBA *); -int config_get_sensor_alarm_high_threshold(const char *); +bool config_get_sensor_alarm_high_threshold(const char *, double *); void config_set_sensor_alarm_high_threshold(const char *, int); -int config_get_sensor_alarm_low_threshold(const char *); +bool config_get_sensor_alarm_low_threshold(const char *, double *); void config_set_sensor_alarm_low_threshold(const char *, int); bool config_get_sensor_alarm_enabled(const char *); @@ -146,6 +144,16 @@ void config_set_nvctrl_enable(bool); bool config_is_atiadlsdk_enabled(void); void config_set_atiadlsdk_enable(bool); +int config_get_sensor_unit(void); + +double config_get_default_high_threshold_temperature(void); + +bool config_is_window_decoration_enabled(void); +void config_set_window_decoration_enabled(bool); + +bool config_is_window_keep_below_enabled(void); +void config_set_window_keep_below_enabled(bool); + /* * Returns the user directory containing psensor data (configuration * and log).