summaryrefslogtreecommitdiffstats
path: root/src/dialogs/stroke-style.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-02-21Move files from the src/dialogs/ directory to the places where they Krzysztof Kosi??ski1-1838/+0
should be. Build libinkscape.a - should reduce link time. (bzr r7337)
2009-02-19Make all icons themable (except the filter icons).Krzysztof Kosi??ski1-41/+41
(bzr r7332)
2008-11-21Merge from fe-movedTed Gould1-15/+6
(bzr r6891)
2008-10-27From trunkTed Gould1-2/+7
(bzr r6885)
2008-10-11Merging from trunkTed Gould1-2/+2
(bzr r6884)
2008-09-16fix leak of the arena and arenaitembulia byak1-0/+3
(bzr r6822)
2008-08-09gtkmm-ify the 'Stroke style' tab of Fill and Stroke dialogMaximilian Albert1-434/+382
(bzr r6602)
2008-08-08remove many unnecessary to_2geom and from_2geom callsJohan B. C. Engelen1-1/+1
(bzr r6593)
2008-08-05NR::Maybe => boost::optionalJohan B. C. Engelen1-1/+1
(bzr r6569)
2008-08-04NR:: => Geom:: for much of src/ui and src/widgetsJohan B. C. Engelen1-1/+1
(bzr r6561)
2008-06-12change NR::Matrix to Geom:: for many sp_item_xxx_affine functionsJohan B. C. Engelen1-2/+2
(bzr r5915)
2008-03-10noop: Address constness warning.Peter Moulder1-16/+16
(bzr r5039)
2007-12-04fix bug: mid and end markers showed previews from start markersbulia byak1-2/+4
(bzr r4164)
2007-11-08warning cleanupJon A. Cruz1-48/+29
(bzr r4043)
2007-09-25Initial support for icc color selection including CMYKJon A. Cruz1-4/+1
(bzr r3794)
2007-09-15Refactoring SPColor to C++ and removing legacy CMYK implementationJon A. Cruz1-33/+50
(bzr r3753)
2007-09-10Purged fill type enumJon A. Cruz1-10/+10
(bzr r3706)
2007-08-20fix 1777084bulia byak1-0/+7
(bzr r3545)
2007-06-27switch SPStyle to using SPFilterReference for filters; sp_style_new now ↵bulia byak1-3/+3
requires an SPDocument; SPURIReference and SPFilterReference have an alternative constructor taking an owner_document instead of owner object (bzr r3116)
2007-06-27more unreffing temporary styles properlybulia byak1-3/+3
(bzr r3114)
2007-03-20plumb XML::Document parameter into duplication, courtesy of bryceMenTaLguY1-1/+2
(bzr r2723)
2007-03-04adapt code to new Maybe/bbox regimeMenTaLguY1-41/+60
(bzr r2538)
2007-03-04switch from invokeBbox to getBounds (need to fix problems with emptyMenTaLguY1-58/+39
rect handling, though) (bzr r2536)
2007-02-23Disabling transientize callback - it's currently causing some data lossBryce Harrington1-9/+11
when switching between windows. (bzr r2419)
2007-02-23When selecting 'none', the marker wasn't getting removed from the line.Bryce Harrington1-30/+47
This fixes that. (bzr r2418)
2007-02-21Adjusting how items in the marker menu are selected, so the recentlyBryce Harrington1-4/+2
selected marker at the top of the menu shows as the selection. (bzr r2415)
2007-02-21Fixes issue where a modified stock marker's preview image appears in theBryce Harrington1-1/+2
marker dropdown with the same preview image as the unmodified stock marker. This adds the source document's uri to the cache index. (bzr r2413)
2007-02-21Adding handler for switching documents, to regenerate the marker menusBryce Harrington1-24/+24
(bzr r2412)
2007-02-20Completes fix for 980157. Markers in current document's defs is nowBryce Harrington1-46/+87
shown in top of the marker dropdown menu. When you select a marker from the dropdown, all three menus are updated to show what you selected at the top. Note that to implement this, a marker cache is introduced, because otherwise the regeneration of the menus would be noticeably too slow. There is still a modest pause during the regeneration, but it's fairly reasonable on my machine. (bzr r2404)
2007-02-20Moving cache management code from .h to .cpp.Bryce Harrington1-17/+21
Making the marker dropdowns static so they can be updated. (bzr r2403)
2007-02-20Moving functions from svg_preview_cache.h to a new .cppBryce Harrington1-2/+1
(bzr r2402)
2007-02-20Partial fix for bug 980157.Bryce Harrington1-61/+14
This commit disables the code that prevents stock markers from appearing at the top of the marker menu, as discussed in the bug report. Additionally, this patch factors out the pixmap rendering code, which is nearly identical to the rendering code in icon.cpp (and perhaps elsewhere). (bzr r2401)
2007-01-10Only evaluate stock markers if the inkscape:stockid tag is actuallyBryce Harrington1-5/+7
defined. Fixes bug 1631906. (bzr r2170)
2006-12-31Fix 1516933 (text stroke crash inkscape)gustav_b1-0/+3
(bzr r2112)
2006-12-07Marker menus now display custom markers in a document that are presentBryce Harrington1-46/+73
when the document is loaded. The menus won't update with new markers, though, and there's a couple other issues that need to be addressed before its 100% reliable. (bzr r2080)
2006-12-06Renaming sp-marker.* to marker.*Bryce Harrington1-1/+1
(bzr r2077)
2006-11-27Documenting all routines in stroke-style.cppBryce Harrington1-8/+111
(bzr r2043)
2006-10-10undo annotationsbulia byak1-10/+10
(bzr r1793)
2006-08-25peeled back the gboolean code as it hit on some complexity theory principles...Jon Phillips1-1/+1
need to rethink and incrementally change gbooleans to bools (bzr r1637)
2006-08-23Ok, committed msgloan's patch to convert gbooleans to bools thus completingJon Phillips1-1/+1
one major janitorial task we identified.... (bzr r1633)
2006-06-29patch from Gustav Broberg: undo annotations and history dialogbulia byak1-9/+18
(bzr r1315)
2006-05-28replace nr_new() with g_new(), and try to converge on using the glib ↵MenTaLguY1-2/+3
allocator a little more instead of the others (aside from libgc) (bzr r1044)
2006-04-17Get rid of the SP_DT_* macros which do nothing more than provide additional, ↵MenTaLguY1-16/+16
confusing, names for other functions. If shorter names are desired, the actual functions should be renamed -- or better, made into member functions. (bzr r532)
2006-04-06Decoupling from direct use of GtkIconSize to allow for smaller custom ones.Jon A. Cruz1-1/+1
(bzr r439)