/inkscape/src/ui/tools/ |
H A D | eraser-tool.h | 54 void brush();
|
H A D | calligraphic-tool.h | 81 void brush();
|
H A D | calligraphic-tool.cpp | 345 void CalligraphicTool::brush() { function in class:Inkscape::UI::Tools::CalligraphicTool 354 // get the real brush point, not the same as pointer (affected by hatch tracking and/or mass 356 Geom::Point brush = this->getViewPoint(this->cur); local 357 Geom::Point brush_w = SP_EVENT_CONTEXT(this)->desktop->d2w(brush); 411 this->point1[this->npoints] = brush + del_left; 412 this->point2[this->npoints] = brush - del_right; 679 this->brush();
|
H A D | eraser-tool.cpp | 293 void EraserTool::brush() { function in class:Inkscape::UI::Tools::EraserTool 302 // get the real brush point, not the same as pointer (affected by hatch tracking and/or mass 304 Geom::Point brush = getViewPoint(this->cur); local 305 //Geom::Point brush_w = SP_EVENT_CONTEXT(dc)->desktop->d2w(brush); 345 this->point1[this->npoints] = brush + del_left; 346 this->point2[this->npoints] = brush - del_right; 444 this->brush();
|
H A D | tweak-tool.cpp | 851 // get all the painting even if they are not touched by the brush 862 // wide brush, may affect more than 2 stops, 921 Geom::Rect brush(p - Geom::Point(radius, radius), p + Geom::Point(radius, radius)); 929 // else if no overlap of bbox and brush box, skip: 930 } else if (!bbox->intersects(brush)) { 933 // else if object > 1.5 brush: test 4/8/16 points in the brush on hitting the object, choose max 936 // else if object > 0.5 brush: test 4 corners of bbox and center on being in the brush, choose max
|
/inkscape/share/extensions/ |
H A D | print_win32_vector.py | 99 brush = LOGBRUSH(0, fillcolor, 0) 100 hBrush = mygdi.CreateBrushIndirect(addressof(brush))
|
/inkscape/src/extension/internal/ |
H A D | wmf-print.cpp | 272 // create a null brush. If no specific brush is set, this is used 278 destroy_brush(); // make this brush active 291 // get rid of null brush 294 g_error("Fatal programming error in PrintWmf::finish at wdeleteobject_set null brush"); 340 uint32_t brush, fmode; local 457 rec = wcreatebrushindirect_set(&brush, wht, lb); 478 rec = wcreatedibpatternbrush_srcdib_set(&brush, wht, U_DIB_RGB_COLORS, Bmi, cbPx, px); 487 hbrush = brush; // need this later for destroy_brush 488 rec = wselectobject_set(brush, wh [all...] |
H A D | emf-print.cpp | 348 uint32_t brush, fmode; local 467 rec = createbrushindirect_set(&brush, eht, lb); 488 rec = createdibpatternbrushpt_set(&brush, eht, U_DIB_RGB_COLORS, Bmi, cbPx, px); 497 hbrush = brush; // need this later for destroy_brush 498 rec = selectobject_set(brush, eht); 520 // never be used because we always select in a new one before drawing anythingrestore previous brush, necessary??? Would using a default stock object not work? 781 // never be used because we always select in a new one before drawing anythingrestore previous brush, necessary??? Would using a default stock object not work? 1495 // These use whatever the current pen/brush are and need not be followed by a FILLPATH or STROKEPATH. 1643 g_error("Fatal programming error in PrintEmf::print_simple_shape at selectobject_set brush"); 1681 g_error("Fatal programming error in PrintEmf::print_simple_shape at selectobject_set brush"); [all...] |
/inkscape/src/libuemf/ |
H A D | uwmf.h | 1523 uint16_t Brush; //!< Index of brush to use in object table 1534 uint16_t Brush; //!< Index of brush to use in frame in object table 1774 U_BS_DIBPATTERNPT ColorUsage enumer. U_BS_DIBPATTERNPT brush from DIB in Src 1775 U_BS_PATTERN ColorUsage enumer. U_BS_PATTERN brush from Bitmap16 object in Src 1984 brush created has style U_BS_PATTERN. 2020 U_WLOGBRUSH brush; //!< WLogBrush Object member in struct:__anon396 2398 char *U_WMRCREATEBRUSHINDIRECT_set(U_WLOGBRUSH brush); 2666 int U_WMRCREATEBRUSHINDIRECT_get(const char *contents, const char **brush);
|
H A D | uwmf_print.c | 1303 const char *brush; /* Note, because of possible struct alignment issue have to use char * to reference the data */ local 1304 int size = U_WMRCREATEBRUSHINDIRECT_get(contents, &brush); 1307 wlogbrush_print(brush);
|
H A D | uwmf.c | 1658 /* does the record create an object: brush, font, palette, pen, or region ? 3086 \param Brush Index of brush to use in frame in object table 4342 \param Pattern byte array pattern, described by Bm16, for brush 4397 \param brush Parameters of the brush object to create. 4399 char *U_WMRCREATEBRUSHINDIRECT_set(U_WLOGBRUSH brush){ argument 4400 return U_WMRCORE_2U16_N16_set(U_WMR_CREATEBRUSHINDIRECT, NULL, NULL, U_SIZE_WLOGBRUSH/2, &brush); 5650 \param Brush Index of brush to use in frame in object table 6936 \param Pattern byte array pattern, described by Bm16, for brush 6996 \param brush pointe [all...] |
H A D | uwmf_endian.c | 1450 wlogbrush_swap(record + offsetof(U_WMRCREATEBRUSHINDIRECT,brush));
|