Searched refs:width (Results 176 - 200 of 2232) sorted by relevance

1234567891011>>

/macosx-10.10.1/emacs-93/emacs/src/
H A Dw32gui.h33 short width; member in struct:_XCharStruct
139 #define USSize (1L << 1) /* user specified width, height */
155 unsigned width, height; member in struct:__anon8552
163 (xr).width = ((nr).right - (nr).left), \
169 (nr).right = ((xr).x + (xr).width), \
172 #define STORE_NATIVE_RECT(nr,x,y,width,height) \
175 (nr).right = ((nr).left + (width)), \
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/blt/
H A Dwinop.rb47 def image_snap(win, photo, width=None, height=None)
48 tk_call('::blt::winop', 'image', 'snap', win, photo, width, height)
50 def image_subsample(src, dest, x, y, width, height,
53 src, dest, x, y, width, height, horiz_filter, vert_filter)
73 def subsample(src, dest, x, y, width, height,
76 src, dest, x, y, width, height, horiz_filter, vert_filter)
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/tkextlib/vu/
H A Doscilloscope.rb22 c = TkCanvas.new(:width=>220, :height=>190).pack(:fill=>:both, :expand=>true)
25 TkcRectangle.new(c, geo_fr, :width=>4, :fill=>'aquamarine3',
41 TkcRectangle.new(c, geo_fr, :width=>4, :tags=>['osc', 'frfg'])
/macosx-10.10.1/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DTestSequence.tcl15 set width [image width $imageList]
28 .m tracks new video $width $height
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/base/
H A DtkimgUtils.c213 int **width,
223 *height = *width;
224 *width = (int *) *format;
236 int **width,
246 *height = *width;
247 *width = (int *) *format;
204 tkimg_FixChanMatchProc( Tcl_Interp **interp, Tcl_Channel *chan, const char **file, Tcl_Obj **format, int **width, int **height ) argument
227 tkimg_FixObjMatchProc( Tcl_Interp **interp, Tcl_Obj **data, Tcl_Obj **format, int **width, int **height ) argument
/macosx-10.10.1/tcl-105/tk/tk/library/demos/
H A Darrow.tcl39 -width [expr {10*$v(width)}] -arrowshape [list \
43 set deltaY [expr {10*$v(c)+5*$v(width)}]
46 $v(x2) $v(y) -width 2 -capstyle round -joinstyle round
56 eval {$c create rect [expr {$v(x1)-5}] [expr {$v(y)-5*$v(width)-5}] \
57 [expr {$v(x1)+5}] [expr {$v(y)-5*$v(width)+5}] \
66 -width 2
69 -width $v(width) \
72 -width
[all...]
H A Dspin.tcl42 spinbox $w.s1 -from 1 -to 10 -width 10 -validate key \
44 spinbox $w.s2 -from 0 -to 3 -increment .5 -format %05.2f -width 10
45 spinbox $w.s3 -values $australianCities -width 10
/macosx-10.10.1/tcl-105/tk/tk/macosx/
H A DtkMacOSXMenubutton.c197 frame.size.width -= boundsFix.shrinkW;
208 TKLog(@"menubutton %s frame %@ width %d height %d",
246 int width, height;
309 int width, height;
314 Tk_SizeOfImage(mbPtr->image, &width, &height);
316 mbPtr->image, width, height);
318 Tk_SizeOfBitmap(mbPtr->display, mbPtr->bitmap, &width, &height);
320 mbPtr->bitmap, mbPtr->normalTextGC, width, height);
352 bounds.size.width -= 16;
361 titleRect.size.width > mbPt
242 int width, height; local
305 int width, height; local
[all...]
/macosx-10.10.1/tcl-105/tk/tk/win/
H A DtkWinImage.c215 unsigned int width,
221 imagePtr->width = width;
248 imagePtr->bytes_per_line = (((depth * width)
293 unsigned int width, unsigned int height,
323 hbmp = CreateCompatibleBitmap(hdc, (int) width, (int) height);
340 ret = BitBlt(hdcMem, 0, 0, (int) width, (int) height, hdc, x, y, SRCCOPY);
363 bmInfo->bmiHeader.biWidth = width;
385 width, height, 32, (int) ((width
204 XCreateImage( Display *display, Visual *visual, unsigned int depth, int format, int offset, char *data, unsigned int width, unsigned int height, int bitmap_pad, int bytes_per_line) argument
284 XGetImageZPixmap( Display *display, Drawable d, int x, int y, unsigned int width, unsigned int height, unsigned long plane_mask, int format) argument
578 XGetImage( Display* display, Drawable d, int x, int y, unsigned int width, unsigned int height, unsigned long plane_mask, int format) argument
[all...]
/macosx-10.10.1/tcl-105/tk84/tk/library/demos/
H A Darrow.tcl37 -width [expr {10*$v(width)}] -arrowshape [list \
41 set deltaY [expr {10*$v(c)+5*$v(width)}]
44 $v(x2) $v(y) -width 2 -capstyle round -joinstyle round
54 eval {$c create rect [expr {$v(x1)-5}] [expr {$v(y)-5*$v(width)-5}] \
55 [expr {$v(x1)+5}] [expr {$v(y)-5*$v(width)+5}] \
64 -width 2
67 -width $v(width) \
70 -width
[all...]
H A Dhscale.tcl30 canvas $w.frame.canvas -width 50 -height 50 -bd 0 -highlightthickness 0
39 proc setWidth {w width} {
40 incr width 21
41 set x2 [expr {$width - 30}]
45 $w coords poly 20 15 20 35 $x2 35 $x2 45 $width 25 $x2 5 $x2 15 20 15
46 $w coords line 20 15 20 35 $x2 35 $x2 45 $width 25 $x2 5 $x2 15 20 15
H A Dspin.tcl42 spinbox $w.s1 -from 1 -to 10 -width 10 -validate key \
44 spinbox $w.s2 -from 0 -to 3 -increment .5 -format %05.2f -width 10
45 spinbox $w.s3 -values $australianCities -width 10
/macosx-10.10.1/tcl-105/tk/tk/unix/
H A DtkUnixButton.c61 /* width height ncolors chars_per_pixel */
368 int width, height, fullWidth, fullHeight;
456 Tk_SizeOfImage(butPtr->image, &width, &height);
459 Tk_SizeOfBitmap(butPtr->display, butPtr->bitmap, &width, &height);
462 imageWidth = width;
486 fullWidth = (width > butPtr->textWidth ? width :
489 imageXOffset = (fullWidth - width)/2;
498 textXOffset = width + butPtr->padX;
502 fullWidth = butPtr->textWidth + butPtr->padX + width;
365 int width, height, fullWidth, fullHeight; local
857 int width, height, avgWidth, txtWidth, txtHeight; local
[all...]
H A DtkUnixMenu.c58 int width, int height, int drawArrow);
62 int x, int y, int width, int heigth);
68 int width, int height);
72 int x, int y, int width, int height);
76 int x, int y, int width, int height);
80 int x, int y, int width, int height);
84 int x, int y, int width, int height);
338 int *widthPtr, /* The resulting width */
406 int *widthPtr, /* The width of the acclerator area */
448 int width, /* Widt
430 DrawMenuEntryBackground( TkMenu *menuPtr, TkMenuEntry *mePtr, Drawable d, Tk_3DBorder activeBorder, Tk_3DBorder bgBorder, int x, int y, int width, int height) argument
482 DrawMenuEntryAccelerator( TkMenu *menuPtr, TkMenuEntry *mePtr, Drawable d, GC gc, Tk_Font tkfont, CONST Tk_FontMetrics *fmPtr, Tk_3DBorder activeBorder, int x, int y, int width, int height, int drawArrow) argument
554 DrawMenuEntryIndicator( TkMenu *menuPtr, TkMenuEntry *mePtr, Drawable d, Tk_3DBorder border, XColor *indicatorColor, XColor *disableColor, Tk_Font tkfont, CONST Tk_FontMetrics *fmPtr, int x, int y, int width, int height) argument
628 DrawMenuSeparator( TkMenu *menuPtr, TkMenuEntry *mePtr, Drawable d, GC gc, Tk_Font tkfont, CONST Tk_FontMetrics *fmPtr, int x, int y, int width, int height) argument
671 DrawMenuEntryLabel( TkMenu *menuPtr, TkMenuEntry *mePtr, Drawable d, GC gc, Tk_Font tkfont, CONST Tk_FontMetrics *fmPtr, int x, int y, int width, int height) argument
848 DrawMenuUnderline( TkMenu *menuPtr, TkMenuEntry *mePtr, Drawable d, GC gc, Tk_Font tkfont, CONST Tk_FontMetrics *fmPtr, int x, int y, int width, int height) argument
1000 int width, height, i, j, x, y, currentRowHeight, maxWidth; local
1178 DrawTearoffEntry( TkMenu *menuPtr, TkMenuEntry *mePtr, Drawable d, GC gc, Tk_Font tkfont, CONST Tk_FontMetrics *fmPtr, int x, int y, int width, int height) argument
1321 TkpDrawMenuEntry( TkMenuEntry *mePtr, Drawable d, Tk_Font tkfont, CONST Tk_FontMetrics *menuMetricsPtr, int x, int y, int width, int height, int strictMotif, int drawArrow) argument
1589 int x, y, height, width, indicatorSpace, labelWidth, accelWidth; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/perldriver/
H A DOutput.pm214 th.testNameHeader { border-width: 1 }
215 th.testName { text-align: left; border-left-width: 1; border-right-width: 1;
216 border-bottom-width: 1 }
217 th.source { border-right-width: 1; border-bottom-width: 1 }
218 th.sourceType { border-right-width: 1; border-top-width: 1; border-bottom-width: 1 }
220 td.string { text-align: Left; border-bottom-width
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DBitmapContext.py25 def createRGBBitmapContext(width, height, wantDisplayColorSpace, needsTransparentBitmap):
26 # This routine allocates data for a pixel array that contains width*height
33 bytesPerRow = width*4;
59 context = CGBitmapContextCreate(rasterData, width, height, 8, bytesPerRow,
70 CGContextClearRect(context, CGRectMake(0, 0, width, height))
77 CGContextFillRect(context, CGRectMake(0, 0, width, height))
208 width = int(8.5*dpi)
218 c = createRGBBitmapContext(width, height, useDisplayColorSpace, needTransparentBitmap)
312 CGContextClipToRect(context, CGRectMake(0, 0, 8*s.width, 8*s.height))
326 CGContextTranslateCTM(context, 2*s.width,
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DBitmapContext.py25 def createRGBBitmapContext(width, height, wantDisplayColorSpace, needsTransparentBitmap):
26 # This routine allocates data for a pixel array that contains width*height
33 bytesPerRow = width*4;
59 context = CGBitmapContextCreate(rasterData, width, height, 8, bytesPerRow,
70 CGContextClearRect(context, CGRectMake(0, 0, width, height))
77 CGContextFillRect(context, CGRectMake(0, 0, width, height))
208 width = int(8.5*dpi)
218 c = createRGBBitmapContext(width, height, useDisplayColorSpace, needTransparentBitmap)
312 CGContextClipToRect(context, CGRectMake(0, 0, 8*s.width, 8*s.height))
326 CGContextTranslateCTM(context, 2*s.width,
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DBitmapContext.py25 def createRGBBitmapContext(width, height, wantDisplayColorSpace, needsTransparentBitmap):
26 # This routine allocates data for a pixel array that contains width*height
33 bytesPerRow = width*4;
59 context = CGBitmapContextCreate(rasterData, width, height, 8, bytesPerRow,
70 CGContextClearRect(context, CGRectMake(0, 0, width, height))
77 CGContextFillRect(context, CGRectMake(0, 0, width, height))
208 width = int(8.5*dpi)
218 c = createRGBBitmapContext(width, height, useDisplayColorSpace, needTransparentBitmap)
312 CGContextClipToRect(context, CGRectMake(0, 0, 8*s.width, 8*s.height))
326 CGContextTranslateCTM(context, 2*s.width,
[all...]
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_sprintf_comb.rb124 width = $6
127 width = width.to_i if width
238 if width && nlen < width
239 len = width - nlen
292 *FLAGS) {|type, width, precision, sp, hs, pl, mi, zr|
293 format = "%#{sp}#{hs}#{pl}#{mi}#{zr}#{width}#{precision}#{type}"
354 def emu_e(sp, hs, pl, mi, zr, width, precisio
[all...]
/macosx-10.10.1/tcl-105/tk/tk/generic/ttk/
H A DttkLabel.c42 int width; member in struct:__anon13324
60 { "-width", TK_OPTION_INT,
86 0/*flags*/, &text->width, &text->height);
92 * TextReqWidth -- compute the requested width of a text element.
94 * If -width is positive, use that as the width
95 * If -width is negative, use that as the minimum width
109 if (specWidth > text->width)
115 return text->width;
226 int width; member in struct:__anon13325
306 int width = image->width, height = image->height; local
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/samples/layout/
H A DSurface.cpp16 le_int32 x, le_int32 y, le_int32 width, le_int32 height)
23 clip.right = width;
15 drawGlyphs(RenderingFontInstance *font, const LEGlyphID *glyphs, le_int32 count, const le_int32 *dx, le_int32 x, le_int32 y, le_int32 width, le_int32 height) argument
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DColorWheel.css34 width: 5px;
H A DDividerNavigationItem.css27 width: 1px;
H A DGoToLineDialog.css30 width: calc(100% - 40px);
31 max-width: 452px;
42 width: 100%;
71 width: 18px;
/macosx-10.10.1/WebKit-7600.1.25/mac/Misc/
H A DWebNSPrintOperationExtras.m43 return [printInfo paperSize].width - [printInfo leftMargin] - [printInfo rightMargin];

Completed in 1071 milliseconds

1234567891011>>