Lines Matching refs:dash
3 * Combobox for selecting dash patterns - implementation.
19 #include "dash-selector.h"
88 row[dash_columns.dash] = dashes[i];
93 row[dash_columns.dash] = dashes[np-1];
159 void SPDashSelector::set_dash (int ndash, double *dash, double o)
166 delta += dash[i];
178 if (!Geom::are_near(dash[j], pattern[j], delta))
202 d[i]=dash[i];
211 void SPDashSelector::get_dash(int *ndash, double **dash, double *off)
222 if (dash) {
223 *dash = g_new (double, nd);
224 memcpy (*dash, pattern, nd * sizeof (double));
231 if (dash)
232 *dash = NULL;
239 * Fill a pixbuf with the dash pattern using standard cairo drawing
289 double *pattern = dash_combo.get_active()->get_value(dash_columns.dash);