summaryrefslogtreecommitdiffstats
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* r14632@tres: ted | 2007-02-28 23:12:58 -0800Ted Gould2007-03-014-0/+161
| | | | | | Splitting out the command line action class to try and leave SOME dependencies out of main.cpp. (bzr r2481)
* r14584@tres: ted | 2007-02-28 20:01:52 -0800Ted Gould2007-03-012-6/+26
| | | | | | | | Effects now register two different verbs. One is the same one they've always registered and one is the same ID with ".nopref" added to it. This one executes the effect without the prefrences dialog. Default values will be used. (bzr r2480)
* r14583@tres: ted | 2007-02-28 19:29:48 -0800Ted Gould2007-03-011-1/+15
| | | | | Selection is working too! (bzr r2479)
* r14582@tres: ted | 2007-02-28 19:07:35 -0800Ted Gould2007-03-011-4/+39
| | | | | Oh Yeah! Verbs work! (bzr r2478)
* r14581@tres: ted | 2007-02-27 19:36:54 -0800Ted Gould2007-03-011-0/+62
| | | | | Calling everything on the command line. Good stopping point. (bzr r2477)
* r14579@tres: ted | 2007-02-27 19:00:22 -0800Ted Gould2007-03-011-0/+5
| | | | | | | Adding in an extension init in arguably the wrong place, but it does make the code much more readable. I guess that makes it the right place then doesn't it? ;) (bzr r2476)
* r14578@tres: ted | 2007-02-27 18:59:35 -0800Ted Gould2007-03-011-1/+2
| | | | | Protecting against the posibility of the INKSCAPE variable being NULL (bzr r2475)
* r14577@tres: ted | 2007-02-27 18:51:05 -0800Ted Gould2007-03-011-1/+12
| | | | | | Filling in the list function to list all the verbs for the command line option --verb-list (bzr r2474)
* r14576@tres: ted | 2007-02-26 23:29:13 -0800Ted Gould2007-03-013-1/+20
| | | | | Basic construction in place to --verb-list (bzr r2473)
* API change: render methods now take a cairo_t (not yet used)bulia byak2007-03-0115-32/+33
| | | (bzr r2472)
* render text in outline mode via cairo (still no endian-safe); factor out ↵bulia byak2007-03-015-81/+180
| | | | | helper functions (bzr r2470)
* Fix massive point queueing and tolerance issueJohn Bintz2007-03-011-19/+20
| | | (bzr r2469)
* Optimize flood algorithm to only scan adjacent runs onceJohn Bintz2007-03-011-12/+26
| | | (bzr r2468)
* Re-add deleted preference setting for paint bucket toleranceJohn Bintz2007-02-281-0/+1
| | | (bzr r2467)
* refactor sp_svg_transform_write to return a dynamically-allocated stringMenTaLguY2007-02-2811-115/+62
| | | | | -- dynamic allocation won't hurt you, but buffer overruns will! (bzr r2466)
* Fix layer transform issueJohn Bintz2007-02-281-17/+18
| | | (bzr r2465)
* Fix issue with adding traced path to a layer with a transformJohn Bintz2007-02-281-1/+18
| | | (bzr r2464)
* Change paint bucket tolerance toolbar to use percentages rather than color ↵John Bintz2007-02-282-4/+3
| | | | | channel distance (bzr r2463)
* Add paint bucket tolerance setting and toolbar widget to control toleranceJohn Bintz2007-02-272-15/+34
| | | (bzr r2462)
* get rid of sp_repr_document_root and (commented) sp_repr_duplicateMenTaLguY2007-02-278-22/+11
| | | (bzr r2461)
* increase paddingbulia byak2007-02-271-1/+1
| | | (bzr r2460)
* add paintbucket cursorbulia byak2007-02-272-4/+42
| | | (bzr r2459)
* more commentsbulia byak2007-02-271-3/+10
| | | (bzr r2458)
* Remove debug code from flood-context.cppJohn Bintz2007-02-271-9/+0
| | | (bzr r2456)
* more comments on cairo's and our own woesbulia byak2007-02-272-2/+17
| | | (bzr r2455)
* Adjusted flood fill paddingJohn Bintz2007-02-271-1/+1
| | | (bzr r2454)
* Flood fill render area now taken from desktop view area and zoom levelJohn Bintz2007-02-271-5/+22
| | | (bzr r2453)
* warn if unable to fill an unbounded areabulia byak2007-02-261-1/+6
| | | (bzr r2450)
* rename flood to paintbucket, copyeditbulia byak2007-02-269-35/+35
| | | (bzr r2449)
* move flood under calligraphicbulia byak2007-02-261-1/+1
| | | (bzr r2448)
* add some obligatory shortcutsbulia byak2007-02-261-0/+18
| | | (bzr r2447)
* Fix typoJohan B. C. Engelen2007-02-261-1/+1
| | | (bzr r2446)
* get rid of sp_repr_document wrapper functionMenTaLguY2007-02-264-9/+3
| | | (bzr r2445)
* Check for GGO_UNHINTED not being definedBob Jamison2007-02-261-0/+5
| | | (bzr r2444)
* dead code removalMenTaLguY2007-02-261-11/+0
| | | (bzr r2443)
* Typofix ("canceled").Colin Marquardt2007-02-251-1/+1
| | | (bzr r2441)
* Remove item handler from flood fill toolJohn Bintz2007-02-251-4/+0
| | | (bzr r2439)
* Fix some memory issues with food fillJohn Bintz2007-02-251-7/+9
| | | (bzr r2438)
* Fix g_free crashJohn Bintz2007-02-251-2/+2
| | | (bzr r2437)
* Forgot to free some of the pixel storageJohn Bintz2007-02-251-0/+2
| | | (bzr r2436)
* Add ability to flood fill areas of contiguous colorJohn Bintz2007-02-251-16/+30
| | | (bzr r2435)
* Prevent flood fills from leaking out of fill areaJohn Bintz2007-02-251-12/+30
| | | (bzr r2434)
* r14551@tres: ted | 2007-02-24 15:22:47 -0800Ted Gould2007-02-2534-700/+1202
| | | | | | Merging in the latest libwpg and some code chages to make it work with everything. (bzr r2433)
* Add flood fill toolJohn Bintz2007-02-2511-3/+646
| | | (bzr r2432)
* Factor out bpath_to_PathJohn Bintz2007-02-252-6/+12
| | | (bzr r2431)
* move a global to a class property; reduce the use of is_scrolling to prevent ↵bulia byak2007-02-255-14/+17
| | | | | the lack-of-redraw issues (bzr r2430)
* add 'hide all except selected' checkboxbulia byak2007-02-251-5/+28
| | | (bzr r2429)
* patch 1665648 by Diederik to snap to grid when drawing rectanglesbulia byak2007-02-241-1/+6
| | | (bzr r2428)
* fix 1332884bulia byak2007-02-241-2/+2
| | | (bzr r2426)
* some more refactoringbulia byak2007-02-241-11/+20
| | | (bzr r2425)