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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
/*
###
### This file is part of
###
### TurboLinux ZWinPro
###
### Copyright (C) 1999-2000 TurboLinux, Inc.
### All Rights Reserved
### Distributed under the terms of the GNU General Public License (GPL)
###
###
### Authors: TurboLinux Chinese Development Team:
### Justin Yu <justiny@turbolinux.com.cn>
### Sean Chen <seanc@turbolinux.com.cn>
### Daniel Fang <danf@turbolinux.com.cn>
### WWW: http://www.turbolinux.com.cn/ZWinPro/
### FTP: ftp://ftp.turbolinux.com.cn/pub/ZWinPro/
###
*/
/*
* Copyright 1997 by Yu Mingjian. All Rights Reserved
* Distributed under the terms of the GNU General Public License (GPL)
*
* Permission to retain, use, modify, copy, and distribute Chinput1.0
* in source or binary and its documentation (hereafter, the Software)
* for noncommercial purpose is hereby granted to you without a fee,
* provided that this entire copyright and permission notice appear in
* all such copies, that no charge be associated with such copies,
* that distribution of derivative works (including value-added
* distributions such as with additional input dictionaries or fonts)
* include clarification that such added or derived parts are not from
* the original Software, and that the names of the author(s) not be
* used to endorse or promote such works. The author(s) of the software
* makes no representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*
* THE AUTHOR(S) OF THE SOFTWARE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
* IN NO EVENT SHALL THE AUTHOR(S) OF THE SOFTWARE BE LIABLE FOR ANY SPECIAL,
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*
* Author: Yu Mingjian, Institute of High Energy Physics, Academia Sinica
*
*/
/*
* Copyright 1989 O'Reilly and Associates, Inc.
* See ../Copyright for complete rights and liability information.
*/
#include "all.h"
#define MAX_COLORS 3
#define USE_DEFAULT_COLORMAP 1
#define USE_STANDARD_COLORMAP 0
void alloc_color();
void get_colors(char *forecolor, char *backcolor, char *bordercolor)
{
int default_depth;
Visual *default_visual;
static char *name[3];
XColor exact_def;
Colormap default_cmap;
int ncolors = 0;
int colors[MAX_COLORS];
int i = 5;
XVisualInfo visual_info;
name[0] = bordercolor;
name[1] = backcolor;
name[2] = forecolor;
/* Try to allocate colors for PseudoColor, TrueColor,
* DirectColor, and StaticColor. Use black and white
* for StaticGray and GrayScale */
default_depth = DefaultDepth(display, screen_num);
default_visual = DefaultVisual(display, screen_num);
default_cmap = DefaultColormap(display, screen_num);
if (default_depth == 1) {
/* must be StaticGray, use black and white */
border_pixel = BlackPixel(display, screen_num);
background_pixel = WhitePixel(display, screen_num);
foreground_pixel = BlackPixel(display, screen_num);
return;
}
while (!XMatchVisualInfo(display, screen_num, default_depth, /* visual class */i--, &visual_info))
;
if (i < 2) {
/* No color visual available at default_depth.
* Some applications might call XMatchVisualInfo
* here to try for a GrayScale visual
* if they can use gray to advantage, before
* giving up and using black and white.
*/
border_pixel = BlackPixel(display, screen_num);
background_pixel = WhitePixel(display, screen_num);
foreground_pixel = BlackPixel(display, screen_num);
return;
}
/* otherwise, got a color visual at default_depth */
/* The visual we found is not necessarily the
* default visual, and therefore it is not necessarily
* the one we used to create our window. However,
* we now know for sure that color is supported, so the
* following code will work (or fail in a controlled way).
* Let's check just out of curiosity: */
/*
if (visual_info.visual != default_visual)
printf("%s: PseudoColor visual at default depth is not default visual!\nContinuing anyway...\n", progname);
*/
for (i = 0; i < MAX_COLORS; i++) {
if (!XParseColor (display, default_cmap, name[i], &exact_def)) {
//fprintf(stderr, "%s: color name %s not in database", progname, name[i]);
}
if (!XAllocColor(display, default_cmap, &exact_def)) {
//fprintf(stderr, "%s: can't allocate color: all colorcells allocated and no matching cell found.\n", progname);
}
colors[i] = exact_def.pixel;
ncolors++;
}
border_pixel = colors[0];
background_pixel = colors[1];
foreground_pixel = colors[2];
return;
}
void get_FontGC(Window win, GC *gc,
XFontStruct *font_info, char *colorname)
{
unsigned long valuemask = 0;
/* ignore XGCvalues and use defaults */
XGCValues values;
unsigned int line_width = 6;
int line_style = LineOnOffDash;
int cap_style = CapRound;
int join_style = JoinRound;
int dash_offset = 0;
static char dash_list[] = {
12, 24 };
int list_length = 2;
alloc_color(colorname, "#000000", "#000000");
/* Create default Graphics Context */
*gc = XCreateGC(display, win, valuemask, &values);
/* specify font */
XSetFont(display, *gc, font_info->fid);
/* specify black foreground since default may be white on white */
XSetForeground(display, *gc, foreground_pixel);
/* set line attributes */
XSetLineAttributes(display, *gc, line_width, line_style, cap_style,
join_style);
/* set dashes to be line_width in length */
XSetDashes(display, *gc, dash_offset, dash_list, list_length);
}
void get_ColorGC(Window win, GC *gc, char *colorname)
{
unsigned long valuemask = 0; /* ignore XGCvalues and use defaults */
XGCValues values;
alloc_color(colorname, "#000000", "#000000");
*gc = XCreateGC(display, win, valuemask, &values);
/* specify black foreground since default may be white on white */
XSetForeground(display, *gc, foreground_pixel);
}
void get_PixelGC(Window win, GC *gc,
unsigned long forepixel, unsigned long backpixel)
{
unsigned long valuemask = 0; /* ignore XGCvalues and use defaults */
XGCValues values;
*gc = XCreateGC(display, win, valuemask, &values);
XSetForeground(display, *gc, forepixel);
XSetBackground(display, *gc, backpixel);
}
void load_font(XFontStruct **font_info, char *fontname)
{
/* Access font */
if ((*font_info = XLoadQueryFont(display,fontname)) == NULL)
{
(void) fprintf( stderr, "Basic: Cannot open font %s\n",
fontname);
exit( -1 );
}
}
void alloc_color(char *forecolor, char *backcolor, char *bordercolor)
{
int i, j, k, l;
XStandardColormap **best_map_info = NULL;
int count;
int strategy = USE_STANDARD_COLORMAP;
XColor *exact_defs;
unsigned long attribmask;
XVisualInfo *vlist, vinfo_template, *v;
int num_vis;
XSetWindowAttributes attrib;
int ncells;
Visual *visual = NULL;
if (XGetRGBColormaps(display, RootWindow(display,
screen_num), best_map_info, &count,
XA_RGB_BEST_MAP) == 0) {
get_colors(forecolor, backcolor, bordercolor);
strategy = USE_DEFAULT_COLORMAP;
}
else if (best_map_info[0]->colormap) {
if (best_map_info[0]->red_max == 0) {
strategy = USE_DEFAULT_COLORMAP;
}
attrib.colormap = best_map_info[0]->colormap;
}
else if (best_map_info[0]->visualid == 0) {
strategy = USE_DEFAULT_COLORMAP;
}
else {
vlist = XGetVisualInfo(display, VisualNoMask,
&vinfo_template, &num_vis);
for (v = vlist; v < vlist + num_vis; v++) {
if (v->visualid == best_map_info[0]->visualid) {
visual = v->visual;
break;
}
}
best_map_info[0]->colormap =
XCreateColormap(display,
RootWindow(display, screen_num), visual, AllocAll);
if (best_map_info[0]->colormap ==
DefaultColormap(display, screen_num)) {
//printf("hardware colormap is immutable: cannot create new colormap.\n");
}
attrib.colormap = best_map_info[0]->colormap;
ncells = best_map_info[0]->base_pixel +
((best_map_info[0]->red_max + 1) *
(best_map_info[0]->green_max + 1) *
(best_map_info[0]->blue_max + 1));
exact_defs = (XColor *) calloc(sizeof(XColor), ncells);
/* permute the levels of red, green and blue */
l = best_map_info[0]->base_pixel;
for (i = 0; i < best_map_info[0]->blue_max; i++) {
for (j = 0; j < best_map_info[0]->green_max; j++) {
for (k = 0; k < best_map_info[0]->red_max; k++) {
exact_defs[l].blue = 65535 * i / best_map_info[0]->blue_max;
exact_defs[l].green = 65535 * j / best_map_info[0]->green_max;
exact_defs[l].red = 65535 * k / best_map_info[0]->red_max;
l++;
}
}
}
XStoreColors (display, best_map_info[0]->colormap, exact_defs, ncells);
XSetStandardColormap(display, RootWindow(display, screen_num), best_map_info[0], XA_RGB_BEST_MAP);
}
if (strategy == USE_STANDARD_COLORMAP) {
background_pixel = best_map_info[0]->base_pixel +
(best_map_info[0]->red_max * best_map_info[0]->red_mult) +
(best_map_info[0]->green_max * best_map_info[0]->green_mult) +
(best_map_info[0]->blue_max * best_map_info[0]->blue_mult);
attribmask = CWBackPixel | CWColormap;
foreground_pixel = (best_map_info[0]->green_max *
best_map_info[0]->green_mult / 2) +
best_map_info[0]->base_pixel;
border_pixel = (best_map_info[0]->blue_max *
best_map_info[0]->blue_mult / 2) +
best_map_info[0]->base_pixel;
}
}
|