Searched defs:widest (Results 1 - 5 of 5) sorted by relevance
/solaris-x11-s11/open-src/lib/libXaw4/sun-src/ |
H A D | Xaw3_1SimpleMenu.c | 1130 * Description: Sets the length of the widest entry in pixels. 1141 Dimension width, widest = (Dimension) 0; local 1163 if ( width > widest ) 1164 widest = width; 1167 return(widest); 1171 * Description: Sets the length of the widest entry in pixels.
|
H A D | Xaw3_1Text.c | 942 * Description: Returns the width (in pixels) of the widest line that 945 * Returns: the width of the widest line. 955 Dimension widest; local 958 for (i = 0, widest = 1 ; i < lt->lines ; i++) 959 if (widest < lt->info[i].textWidth) 960 widest = lt->info[i].textWidth; 962 return(widest); 1015 float first, last, widest; local 1023 widest = (ctx->core.width - ctx->text.vbar->core.width - 1026 widest [all...] |
/solaris-x11-s11/open-src/lib/libXaw5/sun-src/ |
H A D | SimpleMenu.c | 1167 * Description: Sets the length of the widest entry in pixels. 1178 Dimension width, widest = (Dimension) 0; local 1200 if ( width > widest ) 1201 widest = width; 1204 return(widest); 1208 * Description: Sets the length of the widest entry in pixels.
|
H A D | Text.c | 1034 * Description: Returns the width (in pixels) of the widest line that 1037 * Returns: the width of the widest line. 1047 Dimension widest; local 1050 for (i = 0, widest = 1 ; i < lt->lines ; i++) 1051 if (widest < lt->info[i].textWidth) 1052 widest = lt->info[i].textWidth; 1054 return(widest); 1119 float first, last, widest; local 1128 widest = (int)(ctx->core.width - ctx->text.vbar->core.width - 1131 widest [all...] |
/solaris-x11-s11/open-src/app/accessx/sun-src/ |
H A D | AccessX.c | 3026 int widest = 0; local 3028 /* Find the widest button. 3032 if (XtWidth(widgets[i]) > widest) 3033 widest = XtWidth(widgets[i]); 3038 XtSetArg(argList[0], XmNwidth, widest); 3044 argList[1].value = widest * (i - numWidgets) / (numWidgets + 1);
|
Completed in 160 milliseconds