| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rm unused code now Gtk+ >= 3.22 dependency is set | Alexander Valavanis | 2019-05-26 | 1 | -5/+0 |
| | | |||||
| * | modernize loops | Marc Jeanmougin | 2019-01-02 | 1 | -30/+24 |
| | | |||||
| * | Move Preview to Inkscape namespace | Alexander Valavanis | 2019-01-01 | 1 | -22/+22 |
| | | |||||
| * | C++ify EekPreview | Alexander Valavanis | 2019-01-01 | 1 | -5/+3 |
| | | |||||
| * | Fix namespace naming consistency | Alexander Valavanis | 2018-12-29 | 1 | -3/+3 |
| | | |||||
| * | Clarify licenses | Max Gaukler | 2018-11-08 | 1 | -1/+2 |
| | | | | | | | - add license headers to everything - convert a few files from public domain or LGPL2.1+ to GPL2+ - some archaeology to clarify which files are from which library | ||||
| * | Remove 'document-private.h' where not needed plus some other header cleanup. | Tavmjong Bah | 2018-10-22 | 1 | -1/+0 |
| | | |||||
| * | Move global functions into SPGradient methods. | Emmanuel Gil Peyrot | 2018-06-21 | 1 | -1/+1 |
| | | |||||
| * | Run clang-tidy’s modernize-use-emplace pass. | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -1/+1 |
| | | | | | | This reduces the boilerplate required to add a new element to a container. | ||||
| * | Run clang-tidy’s modernize-use-bool-literals pass. | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -1/+1 |
| | | | | | | This makes it clearer whether an integer or a boolean has to be passed in this specific call. | ||||
| * | Run clang-tidy’s modernize-use-nullptr pass. | Emmanuel Gil Peyrot | 2018-06-18 | 1 | -42/+42 |
| | | | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer. | ||||
| * | Run clang-tidy’s modernize-use-equals-delete pass. | Emmanuel Gil Peyrot | 2018-06-12 | 1 | -2/+2 |
| | | | | | | Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will. | ||||
| * | Revert "Fix include order with clang-tidy check llvm-include-order" | Marc Jeanmougin | 2018-05-04 | 1 | -9/+9 |
| | | | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60. | ||||
| * | Fix include order with clang-tidy check llvm-include-order | Marc Jeanmougin | 2018-04-29 | 1 | -9/+9 |
| | | |||||
| * | Move classes derived from SPObject to own directory. | Tavmjong Bah | 2018-01-30 | 1 | -2/+5 |
| | | | | | A lot of header clean-up. | ||||
| * | Remove unused abstract class PreviewFillable | Stefano Facchini | 2018-01-18 | 1 | -31/+24 |
| | | | | | PreviewHolder is the only implementation. | ||||
| * | swatches: Code cleanup | Stefano Facchini | 2018-01-18 | 1 | -310/+158 |
| | | | | | | | | | | Now that all our code in a single file, it can be consolidated and cleaned up. The widgetry should be functionally identical to the previous one, with one exception: a Gtk::MenuButton replaces the old menu popper made up with an EventBox. | ||||
| * | Properly support palettes without color names | Eduard Braun | 2018-01-17 | 1 | -2/+10 |
| | | | | | | | | | | | - use hexadecimal color code as a replacement in this case. - do not attempt to translate empty string / color name - fix an issue in the custom trim() function returning early for strings only consisting of a single whitespace character, e.g. "\n" Fixed bug: - https://bugs.launchpad.net/inkscape/+bug/1743708 | ||||
| * | Move code related to SwatchesPanel where it belongs | Stefano Facchini | 2018-01-17 | 1 | -4/+434 |
| | | | | | | | | panel.cpp contains a lot of code which is actually used to build the SwatchesPanel. Move it to swatches.cpp. This is mostly just a cut-n-paste, plus some includes cleanup. | ||||
| * | panel: Remove the unused "title" label | Stefano Facchini | 2018-01-16 | 1 | -1/+1 |
| | | |||||
| * | panel: remove the "apply_label" API | Stefano Facchini | 2018-01-16 | 1 | -1/+1 |
| | | | | | | It was used only by the Memory dialog, which can very well add the "Recalculate" button itself. | ||||
| * | Update popup menu usage | Alexander Valavanis | 2017-07-09 | 1 | -1/+5 |
| | | |||||
| * | Move directory scanners to new get_filenames(...) calls | Martin Owens | 2017-07-02 | 1 | -47/+12 |
| | | |||||
| * | Refactor profile directory use and promote IO::Resource get_path and ↵ | Martin Owens | 2017-06-28 | 1 | -3/+4 |
| | | | | | get_filename methods | ||||
| * | [Bug #1447971] User palettes not available if all shared system palettes are ↵ | Nicolas Dufour | 2016-08-30 | 1 | -1/+1 |
| | | | | | | | | | deleted from installation. Fixed bugs: - https://launchpad.net/bugs/1447971 (bzr r15093) | ||||
| * | Merged trunk | Adrian Boguszewski | 2016-08-09 | 1 | -4/+0 |
| |\ | | | | | (bzr r14954.1.30) | ||||
| | * | End GTK+ 2 support and remove GDL fork | Alex Valavanis | 2016-08-04 | 1 | -4/+0 |
| | |\ | | | | | | | (bzr r15038) | ||||
| | | * | Drop remaining GTKMM 2 fallback support | Alex Valavanis | 2016-07-28 | 1 | -4/+0 |
| | | | | | | | | | | (bzr r15023.2.7) | ||||
| * | | | Merged trunk | Adrian Boguszewski | 2016-08-03 | 1 | -9/+0 |
| |\| | | | | | | | | (bzr r14954.1.29) | ||||
| | * | | Removed unused includes, decreased compilation time. Once again | Adrian Boguszewski | 2016-08-03 | 1 | -9/+0 |
| | | | | | | | | | | (bzr r15034) | ||||
| | * | | Reverted changes to r15024 after many building problems | Adrian Boguszewski | 2016-07-28 | 1 | -0/+11 |
| | | | | | | | | | | (bzr r15027) | ||||
| | * | | Removed unused includes, decrease compilation time | Adrian Boguszewski | 2016-07-28 | 1 | -11/+0 |
| | |/ | | | | | (bzr r15025) | ||||
| * | | Added items as a range function | Adrian Boguszewski | 2016-07-03 | 1 | -1/+1 |
| |\| | | | | | (bzr r14954.1.13) | ||||
| * | | Moved next functions, added namespace, renamed range functions | Adrian Boguszewski | 2016-06-25 | 1 | -1/+1 |
| |/ | | | (bzr r14954.1.10) | ||||
| * | Fix regression: restore order in resources (e.g. pattern list) | Marc Jeanmougin | 2016-05-21 | 1 | -8/+8 |
| | | | | (bzr r14907) | ||||
| * | GTK3: Give even more widgets names. | Tavmjong Bah | 2016-05-18 | 1 | -0/+1 |
| | | | | (bzr r14901) | ||||
| * | Displays filename instead of blank string in unnamed palettes | Adrian Boguszewski | 2016-03-10 | 1 | -5/+6 |
| | | | | | | | Fixed bugs: - https://launchpad.net/bugs/780659 (bzr r14697) | ||||
| * | cppification : GHashMaps replaced by stl maps. getResouceList now gives a ↵ | Marc Jeanmougin | 2015-12-07 | 1 | -14/+13 |
| | | | | | | | | std::set<SPObject *>. Should give some performance improvements (quite a few linear lookups are now logarithmic) (bzr r14504.1.6) | ||||
| * | Put a few std::vector<SPitem*> | Marc Jeanmougin | 2015-02-19 | 1 | -1/+1 |
| | | | | (bzr r13922.1.5) | ||||
| * | Just... | mc | 2015-02-18 | 1 | -3/+3 |
| | | | | | | | | some... more... lines... (bzr r13922.1.2) | ||||
| * | Remove sp_style_new(). | Tavmjong Bah | 2014-12-25 | 1 | -13/+11 |
| | | | | (bzr r13822.1.6) | ||||
| * | Remove sp_desktop_document and finish cleanup of desktop-handles.h | Liam P. White | 2014-12-21 | 1 | -2/+2 |
| | | | | (bzr r13820) | ||||
| * | Deprecate and remove sp_desktop_selection in favor of SPDesktop::getSelection | Liam P. White | 2014-12-21 | 1 | -1/+1 |
| | | | | (bzr r13809) | ||||
| * | Update to experimental r13565 | Liam P. White | 2014-09-27 | 1 | -73/+30 |
| | | | | (bzr r13341.5.16) | ||||
| * | Convert accidental member accesses into static function accesses | Liam P. White | 2014-06-26 | 1 | -1/+1 |
| | | | | (bzr r13341.5.7) | ||||
| * | 1. make it compile | Liam P. White | 2014-06-25 | 1 | -1/+1 |
| | | | | (bzr r13341.5.1) | ||||
| * | Added "Gtk::" scope to "manage" function calls. | Markus Engel | 2014-03-30 | 1 | -1/+1 |
| | | | | (bzr r13236) | ||||
| * | Stop tracking SPDocuments as they are deleted. | Jon A. Cruz | 2014-03-02 | 1 | -30/+73 |
| | | | | (bzr r13095) | ||||
| * | swatches dialog: remove unused code part. cleanup some code | Johan B. C. Engelen | 2014-02-27 | 1 | -7/+3 |
| | | | | (bzr r13069) | ||||
| * | swatches dialog: properly reference count the reference to SPDocument in ↵ | Johan B. C. Engelen | 2014-02-27 | 1 | -1/+2 |
| | | | | | | | | | timer object. Fixes crash reported in comment #6 of bug 1284391! Fixed bugs: - https://launchpad.net/bugs/1284391 (bzr r13068) | ||||
