/inkscape/doc/ |
H A D | keys.css | 50 -moz-border-radius: 10px; 51 -webkit-border-radius: 10px; 52 border-radius: 10px; 104 border-bottom: 1px solid #999; 110 -moz-border-radius: 10px; 111 -webkit-border-radius: 10px; 112 border-radius: 10px; 113 border: 0; 162 border: 1px solid #999999; 164 -moz-border [all...] |
/inkscape/src/ui/ |
H A D | previewable.h | 44 virtual Gtk::Widget* getPreview( PreviewStyle style, ViewType view, ::PreviewSize size, guint ratio, guint border) = 0;
|
H A D | previewfillable.h | 31 virtual void setStyle( ::PreviewSize size, ViewType type, guint ratio, ::BorderStyle border ) = 0;
|
H A D | previewholder.h | 48 virtual void setStyle( ::PreviewSize size, ViewType view, guint ratio, ::BorderStyle border );
|
H A D | previewholder.cpp | 224 void PreviewHolder::setStyle( ::PreviewSize size, ViewType view, guint ratio, ::BorderStyle border ) 226 if ( size != _baseSize || view != _view || ratio != _ratio || border != _border ) { 230 _border = border; 466 ::BorderStyle border = ((row == height -1) && (_border == BORDER_SOLID)) ? BORDER_SOLID_LAST_ROW : _border; local 467 Gtk::Widget* thing = Gtk::manage(items[i]->getPreview(PREVIEW_STYLE_PREVIEW, _view, _baseSize, _ratio, border));
|
/inkscape/src/widgets/ |
H A D | button.cpp | 109 GtkBorder border; local 112 gtk_style_context_get_border( context, GTK_STATE_FLAG_NORMAL, &border ); 114 *minimal_width += MAX(2, padding.left + padding.right + border.left + border.right); 115 *natural_width += MAX(2, padding.left + padding.right + border.left + border.right); 131 GtkBorder border; local 134 gtk_style_context_get_border( context, GTK_STATE_FLAG_NORMAL, &border ); 136 *minimal_height += MAX(2, padding.top + padding.bottom + border.top + border [all...] |
H A D | ruler.cpp | 604 GtkBorder border; local 606 gtk_style_context_get_border (context, static_cast<GtkStateFlags>(0), &border); 608 requisition->width = border.left + border.right; 609 requisition->height = border.top + border.bottom; 1117 GtkBorder border; local 1154 gtk_style_context_get_border (context, static_cast<GtkStateFlags>(0), &border); 1170 height = allocation.height - (border.top + border [all...] |
H A D | eek-preview.h | 120 guint border);
|
H A D | eek-preview.cpp | 76 guint border; member in struct:__anon156 260 if (priv->border == BORDER_SOLID) { 264 if (priv->border == BORDER_SOLID_LAST_ROW) { 268 if (priv->border == BORDER_WIDE) { 304 if (priv->border != BORDER_NONE) { 341 if (priv->border != BORDER_NONE) { 802 guint border) 823 priv->border = border; 860 priv->border 798 eek_preview_set_details(EekPreview *preview, ViewType view, PreviewSize size, guint ratio, guint border) argument [all...] |
/inkscape/src/display/ |
H A D | canvas-text.cpp | 61 canvastext->border = 3; // must be a constant, and not proportional to any width, height, or fontsize to allow alignment with other text boxes 133 // Point s specifies the position of the anchor, which is at the bounding box of the text itself (i.e. not at the border of the filled background rectangle) 144 double border = cl->border; local 146 item->x1 = s[Geom::X] + extents.x_bearing - border; 147 item->y1 = s[Geom::Y] + extents.y_bearing - border; 148 item->x2 = item->x1 + extents.width + 2*border; 149 item->y2 = item->y1 + extents.height + 2*border; 227 // Pos specifies the position of the anchor, which is at the bounding box of the text itself (i.e. not at the border of the filled background rectangle)
|
H A D | canvas-text.h | 43 double border; member in struct:SPCanvasText
|
/inkscape/src/ui/dialog/ |
H A D | color-item.h | 57 guint border);
|
H A D | color-item.cpp | 565 Gtk::Widget* ColorItem::getPreview(PreviewStyle style, ViewType view, ::PreviewSize size, guint ratio, guint border) argument 582 border );
|
/inkscape/share/extensions/ |
H A D | generate_voronoi.py | 83 self.OptionParser.add_option("--border", 85 dest="border", default=0, 98 self.options.border *= scale 116 b = float(self.options.border) # width of border 120 if b > 0: # duplicate border area 139 pts.append(voronoi.Site(x, y)) # leave border area blank
|
/inkscape/src/extension/internal/ |
H A D | javafx-out.cpp | 272 float border = 25.0; local 277 DSTR((-minx) + border), DSTR((-miny) + border) );
|
/inkscape/src/ |
H A D | desktop.h | 178 SPCanvasItem *page_border; ///< page border 327 void set_display_area (double x0, double y0, double x1, double y1, double border, bool log = true); 328 void set_display_area(Geom::Rect const &a, Geom::Coord border, bool log = true);
|
H A D | desktop.cpp | 783 SPDesktop::set_display_area (double x0, double y0, double x1, double y1, double border, bool log) argument 800 viewbox.expandBy(-border); 827 canvas->scrollTo(x0 * newscale - border, y1 * -newscale - border, clear); 1737 /* Show/hide page border */
|
/inkscape/src/extension/dbus/ |
H A D | document-interface.h | 156 double border,
|
H A D | document-interface.cpp | 604 double border, 613 border, false); 599 document_interface_document_set_display_area(DocumentInterface *doc_interface, double x0, double y0, double x1, double y1, double border, GError **error) argument
|
/inkscape/src/ui/tools/ |
H A D | measure-tool.cpp | 115 double border = 3; local 118 Geom::Point tmp(fontsize * (6 + precision) + (border * 2), fontsize + (border * 2)); 142 place.offset += (fontsize + border);
|