X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Futil%2Fcommon.h;h=c7eca860384af182767563d7990fecae52572057;hb=b7aaf2ac709f85602ef6152980a639fd3a8577e7;hp=0877d72c30a87f757daee00b67a08a18629819d9;hpb=a36e39c7c2fedd87847514d561dc7d7bded2a3fa;p=chaz%2Ftint2 diff --git a/src/util/common.h b/src/util/common.h index 0877d72..c7eca86 100644 --- a/src/util/common.h +++ b/src/util/common.h @@ -9,6 +9,7 @@ #define WM_CLASS_TINT "panel" +#include #include "area.h" /* @@ -28,28 +29,40 @@ FXint fxmalloc(void** ptr,unsigned long size){ */ // mouse actions -enum { NONE=0, CLOSE, TOGGLE, ICONIFY, SHADE, TOGGLE_ICONIFY, MAXIMIZE_RESTORE, MAXIMIZE, RESTORE }; +enum { NONE=0, CLOSE, TOGGLE, ICONIFY, SHADE, TOGGLE_ICONIFY, MAXIMIZE_RESTORE, MAXIMIZE, RESTORE, DESKTOP_LEFT, DESKTOP_RIGHT, NEXT_TASK, PREV_TASK }; #define ALLDESKTOP 0xFFFFFFFF typedef struct config_border { - double color[3]; - double alpha; - int width; - int rounded; + double color[3]; + double alpha; + int width; + int rounded; } config_border; typedef struct config_color { - double color[3]; - double alpha; + double color[3]; + double alpha; } config_color; +// copy file source to file dest +void copy_file(const char *pathSrc, const char *pathDest); +// extract key = value +int parse_line (const char *line, char **key, char **value); +// conversion +int hex_char_to_int (char c); +int hex_to_rgb (char *hex, int *r, int *g, int *b); +void get_color (char *hex, double *rgb); + +// adjust Alpha/Saturation/Brightness on an ARGB icon +// alpha from 0 to 100, satur from 0 to 1, bright from 0 to 1. +void adjust_asb(DATA32 *data, int w, int h, int alpha, float satur, float bright); #endif