| /xsrc/external/mit/ctwm/dist/ |
| H A D | icons.c | 51 static void ReshapeIcon(Icon *icon); 53 static Image *LookupIconNameOrClass(TwmWindow *tmp_win, Icon *icon, 209 * Figure out where to put a window's icon based on the IconRegion 212 * location in final_[xy], and also sets the IconRegion in tmp_win->icon 223 const int iconWidth = tmp_win->icon->border_width * 2 224 + (Scr->ShrinkIconTitles ? tmp_win->icon->width 225 : tmp_win->icon->w_width); 226 const int iconHeight = tmp_win->icon->border_width * 2 227 + tmp_win->icon->w_height; 238 * size, based on the icon' 455 Icon *icon; local in function:CreateIconWindow 797 Icon *icon = (Icon *)nptr->ptr; local in function:DeleteIconsList 814 DeleteIcon(Icon * icon) argument 831 ReleaseIconImage(Icon * icon) argument 970 Icon *icon; local in function:PaintIcon 1023 Icon *icon; local in function:ShrinkIconTitle 1055 Icon *icon; local in function:ExpandIconTitle 1091 ReshapeIcon(Icon * icon) argument 1128 GetIconOffset(Icon * icon) argument 1162 Icon *icon, *old_icon; local in function:RedoIcon 1378 LookupIconNameOrClass(TwmWindow * tmp_win,Icon * icon,char ** pattern) argument [all...] |
| H A D | animate.c | 40 static void AnimateIcons(ScreenInfo *scr, Icon *icon); 200 if(t->icon_on && t->icon && t->icon->bm_w && t->icon->image && 201 t->icon->image->next) { 202 AnimateIcons(scr, t->icon); 276 AnimateIcons(ScreenInfo *scr, Icon *icon) argument 283 image = icon->image; 285 XChangeWindowAttributes(dpy, icon->bm_w, CWBackPixmap, &attr); 288 x = GetIconOffset(icon); [all...] |
| H A D | icons.h | 28 Window w; /* the icon window */ 29 OtpWinList *otp; /* OnTopPriority info for the icon */ 30 Window bm_w; /* the icon bitmap window */ 31 Image *image; /* image icon structure */ 32 int x; /* icon text x coordinate */ 33 int y; /* icon text y coordiante */ 34 int w_x; /* x coor of the icon window !!untested!! */ 35 int w_y; /* y coor of the icon window !!untested!! */ 36 int w_width; /* width of the icon window */ 37 int w_height; /* height of the icon windo [all...] |
| H A D | win_iconify.c | 67 if(!tmp_win->icon || !tmp_win->icon->w) { 75 XMapWindow(dpy, tmp_win->icon->w); 80 XMapWindow(dpy, wl->icon); 91 Zoom(tmp_win->frame, tmp_win->icon->w); 178 if(tmp_win->icon_on && tmp_win->icon && tmp_win->icon->w) { 179 Zoom(tmp_win->icon->w, tmp_win->frame); 185 if(t->icon_on && t->icon && t->icon [all...] |
| H A D | functions_win.c | 79 if(tmp_win->icon && (w == tmp_win->icon->w) && Context != C_ROOT) { 108 if(tmp_win->icon && (w == tmp_win->icon->w)) { 120 if(tmp_win->icon && w == tmp_win->icon->w) { 137 if(tmp_win->icon && (w == tmp_win->icon->w) && Context != C_ROOT) { 149 if(tmp_win->icon && (w == tmp_win->icon [all...] |
| H A D | functions_icmgr_wsmgr.c | 2 * Functions related to icon managers and the workspace manager. 19 * Moving around in the icon manager. 60 /* Moving between icon managers */ 72 * Showing/hiding the icon managers 80 * XXX I don't think this is right; there can still be icon managers 107 /* Hide icon */ 108 if(i->twm_win->icon && i->twm_win->icon->w) { 109 XUnmapWindow(dpy, i->twm_win->icon->w); 124 * called on an icon manage [all...] |
| H A D | vscreen.c | 258 /* If it's got an icon that should be up, make it up here */ 261 if(tmp_win->icon && tmp_win->icon->w) { 264 XMapWindow(dpy, tmp_win->icon->w); 308 * Move a window's frame and icon to a new VS. This mostly happens as a 319 struct Icon *icon = tmp_win->icon; local in function:ReparentFrameAndIcon 326 if(icon && icon->w) { 329 icon [all...] |
| H A D | event_handlers.c | 460 else if(twm_win->icon && 461 Event.xcirculate.window == twm_win->icon->w) { 923 else if(Tmp_win->icon && (Event.xany.window == Tmp_win->icon->w)) { 931 Event.xany.window == Tmp_win->iconmanagerlist->icon) { 1133 Icon *icon; local in function:HandlePropertyNotify 1257 icon = Tmp_win->icon; 1260 * If there already is an icon found in a way that has priority 1265 (icon 1837 Icon *icon = Tmp_win->icon; local in function:HandleDestroyNotify 1973 Window icon; local in function:HandleMapRequest [all...] |
| H A D | functions_identify.c | 164 if(t->icon != NULL) { 167 XGetGeometry(dpy, t->icon->w, &JunkRoot, &iwx, &iwy, 175 t->icon->w_width, t->icon->w_height, 176 t->icon->w_x, t->icon->w_y);
|
| H A D | otp.c | 97 Icon *icon = owl->twm_win->icon; local in function:BoxOfOwl 99 b.x = icon->w_x; 100 b.y = icon->w_y; 101 b.width = icon->w_width; 102 b.height = icon->w_height; 185 ? owl->twm_win->icon->w : owl->twm_win->frame; 234 assert(((owl->type == IconWin) && (owl == twm_win->icon->otp)) 765 OtpWinList *owl = (wintype == IconWin) ? twm_win->icon->otp : twm_win->otp; 779 OtpWinList *owl = (wintype == IconWin) ? twm_win->icon [all...] |
| H A D | functions_win_moveresize.c | 217 * Set w to what we're actually moving. If it's an icon, we always 222 if(context == C_ICON && tmp_win->icon && tmp_win->icon->w) { 223 w = tmp_win->icon->w; 231 else if(! tmp_win->icon || w != tmp_win->icon->w) { 370 tmp_win->icon->w_x = origDragX; 371 tmp_win->icon->w_y = origDragY; 515 else if(t->icon && DragWindow == t->icon [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xwin/ |
| H A D | winmultiwindowicons.c | 55 * Scale an X icon bitmap into a Windoze icon bitmap 93 /* Allocate memory for icon data */ 102 /* Get icon data */ 115 /* Out-of-bounds, fill icon with zero */ 131 /* Out of X icon bounds, leave space blank */ 177 /* Out of X icon bounds, leave space blank */ 220 /* Out of X icon bounds, leave space blank */ 261 NetWMToWinIconAlpha(uint32_t *icon) argument 263 int width = icon[ 302 NetWMToWinIconThreshold(uint32_t * icon) argument 347 NetWMToWinIcon(int bpp,uint32_t * icon) argument 421 uint32_t *icon, *icon_data = NULL; local in function:winXIconToHICON [all...] |
| H A D | winprefsyacc.y | 356 if (pref.icon != NULL) { 357 ErrorF("LoadPreferences: Redefining icon mappings\n"); 358 free(pref.icon); 359 pref.icon = NULL; 367 if (pref.icon==NULL) 368 pref.icon = (ICONITEM*)malloc(sizeof(ICONITEM)); 370 pref.icon = (ICONITEM*) 371 realloc(pref.icon, sizeof(ICONITEM)*(pref.iconItems+1)); 373 strncpy(pref.icon[pref.iconItems].match, matchstr, MENU_MAX); 374 pref.icon[pre [all...] |
| H A D | winprefs.c | 65 /* Local function to handle comma-ified icon names */ 181 /* Reset the window's icon to undefined. */ 184 /* If the old icon is generated on-the-fly, get rid of it, will regen */ 187 /* Same for the small icon */ 198 /* winUpdateIcon() will set the icon default, dynamic, or from xwinrc */ 255 if (pref.icon[i].hicon) 256 DestroyIcon ((HICON)pref.icon[i].hicon); 257 free (pref.icon); 258 pref.icon = NULL; 261 /* Free global default X icon */ [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xwin/ |
| H A D | winmultiwindowicons.c | 59 * Scale an X icon ZPixmap into a Windoze icon bitmap 92 /* Get icon data */ 103 /* Out-of-bounds, fill icon with zero */ 116 /* Out of X icon bounds, leave space blank */ 158 /* Out of X icon bounds, leave space blank */ 198 /* Out of X icon bounds, leave space blank */ 236 NetWMToWinIconAlpha(uint32_t * icon) argument 238 int width = icon[0]; 239 int height = icon[ 285 NetWMToWinIconThreshold(uint32_t * icon) argument 336 NetWMToWinIcon(int bpp,uint32_t * icon) argument 388 uint32_t *icon, *icon_data = NULL; local in function:winXIconToHICON [all...] |
| H A D | winprefsyacc.y | 353 if (pref.icon != NULL) { 354 ErrorF("LoadPreferences: Redefining icon mappings\n"); 355 free(pref.icon); 356 pref.icon = NULL; 364 if (pref.icon==NULL) 365 pref.icon = malloc(sizeof(ICONITEM)); 367 pref.icon = realloc(pref.icon, sizeof(ICONITEM)*(pref.iconItems+1)); 369 strncpy(pref.icon[pref.iconItems].match, matchstr, MENU_MAX); 370 pref.icon[pre [all...] |
| H A D | winprefs.c | 155 /* Reset the window's icon to undefined. */ 158 /* If the old icon is generated on-the-fly, get rid of it, will regen */ 161 /* Same for the small icon */ 171 /* Send a message to WM thread telling it re-evaluate the icon for this window */ 240 if (pref.icon[i].hicon) 241 DestroyIcon((HICON) pref.icon[i].hicon); 242 free(pref.icon); 243 pref.icon = NULL; 246 /* Free global default X icon */ 453 * Possibly add a menu to the toolbar icon [all...] |
| /xsrc/external/mit/libXaw/dist/include/X11/Xaw/ |
| H A D | DialogP.h | 72 Pixmap icon; /* icon bitmap */ member in struct:_DialogPart 75 Widget iconW; /* widget to display the icon */
|
| /xsrc/external/mit/xmag/dist/ |
| H A D | Makefile.am | 50 EXTRA_DIST = Scale.txt xmag.icon README.md
|
| /xsrc/external/mit/libXpm/dist/sxpm/ |
| H A D | sxpm.c | 132 static XpmIcon view, icon; variable in typeref:typename:XpmIcon 135 {"-icon", ".icon", XrmoptionSepArg, (XtPointer) NULL}, 233 * icon management 236 if (XrmGetResource(xrdb, "sxpm.icon", "", &stype, &val) 237 || XrmGetResource(xrdb, "Sxpm.icon", "", &stype, &val)) { 254 icon.attributes.valuemask = XpmReturnAllocPixels; 255 ErrorStatus = XpmReadFileToPixmap(dpy, root, iconFile, &icon.pixmap, 256 &icon.mask, &icon [all...] |
| /xsrc/external/mit/twm/dist/src/ |
| H A D | iconmgr.h | 45 Window icon; member in struct:WList 56 struct IconMgr *next; /* pointer to the next icon manager */ 57 struct IconMgr *prev; /* pointer to the previous icon mgr */ 58 struct IconMgr *lasti; /* pointer to the last icon mgr */ 64 Window w; /* this icon manager window */
|
| H A D | iconmgr.c | 54 * create all the icon manager windows for this screen. 115 * allocate a new icon manager 117 * \param name the name of this icon manager 118 * \param con_name the name of the associated icon 120 * \param columns the number of columns this icon manager has 160 * move the pointer around in an icon manager 251 twmWarning("unable to find window (%d, %d) in icon manager", 259 /* raise the frame so the icon manager is visible */ 262 XWarpPointer(dpy, None, tmp->icon, 0, 0, 0, 0, 5, 5); 279 * jump from one icon manage [all...] |
| /xsrc/external/mit/xbitmaps/dist/ |
| H A D | Makefile.am | 37 icon \ data in directory:bitmap
|
| /xsrc/external/mit/xorg-server/dist/hw/xnest/ |
| H A D | Makefile.am | 57 EXTRA_DIST = icon \
|
| /xsrc/external/mit/libXaw/dist/src/ |
| H A D | Dialog.c | 114 XtOffsetOf(DialogRec, dialog.icon), 204 if (dw->dialog.icon != (Pixmap)0) { 205 XtSetArg(arglist[arg_cnt], XtNbitmap, dw->dialog.icon); arg_cnt++; 207 dw->dialog.iconW = XtCreateManagedWidget("icon", labelWidgetClass, 291 if (w->dialog.icon != 0) { 292 XtSetArg(args[0], XtNbitmap, w->dialog.icon); 299 w->dialog.iconW = XtCreateWidget("icon", labelWidgetClass, 306 else if (old->dialog.icon != 0) {
|