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
|
/*
* asmail is an e-mail checker for X
*
* Copyright (c) 2002 Albert Dorofeev <albert@tigr.net>
*
* For the updates see http://www.tigr.net/afterstep/
*
* This software is distributed under GPL. For details see LICENSE file.
*/
#ifndef _x_color_h_
#define _x_color_h_
/*
* It takes the given color, parses it in the context
* of the given window and returns a pixel of that color.
*/
Pixel GetColor(char *ColorName, Display * disp, Window win);
/*
* Performs the same actions as GetColor but
* returns the complete XColor structure
*/
XColor ParseColor(char *ColorName, Display * disp, Window win);
/*
* darkens the given color using the supplied rate
*/
char *DarkenCharColor(char *ColorName, float rate, Display * disp, Window win);
Pixel DarkenColor(char *ColorName, float rate, Display * disp, Window win);
/*
* brightens the given color using the supplied rate
*/
char *LightenCharColor(char *ColorName, float rate, Display * disp, Window win);
Pixel LightenColor(char *ColorName, float rate, Display * disp, Window win);
#endif
|