Searched refs:history (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/widgets/
H A Dstroke-marker-selector.h71 Gtk::TreeModelColumn<gboolean> history; member in class:MarkerComboBox::MarkerColumns
75 add(label); add(stock); add(marker); add(history); add(separator); add(image);
82 void sp_marker_list_from_doc(SPDocument *source, gboolean history);
84 void add_markers (GSList *marker_list, SPDocument *source, gboolean history);
85 void remove_markers (gboolean history);
H A Dstroke-marker-selector.cpp158 row[marker_columns.history] = false;
173 row_sep[marker_columns.history] = false;
196 /* Set history */
301 void MarkerComboBox::sp_marker_list_from_doc(SPDocument *source, gboolean history) argument
314 remove_markers(history); // Seem to need to remove 2x
315 remove_markers(history);
316 add_markers(clean_ml, source, history);
348 * Remove history or non-history markers from the combo
350 void MarkerComboBox::remove_markers (gboolean history) argument
369 add_markers(GSList *marker_list, SPDocument *source, gboolean history) argument
[all...]
/inkscape/src/display/
H A Dnr-filter-gaussian.cpp375 PT history[scr_len+1][PC]; local
379 #pragma omp parallel for num_threads(num_threads) private(history)
391 // history initialization
393 for(int i=0; i<scr_len; i++) copy_n(imin, PC, history[i]);
400 // update history
401 for(int i=scr_len; i>0; i--) copy_n(history[i-1], PC, history[i]);
402 copy_n(src + src_disp, PC, history[0]);
413 // go over our point's neighbours in the history
416 PT in_byte = history[
[all...]
/inkscape/src/
H A Ddesktop.cpp767 * Put current zoom data in history list.
770 SPDesktop::push_current_zoom (std::list<Geom::Rect> &history) argument
774 if (history.empty() || history.front() != area) {
775 history.push_front(area);
1855 mapVerbPreference.insert(std::make_pair ("UndoHistory", "/dialogs/undo-history") );

Completed in 27 milliseconds