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
|
/*
* Copyright 1989 Massachusetts Institute of Technology
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted, provided
* that the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting
* documentation, and that the name of M.I.T. not be used in advertising
* or publicity pertaining to distribution of the software without specific,
* written prior permission. M.I.T. makes no representations about the
* suitability of this software for any purpose. It is provided "as is"
* without express or implied warranty.
*
* M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T.
* 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.
*/
/*
* [ ctwm ]
*
* Copyright 1992 Claude Lecommandeur.
*
* Permission to use, copy, modify and distribute this software [ctwm] and
* its documentation for any purpose is hereby granted without fee, provided
* that the above copyright notice appear in all copies and that both that
* copyright notice and this permission notice appear in supporting documen-
* tation, and that the name of Claude Lecommandeur not be used in adverti-
* sing or publicity pertaining to distribution of the software without
* specific, written prior permission. Claude Lecommandeur make no represen-
* tations about the suitability of this software for any purpose. It is
* provided "as is" without express or implied warranty.
*
* Claude Lecommandeur DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
* EVENT SHALL Claude Lecommandeur 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: Claude Lecommandeur [ lecom@sic.epfl.ch ][ April 1992 ]
*/
/***********************************************************************
*
* $XConsortium: cursor.c,v 1.10 89/12/14 14:52:23 jim Exp $
*
* cursor creation code
*
* 05-Apr-89 Thomas E. LaStrange File created
*
* Do the necessary modification to be integrated in ctwm.
* Can no longer be used for the standard twm.
*
* 22-April-92 Claude Lecommandeur.
*
*
***********************************************************************/
#include <stdio.h>
#include "twm.h"
#ifdef VMS
#include <decw$include/Xos.h>
#else
#include <X11/Xos.h>
#endif
#include "screen.h"
#include "util.h"
static struct _CursorName {
char *name;
unsigned int shape;
Cursor cursor;
} cursor_names[] = {
{"X_cursor", XC_X_cursor, None},
{"arrow", XC_arrow, None},
{"based_arrow_down", XC_based_arrow_down, None},
{"based_arrow_up", XC_based_arrow_up, None},
{"boat", XC_boat, None},
{"bogosity", XC_bogosity, None},
{"bottom_left_corner", XC_bottom_left_corner, None},
{"bottom_right_corner", XC_bottom_right_corner, None},
{"bottom_side", XC_bottom_side, None},
{"bottom_tee", XC_bottom_tee, None},
{"box_spiral", XC_box_spiral, None},
{"center_ptr", XC_center_ptr, None},
{"circle", XC_circle, None},
{"clock", XC_clock, None},
{"coffee_mug", XC_coffee_mug, None},
{"cross", XC_cross, None},
{"cross_reverse", XC_cross_reverse, None},
{"crosshair", XC_crosshair, None},
{"diamond_cross", XC_diamond_cross, None},
{"dot", XC_dot, None},
{"dotbox", XC_dotbox, None},
{"double_arrow", XC_double_arrow, None},
{"draft_large", XC_draft_large, None},
{"draft_small", XC_draft_small, None},
{"draped_box", XC_draped_box, None},
{"exchange", XC_exchange, None},
{"fleur", XC_fleur, None},
{"gobbler", XC_gobbler, None},
{"gumby", XC_gumby, None},
{"hand1", XC_hand1, None},
{"hand2", XC_hand2, None},
{"heart", XC_heart, None},
{"icon", XC_icon, None},
{"iron_cross", XC_iron_cross, None},
{"left_ptr", XC_left_ptr, None},
{"left_side", XC_left_side, None},
{"left_tee", XC_left_tee, None},
{"leftbutton", XC_leftbutton, None},
{"ll_angle", XC_ll_angle, None},
{"lr_angle", XC_lr_angle, None},
{"man", XC_man, None},
{"middlebutton", XC_middlebutton, None},
{"mouse", XC_mouse, None},
{"pencil", XC_pencil, None},
{"pirate", XC_pirate, None},
{"plus", XC_plus, None},
{"question_arrow", XC_question_arrow, None},
{"right_ptr", XC_right_ptr, None},
{"right_side", XC_right_side, None},
{"right_tee", XC_right_tee, None},
{"rightbutton", XC_rightbutton, None},
{"rtl_logo", XC_rtl_logo, None},
{"sailboat", XC_sailboat, None},
{"sb_down_arrow", XC_sb_down_arrow, None},
{"sb_h_double_arrow", XC_sb_h_double_arrow, None},
{"sb_left_arrow", XC_sb_left_arrow, None},
{"sb_right_arrow", XC_sb_right_arrow, None},
{"sb_up_arrow", XC_sb_up_arrow, None},
{"sb_v_double_arrow", XC_sb_v_double_arrow, None},
{"shuttle", XC_shuttle, None},
{"sizing", XC_sizing, None},
{"spider", XC_spider, None},
{"spraycan", XC_spraycan, None},
{"star", XC_star, None},
{"target", XC_target, None},
{"tcross", XC_tcross, None},
{"top_left_arrow", XC_top_left_arrow, None},
{"top_left_corner", XC_top_left_corner, None},
{"top_right_corner", XC_top_right_corner, None},
{"top_side", XC_top_side, None},
{"top_tee", XC_top_tee, None},
{"trek", XC_trek, None},
{"ul_angle", XC_ul_angle, None},
{"umbrella", XC_umbrella, None},
{"ur_angle", XC_ur_angle, None},
{"watch", XC_watch, None},
{"xterm", XC_xterm, None},
};
void NewFontCursor (cp, str)
Cursor *cp;
char *str;
{
int i;
for (i = 0; i < sizeof(cursor_names)/sizeof(struct _CursorName); i++)
{
if (strcmp(str, cursor_names[i].name) == 0)
{
if (cursor_names[i].cursor == None)
cursor_names[i].cursor = XCreateFontCursor(dpy,
cursor_names[i].shape);
*cp = cursor_names[i].cursor;
return;
}
}
fprintf (stderr, "%s: unable to find font cursor \"%s\"\n",
ProgramName, str);
}
NewBitmapCursor(cp, source, mask)
Cursor *cp;
char *source, *mask;
{
XColor fore, back;
int hotx, hoty;
int sx, sy, mx, my;
unsigned int sw, sh, mw, mh;
Pixmap spm, mpm;
Colormap cmap = Scr->TwmRoot.cmaps.cwins[0]->colormap->c;
fore.pixel = Scr->Black;
XQueryColor(dpy, cmap, &fore);
back.pixel = Scr->White;
XQueryColor(dpy, cmap, &back);
spm = GetBitmap(source);
if ((hotx = HotX) < 0) hotx = 0;
if ((hoty = HotY) < 0) hoty = 0;
mpm = GetBitmap(mask);
/* make sure they are the same size */
XGetGeometry(dpy, spm, &JunkRoot, &sx, &sy, &sw, &sh, &JunkBW,&JunkDepth);
XGetGeometry(dpy, mpm, &JunkRoot, &mx, &my, &mw, &mh, &JunkBW,&JunkDepth);
if (sw != mw || sh != mh)
{
fprintf (stderr,
"%s: cursor bitmaps \"%s\" and \"%s\" not the same size\n",
ProgramName, source, mask);
return (1);
}
*cp = XCreatePixmapCursor(dpy, spm, mpm, &fore, &back, hotx,hoty);
return (0);
}
Cursor MakeStringCursor (string)
char *string;
{
Cursor cursor;
XColor black, white;
Pixmap bitmap;
unsigned int width, height, rwidth, rheight, middle;
GC gc;
Colormap cmap = Scr->TwmRoot.cmaps.cwins[0]->colormap->c;
MyFont myfont = Scr->TitleBarFont;
#ifdef I18N
XRectangle inc_rect;
XRectangle logical_rect;
#endif
black.pixel = Scr->Black;
XQueryColor (dpy, cmap, &black);
white.pixel = Scr->White;
XQueryColor (dpy, cmap, &white);
#ifdef I18N
XmbTextExtents (myfont.font_set, string, strlen (string),
&inc_rect, &logical_rect);
width = logical_rect.width + 4;
height = logical_rect.height + 2;
middle = myfont.ascent;
#else
width = XTextWidth (myfont.font, string, strlen (string)) + 4;
height = myfont.height + 2;
middle = myfont.font->ascent;
#endif
/*XQueryBestCursor (dpy, Scr->Root, width, height, &rwidth, &rheight);*/
bitmap = XCreatePixmap (dpy, Scr->Root, width, height, 1);
gc = XCreateGC (dpy, bitmap, 0L, NULL);
XSetForeground (dpy, gc, 0L);
XFillRectangle (dpy, bitmap, gc, 0, 0, width, height);
XSetForeground (dpy, gc, 1L);
XDrawRectangle (dpy, bitmap, gc, 0, 0, width - 1, height - 1);
#ifdef I18N
XmbDrawString (dpy, bitmap, myfont.font_set,
gc, 2, middle, string, strlen (string));
#else
XSetFont (dpy, gc, myfont.font->fid);
XDrawString (dpy, bitmap, gc, 2, 12, string, strlen (string));
#endif
cursor = XCreatePixmapCursor (dpy, bitmap, None, &black, &white, 0, 0);
XFreePixmap (dpy, bitmap);
XFreeGC (dpy, gc);
return (cursor);
}
|