Home
last modified time | relevance | path

Searched refs:id_canvas (Results 1 – 5 of 5) sorted by relevance

/dports/editors/cudatext/CudaText-1.151.0/app/py/cuda_testing_gaps/
H A D__init__.py9 id_bitmap, id_canvas = ed.gap(GAP_MAKE_BITMAP, 600, 50)
10 canvas_proc(id_canvas, CANVAS_SET_BRUSH, color=0xa0ffa0)
11 canvas_proc(id_canvas, CANVAS_SET_ANTIALIAS, style=ANTIALIAS_ON)
12 canvas_proc(id_canvas, CANVAS_POLYGON, '200,0,300,30,200,49')
13 canvas_proc(id_canvas, CANVAS_SET_BRUSH, color=0xffffff, style=BRUSH_CLEAR)
14 canvas_proc(id_canvas, CANVAS_TEXT, x=230, y=10, text='gap %d'%(num+1))
15 canvas_proc(id_canvas, CANVAS_SET_BRUSH, color=0xffffff, style=BRUSH_SOLID)
/dports/editors/cudatext/CudaText-1.151.0/app/py/cuda_testing_dlg_proc/
H A D__init__.py146 id_canvas = data['canvas']
161 canvas_proc(id_canvas, CANVAS_SET_FONT, text='default', color=color, style=style)
171 canvas_proc(id_canvas, CANVAS_SET_BRUSH, color=0x6060D0, style=BRUSH_SOLID)
174 canvas_proc(id_canvas, CANVAS_TEXT,
859 id_bitmap, id_canvas = ed.gap(GAP_MAKE_BITMAP, 600, 50)
860 canvas_proc(id_canvas, CANVAS_SET_BRUSH, color=0xa0ffa0)
861 canvas_proc(id_canvas, CANVAS_SET_ANTIALIAS, style=ANTIALIAS_ON)
862 canvas_proc(id_canvas, CANVAS_POLYGON, '200,0,300,30,200,49')
863 canvas_proc(id_canvas, CANVAS_SET_BRUSH, color=0xffffff, style=BRUSH_CLEAR)
864 canvas_proc(id_canvas, CANVAS_TEXT, x=230, y=10, text='gap %d'%(num+1))
[all …]
/dports/editors/cudatext/CudaText-1.151.0/app/cudatext.app/Contents/Resources/py/
H A Dcudatext.py1147 def canvas_proc(id_canvas, id_action, text='', color=-1, size=-1, x=-1, y=-1, x2=-1, y2=-1, style=-… argument
1148 return ct.canvas_proc(id_canvas, id_action, text, color, size, x, y, x2, y2, style, p1, p2)
/dports/editors/cudatext/CudaText-1.151.0/app/py/
H A Dcudatext.py1147 def canvas_proc(id_canvas, id_action, text='', color=-1, size=-1, x=-1, y=-1, x2=-1, y2=-1, style=-… argument
1148 return ct.canvas_proc(id_canvas, id_action, text, color, size, x, y, x2, y2, style, p1, p2)
/dports/editors/cudatext/CudaText-1.151.0/app/readme/wiki/
H A Dcudatext_api.wiki1628 canvas_proc(id_canvas, id_action,
2935 … new bitmap for future gap. Size of bitmap is (num1, num2). Returns 2-tuple (id_bitmap, id_canvas).
2937 ** "id_canvas": canvas handle, needed to paint on bitmap, by canvas_proc().
2963 id_bitmap, id_canvas = ed.gap(GAP_MAKE_BITMAP, 600, 50)
2964 canvas_proc(id_canvas, CANVAS_SET_BRUSH, color=0xa0ffa0)
2965 canvas_proc(id_canvas, CANVAS_POLYGON, '200,0,300,30,200,50')
2966 canvas_proc(id_canvas, CANVAS_SET_BRUSH, color=0xffffff, style=BRUSH_CLEAR)
2967 canvas_proc(id_canvas, CANVAS_TEXT, x=230, y=10, text='gap %d'%(num+1))
2968 canvas_proc(id_canvas, CANVAS_SET_BRUSH, color=0xffffff, style=BRUSH_SOLID)