| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Move classes derived from SPObject to own directory. | Tavmjong Bah | 2018-01-30 | 1 | -532/+0 |
| | | | | | A lot of header clean-up. | ||||
| * | Extract SPDimensions from spfilters | Shlomi Fish | 2017-10-05 | 1 | -19/+1 |
| | | |||||
| * | third batch | Marc Jeanmougin | 2017-10-02 | 1 | -6/+5 |
| | | |||||
| * | Fix C++11 errors and warnings with g++-7 | Alex Valavanis | 2017-02-05 | 1 | -3/+7 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1660992 (bzr r15477) | ||||
| * | Merged trunk | Adrian Boguszewski | 2016-08-03 | 1 | -5/+1 |
| |\ | | | | | (bzr r14954.1.29) | ||||
| | * | Removed unused includes, decreased compilation time. Once again | Adrian Boguszewski | 2016-08-03 | 1 | -5/+1 |
| | | | | | | | (bzr r15034) | ||||
| | * | Reverted changes to r15024 after many building problems | Adrian Boguszewski | 2016-07-28 | 1 | -1/+5 |
| | | | | | | | (bzr r15027) | ||||
| | * | Removed unused includes, decrease compilation time | Adrian Boguszewski | 2016-07-28 | 1 | -5/+1 |
| | | | | | | | (bzr r15025) | ||||
| * | | Renamed children list in SPObject | Adrian Boguszewski | 2016-07-14 | 1 | -5/+5 |
| | | | | | | | (bzr r14954.1.21) | ||||
| * | | Last part of new SPObject children list | Adrian Boguszewski | 2016-07-14 | 1 | -14/+11 |
| | | | | | | | (bzr r14954.1.20) | ||||
| * | | Second part of new SPObject children list | Adrian Boguszewski | 2016-07-13 | 1 | -4/+4 |
| |/ | | | (bzr r14954.1.19) | ||||
| * | Backout last commit as it introduced subtle errors. | Tavmjong Bah | 2016-04-29 | 1 | -2/+0 |
| | | | | (bzr r14864) | ||||
| * | SVG 2 allows 'href' without 'xlink:'. For now just read plain 'href'. | Tavmjong Bah | 2016-04-29 | 1 | -0/+2 |
| | | | | (bzr r14863) | ||||
| * | static code analysis | Kris De Gussem | 2015-10-28 | 1 | -1/+1 |
| | | | | (bzr r14432) | ||||
| * | show filter usage count | Raphael Rosch | 2015-05-05 | 1 | -0/+10 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1169123 (bzr r14111) | ||||
| * | merge | Marc Jeanmougin | 2015-04-26 | 1 | -9/+0 |
| |\ | | | | | (bzr r13922.1.12) | ||||
| | * | create SPObject factory | Liam P. White | 2015-02-25 | 1 | -9/+0 |
| | | | | | | | (bzr r13939.1.1) | ||||
| * | | corrected the casts (hopefully) | Marc Jeanmougin | 2015-02-27 | 1 | -1/+1 |
| | | | | | | | (bzr r13922.1.10) | ||||
| * | | added a set to the Selection | Marc Jeanmougin | 2015-02-19 | 1 | -3/+2 |
| | | | | | | | (bzr r13922.1.6) | ||||
| * | | At first, I was thinking "I just have to go to the selection file, and ↵ | Marc Jeanmougin | 2015-02-17 | 1 | -5/+4 |
| |/ | | | | | | | | change that GSList* with a std::list, then resolve the few problems" So, i tried that. And I will continue tomorrow, and the days after, on and on. (bzr r13922.1.1) | ||||
| * | sp-filter: fix memory leak when trying to set a duplicate name for an image. | Johan B. C. Engelen | 2014-11-08 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | This function could use more cleanup, but because I can't test now, I will write it down here: int sp_filter_set_image_name(SPFilter *filter, gchar const *name) { gchar *name_copy = strdup(name); pair<gchar*,int> new_pair(name_copy, filter->_image_number_next++); // post-increment number_next pair<map<gchar*,int,ltstr>::iterator,bool> ret = filter->_image_name->insert(new_pair); if (ret.second == false) { // The element is not inserted (because an element with the same key was already in the map) // Therefore, free the memory allocated for the new entry: free(name_copy); } return (*ret.first).second; } (bzr r13684) | ||||
| * | Fix build (not pretty). | Liam P. White | 2014-08-18 | 1 | -3/+2 |
| | | | | (bzr r13341.1.146) | ||||
| * | Use viewport when calculating filter primitive region when 'primitiveUnits' ↵ | Tavmjong Bah | 2014-03-01 | 1 | -1/+19 |
| | | | | | | set to "userSpaceOnUse". (bzr r13083) | ||||
| * | Use viewport when calculating filter region when filterUnits set to ↵ | Tavmjong Bah | 2014-02-28 | 1 | -0/+28 |
| | | | | | | "userSpaceOnUse", fixes #229246. (bzr r13073) | ||||
| * | Fix for Bug #1265556 (plain svg export is broken for filter). | Nicolas Dufour | 2014-01-04 | 1 | -1/+1 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/1265556 (bzr r12879) | ||||
| * | cppcheck | Kris De Gussem | 2013-10-07 | 1 | -1/+1 |
| | | | | (bzr r12669) | ||||
| * | components of _image_name were g_strdup'ed so need to be g_free'd | buliabyak | 2013-09-28 | 1 | -0/+4 |
| | | | | (bzr r12612) | ||||
| * | Cleaned up a bit; fixed struct vs. class forward declarations. | Markus Engel | 2013-07-31 | 1 | -98/+78 |
| | | | | (bzr r11608.1.111) | ||||
| * | Merge Object and subclasses. Merging of SP- and C-classes complete. | Markus Engel | 2013-04-07 | 1 | -11/+8 |
| | | | | (bzr r11608.1.86) | ||||
| * | Merged FilterPrimitive and subclasses. | Markus Engel | 2013-04-07 | 1 | -1/+1 |
| | | | | (bzr r11608.1.85) | ||||
| * | Merged more classes. | Markus Engel | 2013-04-06 | 1 | -55/+34 |
| | | | | (bzr r11608.1.84) | ||||
| * | Registered classes with new factory. Hkern, Vkern and FeFuncX have to be ↵ | Markus Engel | 2013-04-02 | 1 | -0/+10 |
| | | | | | | rewritten, as they aren't real classes. (bzr r11608.1.69) | ||||
| * | Added constructors to SP classes. | Markus Engel | 2013-04-01 | 1 | -4/+10 |
| | | | | (bzr r11608.1.67) | ||||
| * | Prepared exchange of casting macros. | Markus Engel | 2013-03-31 | 1 | -0/+1 |
| | | | | (bzr r11608.1.63) | ||||
| * | Renamed virtual function names. | Markus Engel | 2013-03-29 | 1 | -15/+15 |
| | | | | (bzr r11608.1.57) | ||||
| * | merged from trunk | Markus Engel | 2013-03-29 | 1 | -363/+7 |
| |\ | | | | | (bzr r11608.1.56) | ||||
| | * | A couple of forward declarations | Alex Valavanis | 2013-02-11 | 1 | -0/+1 |
| | | | | | | | (bzr r12119) | ||||
| | * | More GObject boilerplate reduction | Alex Valavanis | 2013-01-26 | 1 | -43/+15 |
| | | | | | | | (bzr r12065) | ||||
| | * | Add support for color-interpolation-filters = linearRGB. | Tavmjong Bah | 2012-12-22 | 1 | -23/+5 |
| | | | | | | | (bzr r11972) | ||||
| * | | Removed function pointers from SPObject and subclasses. | Markus Engel | 2013-03-29 | 1 | -6/+6 |
| | | | | | | | | | | | Added some missing virtual pads for classes that were hidden by preprocessor macros. (bzr r11608.1.55) | ||||
| * | | Replaced virtual function call to "build_renderer". | Markus Engel | 2013-03-29 | 1 | -5/+7 |
| | | | | | | | (bzr r11608.1.53) | ||||
| * | | Added "virtual pads" to | Markus Engel | 2013-03-29 | 1 | -21/+306 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - SPFeFuncNode - SPFeDistantLight - SPFeMergeNode - SPFePointLight - SPFeSpotLight - SPFilter - SPFont - SPGuide Changes in SPItem and SPNamedView. (bzr r11608.1.49) | ||||
| * | | Various changes. | Markus Engel | 2013-03-14 | 1 | -4/+5 |
| |/ | | | (bzr r11608.1.48) | ||||
| * | cppcheck tells us: "scanf without field width limits can crash with huge ↵ | Kris De Gussem | 2012-04-09 | 1 | -1/+1 |
| | | | | | | input data" (bzr r11191) | ||||
| * | cppcheck | Kris De Gussem | 2012-02-15 | 1 | -1/+1 |
| | | | | (bzr r10987) | ||||
| * | Get rid of gtkmm top-level header usage - not required by API | Alex Valavanis | 2012-02-06 | 1 | -2/+0 |
| | | | | (bzr r10940) | ||||
| * | cppcheck tells us: scanf without field width limits can crash with huge ↵ | Kris De Gussem | 2012-02-04 | 1 | -3/+8 |
| | | | | | | | | input data. (gimpgrad) Some additional scanf modifications (bzr r10932) | ||||
| * | Add minimal support for reading color-interpolation and ↵ | Tavmjong Bah | 2011-08-29 | 1 | -2/+12 |
| | | | | | | | | | | | | | | | color-interpolation-filters properties (however, Inkscape assumes sRGB everywhere at the moment). Change color-interpolation-filters from attribute to style property in sp-filter.cpp as it is not allowed as an attribute in a <filter> (it is only allowed as an attribute in filter primitives). Added color-interpolation-filters:sRGB to style when new filter is created in filter-chemistry.cpp. (bzr r10591) | ||||
| * | Merge from trunk | Krzysztof Kosi??ski | 2011-04-07 | 1 | -10/+8 |
| |\ | | | | | (bzr r9508.1.73) | ||||
| | * | Finished cleanup of outated SP_OBJECT_DOCUMENT C macro. | Jon A. Cruz | 2011-02-21 | 1 | -10/+8 |
| | | | | | | | (bzr r10060) | ||||
