Searched defs:display (Results 1 - 25 of 30) sorted by relevance

12

/ast/src/lib/libtk/unix/
H A DtkUnixDraw.c23 Display *display; /* Display to filter. */ member in struct:ScrollInfo
74 info.display = Tk_Display(tkwin);
85 XSync(info.display, False);
129 if (info->done || (eventPtr->xany.display != info->display)
H A DtkUnixCursor.c27 Display *display; /* Display for which cursor is valid. */ member in struct:__anon424
160 Display *display = Tk_Display(tkwin);
199 if (XParseColor(display, Tk_Colormap(tkwin), argv[1],
209 if (XParseColor(display, Tk_Colormap(tkwin), argv[2],
219 dispPtr->cursorFont = XLoadFont(display, CURSORFONT);
225 cursor = XCreateGlyphCursor(display, dispPtr->cursorFont,
242 if (XReadBitmapFile(display,
256 if (XParseColor(display, Tk_Colormap(tkwin), argv[1],
262 cursor = XCreatePixmapCursor(display, source, source,
265 if (XReadBitmapFile(display,
159 Display *display = Tk_Display(tkwin); local
349 Display *display = Tk_Display(tkwin); local
[all...]
/ast/src/lib/libtk/generic/
H A DtkGC.c22 * based on the display and GC identifier.
27 Display *display; /* Display to which gc belongs. */ member in struct:__anon400
41 Display *display; /* Display for which GC is valid. */ member in struct:__anon401
42 int screenNum; /* screen number of display */
47 * Hash table for <display + GC> -> TkGC mapping. This table is used by
53 Display *display; /* Display for which GC was allocated. */ member in struct:__anon402
238 valueKey.display = Tk_Display(tkwin);
265 DefaultDepth(valueKey.display, valueKey.screenNum)) {
266 d = RootWindow(valueKey.display, valueKey.screenNum);
268 d = Tk_GetPixmap(valueKey.display,
[all...]
H A DtkCursor.c35 Display *display; /* Display for which cursor will be used. */ member in struct:__anon393
51 Display *display; /* Display on which cursor will be used. */ member in struct:__anon394
55 * Hash table that maps from <display + cursor id> to the TkCursor structure
61 Display *display; /* Display for which cursor was allocated. */ member in struct:__anon395
118 nameKey.display = Tk_Display(tkwin);
140 idKey.display = nameKey.display;
209 dataKey.display = Tk_Display(tkwin);
222 if (XParseColor(dataKey.display, Tk_Colormap(tkwin), fg, &fgColor) == 0) {
227 if (XParseColor(dataKey.display, Tk_Colorma
[all...]
H A DtkSquare.c30 Display *display; /* X's token for the window's display. */ member in struct:__anon418
50 * onto the display. */
151 squarePtr->display = Tk_Display(tkwin);
546 Tk_FreeOptions(configSpecs, (char *) squarePtr, squarePtr->display, 0);
548 Tk_FreeGC(squarePtr->display, squarePtr->gc);
H A DtkBitmap.c44 Display *display; /* Display for which bitmap is valid. */ member in struct:__anon385
63 * Hash table that maps from <display + bitmap id> to the TkBitmap structure
69 Display *display; /* Display for which bitmap was allocated. */ member in struct:__anon387
226 bitmapPtr->display = Tk_Display(tkwin);
229 idKey.display = bitmapPtr->display;
316 Tk_NameOfBitmap(display, bitmap)
317 Display *display; /* Display for which bitmap was
331 idKey.display = display;
[all...]
H A DtkColor.c33 * each color that this module has allocated from the X display
49 * to delete it, and to find its display. */
70 Display *display; /* Display for colormap. */ member in struct:__anon391
83 Display *display; /* Display for colormap. */ member in struct:__anon392
113 * colormaps for the display. */
121 static void DeleteStressedCmap _ANSI_ARGS_((Display *display,
164 Display *display = Tk_Display(tkwin);
177 nameKey.display = display;
194 if (XAllocNamedColor(display, nameKe
163 Display *display = Tk_Display(tkwin); local
280 Display *display = Tk_Display(tkwin); local
[all...]
H A DtkFont.c32 * displaying character, display a replacement
37 * SKIP: Don't display anything for this character. This
60 Display *display; /* Display to which font belongs. */ member in struct:__anon397
79 Display *display; /* Display for which font is valid. */ member in struct:__anon398
174 nameKey.display = Tk_Display(tkwin);
187 fontStructPtr = XLoadQueryFont(nameKey.display, name);
195 fontPtr->display = nameKey.display;
301 * Tk_FreeXId(fontPtr->display, (XID) fontPtr->fontStructPtr->fid);
304 XFreeFont(fontPtr->display, fontPt
[all...]
H A DtkFrame.c31 Display *display; /* Display containing widget. Used, among member in struct:__anon399
359 framePtr->display = Tk_Display(new);
522 Tk_FreeOptions(configSpecs, (char *) framePtr, framePtr->display,
525 Tk_FreeColormap(framePtr->display, framePtr->colormap);
594 * This procedure is invoked to display a frame widget.
600 * Commands are output to X to display the frame in its
H A DtkImage.c22 * display images.
29 Display *display; /* Display for tkwin. Needed because when member in struct:Image
230 imagePtr->instanceData, imagePtr->display);
358 * Any widgets that display the image are notified so that they
468 imagePtr->display = Tk_Display(tkwin);
518 imagePtr->display);
568 Drawable drawable; /* Drawable in which to display image
580 * No master for image, so nothing to display.
607 imagePtr->instanceData, imagePtr->display, drawable,
654 * The image is destroyed; existing instances will display a
[all...]
H A DtkMessage.c30 Display *display; /* Display containing widget. Used, among member in struct:__anon411
77 * needed to display message. */
228 msgPtr->display = Tk_Display(new);
376 Tk_FreeGC(msgPtr->display, msgPtr->textGC);
378 Tk_FreeOptions(configSpecs, (char *) msgPtr, msgPtr->display, 0);
432 * If the message is to display the value of a variable, then set up
475 Tk_FreeGC(msgPtr->display, msgPtr->textGC);
667 * Work through the string to display one line at a time.
669 * line's width, then figure out where to display the
670 * line to justify it properly, then display th
[all...]
H A DtkCanvas.h34 Display *display; /* Display containing widget; needed, among member in struct:TkCanvas
231 * as part of the next display operation.
H A DtkCmds.c780 Display *display;
798 * Handle all pending events, sync the display, and repeat over
806 display = Tk_Display(tkwin);
811 XSync(display, False);
769 Display *display; local
H A DtkGrab.c90 Display *display; /* Display from which to discard events. */ member in struct:__anon403
113 * the grabWinPtr field of a display. This event guarantees that
121 Window grabWindow; /* New grab window for display. This is
391 XQueryPointer(dispPtr->display, winPtr->window, &dummy1,
409 XUngrabPointer(dispPtr->display, CurrentTime);
410 serial = NextRequest(dispPtr->display);
424 grabResult = XGrabPointer(dispPtr->display, winPtr->window,
452 grabResult = XGrabKeyboard(dispPtr->display, Tk_WindowId(tkwin),
455 XUngrabPointer(dispPtr->display, CurrentTime);
537 serial = NextRequest(dispPtr->display);
[all...]
H A DtkMenubutton.c29 Display *display; /* Display containing widget. Needed, among member in struct:__anon410
41 char *text; /* Text to display in button (malloc'ed)
48 Pixmap bitmap; /* Bitmap to display or None. If not None
51 char *imageString; /* Name of image to display (malloc'ed), or
54 Tk_Image image; /* Image to display in window, or NULL if
61 Tk_Uid state; /* State of button for display purposes:
121 int textWidth; /* Width needed to display text as requested,
123 int textHeight; /* Height needed to display text as requested,
125 int indicatorOn; /* Non-zero means display indicator; 0 means
126 * don't display
[all...]
H A DtkScrollbar.c31 Display *display; /* Display containing widget. Used, among member in struct:__anon416
313 scrollPtr->display = Tk_Display(new);
676 Tk_FreeGC(scrollPtr->display, scrollPtr->troughGC);
679 Tk_FreeGC(scrollPtr->display, scrollPtr->copyGC);
681 Tk_FreeOptions(configSpecs, (char *) scrollPtr, scrollPtr->display, 0);
754 Tk_FreeGC(scrollPtr->display, scrollPtr->troughGC);
826 pixmap = Tk_GetPixmap(scrollPtr->display, Tk_WindowId(tkwin),
844 XFillRectangle(scrollPtr->display, pixmap, scrollPtr->troughGC,
948 XCopyArea(scrollPtr->display, pixmap, Tk_WindowId(tkwin),
951 Tk_FreePixmap(scrollPtr->display, pixma
[all...]
H A Dtk3d.c238 Display *display = Tk_Display(tkwin);
244 XFillRectangle(display, drawable,
248 XFillRectangle(display, drawable,
261 XFillRectangle(display, drawable, left, x, y, (unsigned) half,
263 XFillRectangle(display, drawable, right, x+half, y,
270 XFillRectangle(display, drawable, borderPtr->bgGC, x, y,
321 Display *display = Tk_Display(tkwin);
390 XFillRectangle(display, drawable,
573 Display *display = DisplayOfScreen(borderPtr->screen);
587 Tk_FreeBitmap(display, borderPt
236 Display *display = Tk_Display(tkwin); local
318 Display *display = Tk_Display(tkwin); local
565 Display *display = DisplayOfScreen(borderPtr->screen); local
755 Display *display = Tk_Display(tkwin); local
[all...]
H A DtkButton.c29 Display *display; /* Display containing widget. Needed to member in struct:__anon390
41 char *text; /* Text to display in button (malloc'ed)
49 Pixmap bitmap; /* Bitmap to display or None. If not None
51 char *imageString; /* Name of image to display (malloc'ed), or
54 Tk_Image image; /* Image to display in window, or NULL if
56 char *selectImageString; /* Name of image to display when selected
58 Tk_Image selectImage; /* Image to display in window when selected,
66 Tk_Uid state; /* State of button for display purposes:
132 int textWidth; /* Width needed to display text as requested,
134 int textHeight; /* Height needed to display tex
[all...]
H A DtkWindow.c162 static char *display; variable
171 {"-display", TK_ARGV_STRING, (char *) NULL, (char *) &display,
178 "Use synchronous mode for display server"},
330 * Given a string name for a display-plus-screen, find the
331 * TkDisplay structure for the display and return the screen
335 * The return value is a pointer to information about the display,
336 * or NULL if the display couldn't be opened. In this case, an
342 * A new connection is opened to the display if there is no
362 * Separate the screen number from the rest of the display
390 Display *display; local
[all...]
H A DtkEntry.c30 Display *display; /* Display containing widget. Used, among member in struct:__anon396
361 entryPtr->display = Tk_Display(new);
827 Tk_FreeGC(entryPtr->display, entryPtr->textGC);
830 Tk_FreeGC(entryPtr->display, entryPtr->selTextGC);
836 Tk_FreeOptions(configSpecs, (char *) entryPtr, entryPtr->display, 0);
932 Tk_FreeGC(entryPtr->display, entryPtr->textGC);
940 Tk_FreeGC(entryPtr->display, entryPtr->selTextGC);
1037 pixmap = Tk_GetPixmap(entryPtr->display, Tk_WindowId(tkwin),
1134 TkDisplayChars(entryPtr->display, pixmap, entryPtr->textGC,
1141 TkDisplayChars(entryPtr->display, pixma
[all...]
H A DtkInt.h55 * One of the following structures is maintained for each display
60 Display *display; /* Xlib's info about display. */ member in struct:TkDisplay
62 char *name; /* Name of display (with any screen
65 * display. */
98 * for this display. NULL means
127 * selection on this display. */
212 XID (*defaultAllocProc) _ANSI_ARGS_((Display *display));
213 /* Default resource allocator for display. */
240 * allocated for this display
417 Display *display; /* Display containing window. */ member in struct:TkWindow
[all...]
H A DtkListbox.c55 Display *display; /* Display containing widget. Used, among member in struct:__anon409
97 * in display. */
359 listPtr->display = Tk_Display(new);
914 Tk_FreeGC(listPtr->display, listPtr->textGC);
917 Tk_FreeGC(listPtr->display, listPtr->selTextGC);
919 Tk_FreeOptions(configSpecs, (char *) listPtr, listPtr->display, 0);
982 Tk_FreeGC(listPtr->display, listPtr->textGC);
990 Tk_FreeGC(listPtr->display, listPtr->selTextGC);
1067 pixmap = Tk_GetPixmap(listPtr->display, Tk_WindowId(tkwin),
1147 XDrawString(listPtr->display, pixma
[all...]
H A DtkMenu.c37 Pixmap bitmap; /* Bitmap to display in menu entry, or None.
39 char *imageString; /* Name of image to display (malloc'ed), or
42 Tk_Image image; /* Image to display in menu entry, or NULL if
44 char *selectImageString; /* Name of image to display when selected
46 Tk_Image selectImage; /* Image to display in entry when selected,
59 Tk_Uid state; /* State of button for display purposes:
67 int indicatorDiameter; /* Size of indicator display, in pixels. */
249 Display *display; /* Display containing widget. Needed, among member in struct:Menu
513 menuPtr->display = Tk_Display(new);
910 XRaiseWindow(menuPtr->display, Tk_WindowI
[all...]
H A DtkScale.c37 Display *display; /* Display containing widget. Used, among member in struct:__anon415
60 * don't display any tick marks. */
78 char *label; /* Label to display above or to right of
79 * scale; NULL means don't display a
116 int showValue; /* Non-zero means to display the scale value
118 * means don't display the value. */
395 scalePtr->display = Tk_Display(new);
653 Tk_FreeGC(scalePtr->display, scalePtr->troughGC);
656 Tk_FreeGC(scalePtr->display, scalePtr->copyGC);
659 Tk_FreeGC(scalePtr->display, scalePt
[all...]
/ast/src/lib/libast/comp/
H A Dfmtmsg.h50 /* classification display */
91 const char* display; member in struct:__anon249

Completed in 80 milliseconds

12