• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/

Lines Matching defs:centreY

36 static void DrawBox(Surface *surface, int centreX, int centreY, int armSize, ColourAllocated fore, ColourAllocated back) {
39 rc.top = centreY - armSize;
41 rc.bottom = centreY + armSize + 1;
45 static void DrawCircle(Surface *surface, int centreX, int centreY, int armSize, ColourAllocated fore, ColourAllocated back) {
48 rcCircle.top = centreY - armSize;
50 rcCircle.bottom = centreY + armSize + 1;
54 static void DrawPlus(Surface *surface, int centreX, int centreY, int armSize, ColourAllocated fore) {
55 PRectangle rcV(centreX, centreY - armSize + 2, centreX + 1, centreY + armSize - 2 + 1);
57 PRectangle rcH(centreX - armSize + 2, centreY, centreX + armSize - 2 + 1, centreY+1);
61 static void DrawMinus(Surface *surface, int centreX, int centreY, int armSize, ColourAllocated fore) {
62 PRectangle rcH(centreX - armSize + 2, centreY, centreX + armSize - 2 + 1, centreY+1);
78 int centreY = (rc.bottom + rc.top) / 2;
95 rcCircle.top = centreY - dimOn2;
97 rcCircle.bottom = centreY + dimOn2;
101 Point(centreX - dimOn4, centreY - dimOn2),
102 Point(centreX - dimOn4, centreY + dimOn2),
103 Point(centreX + dimOn2 - dimOn4, centreY),
110 Point(centreX - dimOn2, centreY - dimOn4),
111 Point(centreX + dimOn2, centreY - dimOn4),
112 Point(centreX, centreY + dimOn2 - dimOn4),
119 Point(centreX - armSize, centreY - 1),
120 Point(centreX - 1, centreY - 1),
121 Point(centreX - 1, centreY - armSize),
122 Point(centreX + 1, centreY - armSize),
123 Point(centreX + 1, centreY - 1),
124 Point(centreX + armSize, centreY -1),
125 Point(centreX + armSize, centreY +1),
126 Point(centreX + 1, centreY + 1),
127 Point(centreX + 1, centreY + armSize),
128 Point(centreX - 1, centreY + armSize),
129 Point(centreX - 1, centreY + 1),
130 Point(centreX - armSize, centreY + 1),
137 Point(centreX - armSize, centreY - 1),
138 Point(centreX + armSize, centreY -1),
139 Point(centreX + armSize, centreY +1),
140 Point(centreX - armSize, centreY + 1),
192 DrawBox(surface, centreX, centreY, blobSize, fore.allocated, back.allocated);
193 DrawPlus(surface, centreX, centreY, blobSize, back.allocated);
197 DrawBox(surface, centreX, centreY, blobSize, fore.allocated, back.allocated);
198 DrawPlus(surface, centreX, centreY, blobSize, back.allocated);
200 surface->MoveTo(centreX, centreY + blobSize);
204 surface->LineTo(centreX, centreY - blobSize);
208 DrawBox(surface, centreX, centreY, blobSize, fore.allocated, back.allocated);
209 DrawMinus(surface, centreX, centreY, blobSize, back.allocated);
211 surface->MoveTo(centreX, centreY + blobSize);
216 DrawBox(surface, centreX, centreY, blobSize, fore.allocated, back.allocated);
217 DrawMinus(surface, centreX, centreY, blobSize, back.allocated);
219 surface->MoveTo(centreX, centreY + blobSize);
223 surface->LineTo(centreX, centreY - blobSize);
226 DrawCircle(surface, centreX, centreY, blobSize, fore.allocated, back.allocated);
228 DrawPlus(surface, centreX, centreY, blobSize, back.allocated);
231 DrawCircle(surface, centreX, centreY, blobSize, fore.allocated, back.allocated);
233 DrawPlus(surface, centreX, centreY, blobSize, back.allocated);
235 surface->MoveTo(centreX, centreY + blobSize);
239 surface->LineTo(centreX, centreY - blobSize);
242 DrawCircle(surface, centreX, centreY, blobSize, fore.allocated, back.allocated);
244 DrawMinus(surface, centreX, centreY, blobSize, back.allocated);
246 surface->MoveTo(centreX, centreY + blobSize);
250 DrawCircle(surface, centreX, centreY, blobSize, fore.allocated, back.allocated);
252 DrawMinus(surface, centreX, centreY, blobSize, back.allocated);
254 surface->MoveTo(centreX, centreY + blobSize);
258 surface->LineTo(centreX, centreY - blobSize);
280 surface->MoveTo(right - 4, centreY - 4);
281 surface->LineTo(right, centreY);
282 surface->LineTo(right - 5, centreY + 5);
287 Point(centreX, centreY + dimOn2),
288 Point(centreX + dimOn2, centreY),
289 Point(centreX, centreY - dimOn2),
290 Point(centreX, centreY - dimOn4),
291 Point(centreX - dimOn4, centreY - dimOn4),
292 Point(centreX - dimOn4, centreY + dimOn4),
293 Point(centreX, centreY + dimOn4),
294 Point(centreX, centreY + dimOn2),