]> Dogcows Code - chaz/tint2/blobdiff - src/util/common.h
*fix* image rendering in real_transparency mode fixed (imlib_render_image does not...
[chaz/tint2] / src / util / common.h
index e874ba6d8627e8a4a505da6443a4eb372e798c6c..eb53f4f2a5d71794b5c77a89b4df0bcb73d62abf 100644 (file)
@@ -9,6 +9,7 @@
 
 #define WM_CLASS_TINT   "panel"
 
+#include <Imlib2.h>
 #include "area.h"
 
 /*
@@ -28,31 +29,43 @@ 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
 
-#define MIN3(x,y,z)  ((y) <= (z) ? ((x) <= (y) ? (x) : (y)) : ((x) <= (z) ? (x) : (z)))
-#define MAX3(x,y,z)  ((y) >= (z) ? ((x) >= (y) ? (x) : (y)) : ((x) >= (z) ? (x) : (z)))
-
 
 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);
+void createHeuristicMask(DATA32* data, int w, int h);
 
+void render_image(Drawable d, int x, int y, int w, int h);
 #endif
 
This page took 0.023158 seconds and 4 git commands to generate.