summaryrefslogtreecommitdiffstats
path: root/src/inkscape.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed unused includes, decrease compilation timeAdrian Boguszewski2016-07-281-12/+1
| | | (bzr r15025)
* Fix unnecessary inclusion of glibmm/threads.h. This can be resolved by ↵Alex Valavanis2015-04-271-4/+0
| | | | | ensuring that glibmm headers always preceed glib.h headers. Same applies with gtkmm/gtk+ etc (bzr r14064)
* Remove sp_desktop_document and finish cleanup of desktop-handles.hLiam P. White2014-12-211-2/+2
| | | (bzr r13820)
* Deprecate and remove sp_desktop_selection in favor of SPDesktop::getSelectionLiam P. White2014-12-211-8/+8
| | | (bzr r13809)
* Fix crash bug when exporting PNG from CLILiam P. White2014-07-241-4/+6
| | | (bzr r13341.5.12)
* 5. Refactoring of Application class: make copy/assignment operators private, ↵Liam P. White2014-06-271-25/+51
| | | | | disallow pointers to Application (bzr r13341.5.9)
* Move constructor/destructor into private section, remove protected section. ↵Liam P. White2014-06-271-2/+15
| | | | | Rename init(). Add to-do list. (bzr r13341.5.8)
* 4. further refactor Application class; create proper singleton, encapsulate ↵Liam P. White2014-06-261-132/+123
| | | | | members, simplify signals (bzr r13341.5.6)
* Fix filters/extensions menus not populatingLiam P. White2014-06-261-1/+10
| | | (bzr r13341.5.4)
* 3. remove dead code, refactor existing code. Connect overlooked signals.Liam P. White2014-06-261-419/+185
| | | (bzr r13341.5.3)
* 2. connect signalsLiam P. White2014-06-251-2/+8
| | | (bzr r13341.5.2)
* 1. make it compileLiam P. White2014-06-251-283/+267
| | | (bzr r13341.5.1)
* Adding new INKSCAPE_PROFILE_DIR environment variable (see bug #1247448, ↵Nicolas Dufour2014-05-101-0/+5
| | | | | | | | environment variable INKSCAPE_PORTABLE_PROFILE_DIR should be documented in man page). Fixed bugs: - https://launchpad.net/bugs/1247448 (bzr r13346)
* fix Windows build for newer gcc/libsJohan B. C. Engelen2014-03-231-1/+4
| | | (bzr r13190)
* Moved and renamed some tool-related files.Markus Engel2013-11-091-1/+1
| | | (bzr r12785)
* First step of moving tools into appropriate namespaces.Markus Engel2013-11-071-3/+3
| | | (bzr r12782)
* effects don't need to merge into menus if we're running without gui; with ↵buliabyak2013-09-281-1/+1
| | | | | this we can purge a redundant reading of menus skeleton, which leaked its xml tree (bzr r12616)
* return value of g_utf16_to_utf8 was leaking herebuliabyak2013-09-281-1/+3
| | | (bzr r12609)
* Further refactoring of EventContexts.Markus Engel2013-07-301-4/+4
| | | (bzr r11608.1.109)
* Further renaming of DBus variables (object -> app_interface/doc_interfaceEric Greveson2013-07-041-1/+16
| | | | | | | and doc_context -> target) Fixes to application interface for document_new (now only works in console mode, and behaves as expected) (bzr r12387.1.8)
* Modified dbus interface so that it works in console mode (--dbus-listen)Eric Greveson2013-07-031-0/+54
| | | | | | | | Modified action context setup so that in console mode, when a document is added to the main inkscape app instance, it gets a selection model and layer model automatically set up for it Made a couple more verbs work in console mode (bzr r12387.1.4)
* Factored layer model out into new Inkscape::LayerModel class. This allowsEric Greveson2013-07-011-1/+1
| | | | | | | | | | | | | Inkscape::Selection to use a LayerModel that is not associated with a UI. Changed the interface of verbs (SPAction) to use a new ActionContext rather than UI::View::View, again so that verbs may be used in a console mode. Modified boolean operation verbs to work in console-only mode. Fixed up DESKTOP_IS_ACTIVE macro to work in the case of no desktops. Modified main.cpp to process selections and verbs in no-GUI mode. Other changes are all consequences of the SPDesktop, Selection and LayerModel interface changes. (bzr r12387.1.1)
* Added configure/ifdef guards to only bring in the needed #include if glibmm ↵Jon A. Cruz2013-06-061-0/+2
| | | | | has it. (bzr r12353)
* Correct to compile against recent gtkmm, including updated macports ↵Jon A. Cruz2013-06-041-0/+3
| | | | | | | | versions. Fixes bug #1179338. Fixed bugs: - https://launchpad.net/bugs/1179338 (bzr r12346.1.1)
* Checking file presence before calling lstat (should fix Bug #785701 Inkscape ↵Kris De Gussem2013-04-031-7/+9
| | | | | freezes at opening) (bzr r12263)
* Workaround usage of deprecated glib symbols in 3rd party librariesAlex Valavanis2013-03-251-2/+1
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1122774 (bzr r12243)
* Fix another load of forward declaration tagsAlex Valavanis2013-03-141-1/+1
| | | (bzr r12205)
* Fix missing headers for Gtk+ 3 buildAlex Valavanis2013-02-231-0/+2
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1122816 (bzr r12145)
* Fix for 1073128 : Command line PNG export fails if FeFlood filter primitive ↵John Smith2012-11-291-0/+4
| | | | | is present (bzr r11913)
* Fix translation issue of rev 11759.Kris De Gussem2012-10-091-4/+4
| | | (bzr r11772)
* Fix for 490338 : Try to create the autosave directory if that does not existsJohn Smith2012-10-081-2/+18
| | | (bzr r11759)
* code cleanup: add own includes to cpp files or make the functions static if ↵Campbell Barton2012-10-041-3/+3
| | | | | they are not used elsewhere. (bzr r11735)
* (cppcheck and janitorial tasks:) C-style casting to C++-style castingKris De Gussem2012-02-251-10/+12
| | | (bzr r11011)
* Move gtkmm headers that internally re-enable deprecated gtk symbols to top. ↵Alex Valavanis2012-02-151-1/+1
| | | | | Hides many GTK deprecation errors that we can't fix in Inkscape (bzr r10982)
* Header cleaningAlex Valavanis2012-02-121-1/+0
| | | (bzr r10963)
* Get rid of deprecated gtk_marshal_* and some old GtkComboBox APIAlex Valavanis2012-02-111-1/+2
| | | (bzr r10959)
* Cleanup for src/forward.h. (About 19 of the affected files did not require ↵Jon A. Cruz2011-10-051-0/+4
| | | | | the contents forward.h at all). (bzr r10667)
* Another minor pass of Doxygen cleanup.Jon A. Cruz2011-10-031-2/+3
| | | (bzr r10659)
* Merge from trunkKrzysztof Kosi??ski2011-06-191-7/+4
|\ | | | | (bzr r9508.1.89)
| * Use generic headers in preparation for GTK+ 3 transitionAlex Valavanis2011-06-031-2/+1
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/792263 (bzr r10252.1.1)
| * Applying patch from Gellule Xg to fix crash on 64-bit.Jon A. Cruz2011-05-271-1/+1
| | | | | | | | | | | | Fixed bugs: - https://launchpad.net/bugs/629363 (bzr r10237)
| * Reinstating version bump.Jon A. Cruz2011-05-201-4/+0
| | | | | | (bzr r10215)
| * Revert version bump so win devlibs can catch up.Jon A. Cruz2011-05-191-0/+4
| | | | | | (bzr r10210)
| * Made dependencies explicit and bumped versions.Jon A. Cruz2011-05-181-4/+0
| | | | | | (bzr r10208)
| * Adding initial cut of resource manager.Jon A. Cruz2011-05-061-0/+2
| | | | | | (bzr r10198)
* | No more PrintWin32, including no special cases for non-Unicode Windows anymore.Jasper van de Gronde2011-04-151-12/+2
|/ | | (bzr r9508.1.82)
* Cleaned up memory patch. Fixes bug #737298.Jon A. Cruz2011-03-201-10/+18
| | | | | | Fixed bugs: - https://launchpad.net/bugs/737298 (bzr r10118)
* Merge and cleanup of GSoC C++-ification project.Jon A. Cruz2010-12-121-7/+7
|\ | | | | (bzr r9945.1.1)
* | Stop background rendering once crash handler is triggered.Jon A. Cruz2010-12-061-0/+9
| | | | | | (bzr r9940)
* | Remove the failed and unused "new gui" stuff.Krzysztof Kosi??ski2010-10-121-105/+30
|/ | | (bzr r9828)