summaryrefslogtreecommitdiffstats
path: root/src/extension/internal (follow)
Commit message (Collapse)AuthorAgeFilesLines
* complete adding const to have only NArtBpath const * get_bpath() const; for ↵Johan B. C. Engelen2008-05-0912-24/+24
| | | | | accessing the protected member of SPCurve. Nowhere in Inkscape source is the path data changed of SPCurve, except within SPCurve's own methods ! So removed the non-const NArtBpath* get_bpath. (bzr r5642)
* - try to use more forward declarations for less dependencies on display/curve.hJohan B. C. Engelen2008-05-091-1/+1
| | | | | | - change _bpath to private member of SPCurve, obtain and set with get_bpath and set_bpath. - added const methods, so protect changes to _bpath in SPCurve (bzr r5636)
* Cmake: Fix some undefined function callsJoshua L. Blocher2008-05-061-0/+31
| | | (bzr r5611)
* struct SPCurve => class SPCurveJohan B. C. Engelen2008-05-052-2/+2
| | | | | change all sp_curve_methods functions to SPCurve::methods. (bzr r5609)
* Cmake: Add missing CmakeLists.txtJoshua L. Blocher2008-05-032-0/+43
| | | (bzr r5586)
* Cmake: Fix some double linking flagsJoshua L. Blocher2008-05-031-2/+29
| | | (bzr r5584)
* Change in stdarg calls, to correct for const-nessBob Jamison2008-04-292-25/+8
| | | (bzr r5550)
* r19136@shi: ted | 2008-04-24 19:44:01 -0700Ted Gould2008-04-265-3/+227
| | | | | | | | | | | | | | | | | | | | | | | Basis for reading filters out of SVG files in system and personal directories. r19137@shi: ted | 2008-04-24 20:45:27 -0700 Removing a TODO r19138@shi: ted | 2008-04-24 20:55:50 -0700 Filling this out some. Now we're looking through the files and finding the filters in it. r19139@shi: ted | 2008-04-24 22:07:55 -0700 Changing to build filename, really amazing that it's worked before. r19140@shi: ted | 2008-04-24 22:43:57 -0700 My own crazy writer. Output streams are stupid C++-isms. char * works just fine. r19154@shi: ted | 2008-04-24 22:56:05 -0700 Cleaning up the XML transfer. Pretty happy with it now. r19155@shi: ted | 2008-04-24 23:00:11 -0700 Don't need to set up that string for translation because it's getting placed inside a structure that gets thrown gettext already. r19156@shi: ted | 2008-04-25 17:12:40 -0700 OMG! Stacking seems to be working. Now it's very easy to test the cooling on your CPU using Inkscape. That's going to have to be a feature in the release notes. r19166@shi: ted | 2008-04-25 21:00:34 -0700 Adding in filter-file.cpp (bzr r5522)
* r19125@shi: ted | 2008-04-23 23:32:56 -0700Ted Gould2008-04-242-23/+48
| | | | | | | | | | Cleaning up a couple things. Making sure we don't leak memory through the destructor (rarely used in reality, but we should be clean about these things, that's what destructors are for). r19126@shi: ted | 2008-04-23 23:33:30 -0700 Making it so that snow has a parameter for drift size. It seems like that is what most people would want to change on this relatively complex filter. (bzr r5506)
* Fixed some further issues with Internal extensions after the introduction of ↵Marcin Floryan2008-04-238-18/+18
| | | | | schema for INX files (the boolean values now spelled in lower case). This fixes an intermediate problem of Inkscape concerning its native SVG files as a loosy format. (bzr r5496)
* r19083@shi: ted | 2008-04-21 16:09:24 -0700Ted Gould2008-04-2230-1/+1527
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A directory for filter effects r19084@shi: ted | 2008-04-21 20:03:59 -0700 The basis for the filter interface for defining effects. r19085@shi: ted | 2008-04-21 20:59:04 -0700 Adding Sepia as an example r19086@shi: ted | 2008-04-21 23:25:57 -0700 Wiring everything in. Cleaning it up so that it looks nice. r19087@shi: ted | 2008-04-22 00:00:08 -0700 Completeing more of the guts. Not done, but the basic infrastructure is now in place. r19088@shi: ted | 2008-04-22 00:19:38 -0700 All the basic plumbing code. It seems to work, except the document is wrong from the controlling filter guy. That should be fixable. r19089@shi: ted | 2008-04-22 00:31:36 -0700 Whoo! Hoo! for simple stuff it seems to work. r19090@shi: ted | 2008-04-22 10:36:16 -0700 First pass at adding the filters from Mauve's example r19091@shi: ted | 2008-04-22 10:37:24 -0700 Fixing misspelling r19092@shi: ted | 2008-04-22 12:32:18 -0700 Should be appending instead of prepending these nodes. r19093@shi: ted | 2008-04-22 13:37:34 -0700 Basic filter with parameters working r19094@shi: ted | 2008-04-22 14:27:20 -0700 Changing it so that by default an effect will have a call to autogui that will work with live effects. Basically this involved migrating the implementation of prefs_effect up from script.cpp to implementation.cpp r19102@shi: ted | 2008-04-22 14:38:46 -0700 Better defaults r19103@shi: ted | 2008-04-22 14:42:07 -0700 Adding filter stuff to be translated (bzr r5490)
* r19076@shi: ted | 2008-04-21 15:42:45 -0700Ted Gould2008-04-2159-66/+66
| | | | | | | | | Core of having a real namespace for Inkscape extensions. r19077@shi: ted | 2008-04-21 15:50:12 -0700 First layer of adding NS r19078@shi: ted | 2008-04-21 15:56:03 -0700 Whew, doing the rest of them. (bzr r5483)
* make sure --export-area-canvas works for pdf export toobulia byak2008-04-162-14/+36
| | | (bzr r5455)
* Cmake: Add simple CMakeLists.txt for 2geom and linking to inkscapeJoshua L. Blocher2008-04-161-1/+6
| | | (bzr r5454)
* fix include pathJohan B. C. Engelen2008-04-151-1/+1
| | | (bzr r5447)
* fix include pathsJohan B. C. Engelen2008-04-152-2/+2
| | | (bzr r5446)
* translator commentArpad Biro2008-04-131-0/+1
| | | (bzr r5421)
* process source subdirectories with INCLUDE() instead of ADD_DIRECTORIES()Aaron Spike2008-04-101-13/+0
| | | | | | | This more or less mimics what is being done by automake with the Makefile_insert files What we were doing before did not work because add_directories() isn't able to propagate variables upwards. (bzr r5397)
* delete remaining .cvsignore filesAdib Taraben2008-04-011-5/+0
| | | (bzr r5299)
* reproduce the ancestors transform when exporting a single objectbulia byak2008-04-011-3/+23
| | | (bzr r5290)
* Adjustments to the lib directory Cmake filesJoshua L. Blocher2008-03-301-0/+13
| | | (bzr r5250)
* fix compilebulia byak2008-03-281-1/+1
| | | (bzr r5215)
* Fixing as per discussion in LP # 179988Mike Pittman2008-03-281-13/+32
| | | (bzr r5212)
* Cmake Build system - Initial commit.Joshua L. Blocher2008-03-271-0/+27
| | | (bzr r5206)
* Indentation, warning cleanup.Maximilian Albert2008-03-261-25/+36
| | | (bzr r5198)
* Fixing localization issues (following a patch for 0.46 rev. 17583) where ↵Marcin Floryan2008-03-265-27/+27
| | | | | some messages for internal extensions were not being used as translated. (bzr r5197)
* system clipboard support (bug #170185) from Chris KosińskiMenTaLguY2008-03-265-9/+9
| | | (bzr r5190)
* No more NRMatrix or NRPoint.Jasper van de Gronde2008-03-2113-139/+133
| | | (bzr r5149)
* enable --export-id and --export-area-drawing for PDF exportbulia byak2008-03-122-10/+64
| | | (bzr r5063)
* patch from 168792bulia byak2008-03-071-0/+5
| | | (bzr r4982)
* Remove double unreffing of pointer in pdf-cairo.cpp. Fixes Bug #178985 with ↵Johan B. C. Engelen2008-03-021-2/+1
| | | | | the "quark-prueba.svg" file (bzr r4923)
* improved fix crash bug #197664Johan B. C. Engelen2008-03-021-5/+5
| | | (bzr r4922)
* fix crash bug #197664Johan B. C. Engelen2008-03-021-2/+3
| | | (bzr r4921)
* vertical flip on RENDER_WITH_PANGO_CAIRO text outputAdib Taraben2008-03-021-52/+65
| | | (bzr r4920)
* Warning cleanupJon A. Cruz2008-02-291-1/+1
| | | (bzr r4904)
* Warning and whitespace cleanupJon A. Cruz2008-02-241-27/+27
| | | (bzr r4838)
* * INTL - fixed: "Crop to" dropdown strings not translated for PDF ImportMarcin Floryan2008-02-201-9/+10
| | | (bzr r4791)
* yet another contextual splitAlexandre Prokoudine2008-02-201-1/+1
| | | (bzr r4788)
* Minor format change. More work needed to improve transition between curve ↵Bob Jamison2008-02-182-80/+80
| | | | | and line segments. (bzr r4769)
* * Extended translation for Cairo PS Output, patch by Marcin Floryan (closes: ↵Luca Bruno2008-02-101-2/+2
| | | | | ##189196) (bzr r4697)
* r17815@shi: ted | 2008-01-31 08:58:15 -0800Ted Gould2008-01-311-3/+3
| | | | | | Fixing borked i18n attempt. The inline XML files should NOT use the '_' tag syntax. It won't work. (bzr r4628)
* a bunch of small changes to provide a user readable explanation of filtersAlexandre Prokoudine2008-01-312-8/+8
| | | (bzr r4624)
* A bunch of i18n-related issues fixed, ru.po slightly updated. Please do not ↵Alexandre Prokoudine2008-01-302-9/+9
| | | | | forget committing accompanying .inx files, guys ;-) (bzr r4620)
* now act on settings in dialogueAdib Taraben2008-01-164-8/+53
| | | (bzr r4529)
* more on blur to bitmapAdib Taraben2008-01-143-43/+14
| | | (bzr r4486)
* early version export to PS using blur to bitmapAdib Taraben2008-01-142-22/+237
| | | (bzr r4480)
* Another take to fixing pdf import crash, likely without memory leakNiko Kiirala2008-01-091-3/+3
| | | (bzr r4448)
* and in one more placebulia byak2008-01-091-1/+1
| | | (bzr r4443)
* trying to fix pdf import crashesbulia byak2008-01-081-1/+1
| | | (bzr r4430)
* Applying Gail's patch for font-specificationBryce Harrington2008-01-053-4/+12
| | | | | | | | | | | | | | | | | | | (Closes LP: #169973) - New attribute in an object's style string called -inkscape-font-specification stores full font name - This will be useful when we can support fonts that don't fit into the confines of CSS (if either pango enhances their PangoFontDescription structure, or we can get around its limitations) - Framework in place to separate font families from their "styles" (faces) in the text and font dialog - need only the code that does the actual separation - Text and Styles dialog shows only fonts it can handle (bzr r4392)