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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532
|
/*
* ion/de/draw.c
*
* Copyright (c) Tuomo Valkonen 1999-2004.
*
* Ion is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*/
#include <string.h>
#include <ioncore/global.h>
#include <ioncore/common.h>
#include <ioncore/gr.h>
#include "brush.h"
#include "font.h"
#include "misc.h"
#include <X11/extensions/shape.h>
/*{{{ Colour group lookup */
DEColourGroup *debrush_get_colour_group2(DEBrush *brush,
const char *attr_p1,
const char *attr_p2)
{
int i, maxi=-1;
int score, maxscore=0;
for(i=0; i<brush->d->n_extra_cgrps; i++){
score=gr_stylespec_score2(brush->d->extra_cgrps[i].spec,
attr_p1, attr_p2);
if(score>maxscore){
maxi=i;
maxscore=score;
}
}
if(maxi==-1)
return &(brush->d->cgrp);
else
return &(brush->d->extra_cgrps[maxi]);
}
DEColourGroup *debrush_get_colour_group(DEBrush *brush, const char *attr)
{
return debrush_get_colour_group2(brush, attr, NULL);
}
/*}}}*/
/*{{{ Borders */
/* Draw a border at x, y with outer width w x h. Top and left 'tl' pixels
* wide with color 'tlc' and bottom and right 'br' pixels with colors 'brc'.
*/
static void do_draw_border(Window win, GC gc, int x, int y, int w, int h,
uint tl, uint br, DEColour tlc, DEColour brc)
{
XPoint points[3];
uint i=0, a=0, b=0;
w--;
h--;
XSetForeground(wglobal.dpy, gc, tlc);
a=(br!=0);
b=0;
for(i=0; i<tl; i++){
points[0].x=x+i; points[0].y=y+h+1-b;
points[1].x=x+i; points[1].y=y+i;
points[2].x=x+w+1-a; points[2].y=y+i;
if(a<br)
a++;
if(b<br)
b++;
XDrawLines(wglobal.dpy, win, gc, points, 3, CoordModeOrigin);
}
XSetForeground(wglobal.dpy, gc, brc);
a=(tl!=0);
b=0;
for(i=0; i<br; i++){
points[0].x=x+w-i; points[0].y=y+b;
points[1].x=x+w-i; points[1].y=y+h-i;
points[2].x=x+a; points[2].y=y+h-i;
if(a<tl)
a++;
if(b<tl)
b++;
XDrawLines(wglobal.dpy, win, gc, points, 3, CoordModeOrigin);
}
}
static void draw_border(Window win, GC gc, WRectangle *geom,
uint tl, uint br, DEColour tlc, DEColour brc)
{
do_draw_border(win, gc, geom->x, geom->y, geom->w, geom->h,
tl, br, tlc, brc);
geom->x+=tl;
geom->y+=tl;
geom->w-=tl+br;
geom->h-=tl+br;
}
void debrush_do_draw_border(DEBrush *brush, Window win, WRectangle geom,
DEColourGroup *cg)
{
DEBorder *bd=&(brush->d->border);
GC gc=brush->d->normal_gc;
switch(bd->style){
case DEBORDER_RIDGE:
draw_border(win, gc, &geom, bd->hl, bd->sh, cg->hl, cg->sh);
case DEBORDER_INLAID:
draw_border(win, gc, &geom, bd->pad, bd->pad, cg->pad, cg->pad);
draw_border(win, gc, &geom, bd->sh, bd->hl, cg->sh, cg->hl);
break;
case DEBORDER_GROOVE:
draw_border(win, gc, &geom, bd->sh, bd->hl, cg->sh, cg->hl);
draw_border(win, gc, &geom, bd->pad, bd->pad, cg->pad, cg->pad);
draw_border(win, gc, &geom, bd->hl, bd->sh, cg->hl, cg->sh);
break;
case DEBORDER_ELEVATED:
default:
draw_border(win, gc, &geom, bd->hl, bd->sh, cg->hl, cg->sh);
draw_border(win, gc, &geom, bd->pad, bd->pad, cg->pad, cg->pad);
break;
}
}
void debrush_draw_border(DEBrush *brush, Window win,
const WRectangle *geom,
const char *attrib)
{
DEColourGroup *cg=debrush_get_colour_group(brush, attrib);
if(cg!=NULL)
debrush_do_draw_border(brush, win, *geom, cg);
}
/*}}}*/
/*{{{ Boxes */
typedef void TextBoxExtraFn(DEBrush *brush_, Window win, const WRectangle *g,
DEColourGroup *cg, GrBorderWidths *bdw,
GrFontExtents *fnte,
const char *a1, const char *a2, bool pre);
static void copy_masked(DETabBrush *brush, Drawable src, Drawable dst,
int src_x, int src_y, int w, int h,
int dst_x, int dst_y)
{
GC copy_gc=brush->debrush.d->copy_gc;
XSetClipMask(wglobal.dpy, copy_gc, src);
XSetClipOrigin(wglobal.dpy, copy_gc, dst_x, dst_y);
XCopyPlane(wglobal.dpy, src, dst, copy_gc, src_x, src_y, w, h,
dst_x, dst_y, 1);
}
static void tabbrush_textbox_extras(DETabBrush *brush, Window win,
const WRectangle *g, DEColourGroup *cg,
GrBorderWidths *bdw,
GrFontExtents *fnte,
const char *a1, const char *a2,
bool pre)
{
DEStyle *d=brush->debrush.d;
GC tmp;
/* Not thread-safe, but neither is the rest of the drawing code
* with shared GC:s.
*/
static bool swapped=FALSE;
if(pre){
if(!MATCHES2("*-*-*-dragged", a1, a2))
return;
tmp=d->normal_gc;
d->normal_gc=d->stipple_gc;
d->stipple_gc=tmp;
swapped=TRUE;
XClearArea(wglobal.dpy, win, g->x, g->y, g->w, g->h, False);
return;
}
if(MATCHES2("*-*-tagged", a1, a2)){
XSetForeground(wglobal.dpy, d->copy_gc, cg->fg);
copy_masked(brush, d->tag_pixmap, win, 0, 0,
d->tag_pixmap_w, d->tag_pixmap_h,
g->x+g->w-bdw->right-d->tag_pixmap_w,
g->y+bdw->top);
}
if(swapped){
tmp=d->normal_gc;
d->normal_gc=d->stipple_gc;
d->stipple_gc=tmp;
swapped=FALSE;
}
/*if(MATCHES2("*-*-*-dragged", a1, a2)){
XFillRectangle(wglobal.dpy, win, d->stipple_gc,
g->x, g->y, g->w, g->h);
}*/
}
static void mentbrush_textbox_extras(DEMEntBrush *brush, Window win,
const WRectangle *g, DEColourGroup *cg,
GrBorderWidths *bdw,
GrFontExtents *fnte,
const char *a1, const char *a2,
bool pre)
{
int tx, ty;
if(pre)
return;
if(!MATCHES2("*-*-submenu", a1, a2))
return;
ty=(g->y+bdw->top+fnte->baseline
+(g->h-bdw->top-bdw->bottom-fnte->max_height)/2);
tx=g->x+g->w-bdw->right;
debrush_do_draw_string((DEBrush*)brush, win, tx, ty, DE_SUB_IND,
DE_SUB_IND_LEN, FALSE, cg);
}
void debrush_do_draw_box(DEBrush *brush, Window win,
const WRectangle *geom, DEColourGroup *cg,
bool needfill)
{
GC gc=brush->d->normal_gc;
if(TRUE/*needfill*/){
XSetForeground(wglobal.dpy, gc, cg->bg);
XFillRectangle(wglobal.dpy, win, gc, geom->x, geom->y,
geom->w, geom->h);
}
debrush_do_draw_border(brush, win, *geom, cg);
}
static void debrush_do_draw_textbox(DEBrush *brush, Window win,
const WRectangle *geom, const char *text,
DEColourGroup *cg, bool needfill,
const char *a1, const char *a2,
TextBoxExtraFn *extrafn)
{
uint len;
GrBorderWidths bdw;
GrFontExtents fnte;
uint tx, ty, tw;
if(extrafn!=NULL)
extrafn(brush, win, geom, cg, &bdw, &fnte, a1, a2, TRUE);
debrush_do_draw_box(brush, win, geom, cg, needfill);
do{ /*...while(0)*/
if(text==NULL)
break;
len=strlen(text);
if(len==0)
break;
grbrush_get_border_widths(&(brush->grbrush), &bdw);
grbrush_get_font_extents(&(brush->grbrush), &fnte);
if(brush->d->textalign!=DEALIGN_LEFT){
tw=grbrush_get_text_width((GrBrush*)brush, text, len);
if(brush->d->textalign==DEALIGN_CENTER)
tx=geom->x+bdw.left+(geom->w-bdw.left-bdw.right-tw)/2;
else
tx=geom->x+geom->w-bdw.right-tw;
}else{
tx=geom->x+bdw.left;
}
ty=(geom->y+bdw.top+fnte.baseline
+(geom->h-bdw.top-bdw.bottom-fnte.max_height)/2);
debrush_do_draw_string(brush, win, tx, ty, text, len, FALSE, cg);
}while(0);
if(extrafn!=NULL)
extrafn(brush, win, geom, cg, &bdw, &fnte, a1, a2, FALSE);
}
static void do_draw_textboxes(DEBrush *brush, Window win,
const WRectangle *geom,
int n, const GrTextElem *elem,
bool needfill, const char *common_attrib,
TextBoxExtraFn *extrafn)
{
WRectangle g=*geom;
DEColourGroup *cg;
GrBorderWidths bdw;
int i;
grbrush_get_border_widths(&(brush->grbrush), &bdw);
for(i=0; i<n; i++){
g.w=bdw.left+elem[i].iw+bdw.right;
cg=debrush_get_colour_group2(brush, common_attrib, elem[i].attr);
debrush_do_draw_textbox(brush, win, &g, elem[i].text, cg, needfill,
common_attrib, elem[i].attr, extrafn);
g.x+=g.w;
if(bdw.spacing>0 && needfill){
XClearArea(wglobal.dpy, win, g.x, g.y,
brush->d->spacing, g.h, False);
}
g.x+=bdw.spacing;
}
}
void debrush_draw_textbox(DEBrush *brush, Window win,
const WRectangle *geom, const char *text,
const char *attr, bool needfill)
{
DEColourGroup *cg=debrush_get_colour_group(brush, attr);
if(cg!=NULL){
debrush_do_draw_textbox(brush, win, geom, text, cg, needfill,
attr, NULL, NULL);
}
}
void detabbrush_draw_textbox(DETabBrush *brush, Window win,
const WRectangle *geom, const char *text,
const char *attr, bool needfill)
{
DEColourGroup *cg=debrush_get_colour_group(&(brush->debrush), attr);
if(cg!=NULL){
debrush_do_draw_textbox(&(brush->debrush), win, geom, text, cg,
needfill, attr, NULL,
(TextBoxExtraFn*)tabbrush_textbox_extras);
}
}
void dementbrush_draw_textbox(DEMEntBrush *brush, Window win,
const WRectangle *geom, const char *text,
const char *attr, bool needfill)
{
DEColourGroup *cg=debrush_get_colour_group(&(brush->debrush), attr);
if(cg!=NULL){
debrush_do_draw_textbox(&(brush->debrush), win, geom, text, cg,
needfill, attr, NULL,
(TextBoxExtraFn*)mentbrush_textbox_extras);
}
}
void debrush_draw_textboxes(DEBrush *brush, Window win,
const WRectangle *geom,
int n, const GrTextElem *elem,
bool needfill, const char *common_attrib)
{
do_draw_textboxes(brush, win, geom, n, elem, needfill, common_attrib,
NULL);
}
void detabbrush_draw_textboxes(DETabBrush *brush, Window win,
const WRectangle *geom,
int n, const GrTextElem *elem,
bool needfill, const char *common_attrib)
{
do_draw_textboxes(&(brush->debrush), win, geom, n, elem,
needfill, common_attrib,
(TextBoxExtraFn*)tabbrush_textbox_extras);
}
void dementbrush_draw_textboxes(DEMEntBrush *brush, Window win,
const WRectangle *geom,
int n, const GrTextElem *elem,
bool needfill, const char *common_attrib)
{
do_draw_textboxes(&(brush->debrush), win, geom, n, elem,
needfill, common_attrib,
(TextBoxExtraFn*)mentbrush_textbox_extras);
}
/*}}}*/
/*{{{ Clipping rectangles */
/* Should actually set the clipping rectangle for all GC:s and use
* window-specific GC:s to do this correctly...
*/
void debrush_set_clipping_rectangle(DEBrush *brush, Window unused,
const WRectangle *geom)
{
XRectangle rect;
rect.x=geom->x;
rect.y=geom->y;
rect.width=geom->w;
rect.height=geom->h;
XSetClipRectangles(wglobal.dpy, brush->d->normal_gc,
0, 0, &rect, 1, Unsorted);
}
void debrush_clear_clipping_rectangle(DEBrush *brush, Window unused)
{
XSetClipMask(wglobal.dpy, brush->d->normal_gc, None);
}
/*}}}*/
/*{{{ Misc. */
#define MAXSHAPE 16
void debrush_set_window_shape(DEBrush *brush, Window win, bool rough,
int n, const WRectangle *rects)
{
XRectangle r[MAXSHAPE];
int i;
if(n>MAXSHAPE)
n=MAXSHAPE;
for(i=0; i<n; i++){
r[i].x=rects[i].x;
r[i].y=rects[i].y;
r[i].width=rects[i].w;
r[i].height=rects[i].h;
}
XShapeCombineRectangles(wglobal.dpy, win, ShapeBounding, 0, 0, r, n,
ShapeSet, YXBanded);
}
void debrush_enable_transparency(DEBrush *brush, Window win,
GrTransparency mode)
{
XSetWindowAttributes attr;
ulong attrflags=0;
if(mode==GR_TRANSPARENCY_DEFAULT)
mode=brush->d->transparency_mode;
if(mode==GR_TRANSPARENCY_YES){
attrflags=CWBackPixmap;
attr.background_pixmap=ParentRelative;
}else{
attrflags=CWBackPixel;
attr.background_pixel=brush->d->cgrp.bg;
}
XChangeWindowAttributes(wglobal.dpy, win, attrflags, &attr);
XClearWindow(wglobal.dpy, win);
}
void debrush_fill_area(DEBrush *brush, Window win, const WRectangle *geom,
const char *attr)
{
DEColourGroup *cg=debrush_get_colour_group(brush, attr);
GC gc=brush->d->normal_gc;
if(cg==NULL)
return;
XSetForeground(wglobal.dpy, gc, cg->bg);
XFillRectangle(wglobal.dpy, win, gc, geom->x, geom->y, geom->w, geom->h);
}
void debrush_clear_area(DEBrush *brush, Window win, const WRectangle *geom)
{
XClearArea(wglobal.dpy, win, geom->x, geom->y, geom->w, geom->h, False);
}
/*}}}*/
|