summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/export.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-11-20fix PNG export dialog crash (heap-use-after-free)Thomas Holder1-3/+3
Possibly related to inbox#1185
2019-08-23Eliminate clang warningsThomas Holder1-19/+5
-Winfinite-recursion -Wpessimizing-move -Wunused-label -Wunneeded-internal-declaration -Wself-assign-overloaded -Wunused-const-variable (some) -Wsometimes-uninitialized (some)
2019-08-18reduce usage of desktop coordinates (#341)Thomas Holder1-2/+4
- avoid unnecessary internal usage of desktop coordinates, e.g. in SpellCheck::compareTextBboxes - document whether a function argument is in document or desktop coordinates, e.g. for SPDocument::getItemsInBox
2019-07-01Fix various minor typosYuri Chornoivan1-4/+4
2019-04-02Tidy various dialog UIsNathan Lee1-18/+22
2019-02-20Give more descriptive names to document file related variables and functions.Tavmjong Bah1-6/+6
Makes searching through code for them easier.
2019-01-08Remove unused header file.Tavmjong Bah1-1/+0
2019-01-02modernize loopsMarc Jeanmougin1-6/+6
2018-12-29Rm deprecated budget widgetsAlexander Valavanis1-4/+12
2018-11-08Clarify licensesMax Gaukler1-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
2018-10-01Remove #include "config.h" wherever possibleEduard Braun1-4/+0
2018-10-01Use _WIN32 instead of WIN32Eduard Braun1-2/+2
The former is guaranteed to be set for any compiler targeting win32, the latter is implementation dependent (but works for gcc) See also http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system
2018-06-19Run clang-tidy’s modernize-redundant-void-arg pass.Emmanuel Gil Peyrot1-2/+2
2018-06-18Run clang-tidy’s modernize-use-bool-literals pass.Emmanuel Gil Peyrot1-3/+3
This makes it clearer whether an integer or a boolean has to be passed in this specific call.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-20/+20
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-06-12Run clang-tidy’s modernize-use-equals-delete pass.Emmanuel Gil Peyrot1-2/+2
Adds a delete specifier on constructors, destructors or assignment methods that should never be called, ensuring they actually never will.
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-19/+20
A lot of header clean-up.
2018-01-16panel: Remove the unused "title" labelStefano Facchini1-1/+1
2018-01-08Misc. typosluz.paz1-1/+1
Found via `codespell`
2017-11-30Make bitmap export progress dialog transient for the main windowEduard Braun1-0/+1
2017-11-25Allow to cancel PNG exportEduard Braun1-4/+4
Fixed bug: - https://bugs.launchpad.net/inkscape/+bug/1195929
2017-10-13Remove deprecated GNOME VFSStefano Facchini1-9/+1
Just use Gio::File when access to non-local files is needed.
2017-07-08Fix Gtk alignment APIAlexander Valavanis1-2/+4
2017-06-28Refactor profile directory use and promote IO::Resource get_path and ↵Martin Owens1-1/+2
get_filename methods
2017-03-20Implement rotation via desktop to window affine.Tavmjong Bah1-8/+1
Remove rotation via viewbox. Still some work to do... (bzr r15603)
2017-01-04antialiasing options on exportMarc Jeanmougin1-3/+12
(bzr r15391)
2016-12-27Rm some deprecated Gtk::Stock usageAlex Valavanis1-10/+5
(bzr r15366)
2016-11-05Add exportersJabier Arraiza Cenoz1-3/+0
(bzr r15142.1.32)
2016-10-24CPPification: almost all sp_object_set_whatever and sp_selection_whatever ↵Marc Jeanmougin1-1/+1
global functions are now methods of ObjectSet*, with these additional benefits: - They can now act on any SelectionSet, not just the current selection; - Whenever possible, they don't need a desktop anymore and can run if called from GUI. I hope I did not break too many things in the process. *: So instead of callink sp_selection_move(desktop,x,y), you call myobjectset->move(x,y) (bzr r15189)
2016-10-02Doc rotate startJabier Arraiza Cenoz1-1/+11
(bzr r15142.1.1)
2016-09-25minor fix (+ satisfy build bots (?))Marc Jeanmougin1-3/+4
(bzr r15132)
2016-09-25Exposes to the user additional PNG settings: Interlacing, grayscale, bit ↵Marc Jeanmougin1-5/+56
depth, alpha, compression level, PNG pHYs dpi. Fixed bugs: - https://launchpad.net/bugs/170650 (bzr r15131)
2016-08-03Removed unused includes, decreased compilation time. Once againAdrian Boguszewski1-14/+1
(bzr r15034)
2016-07-28Finish removing GTK+ 2 fallbacksAlex Valavanis1-5/+0
(bzr r15023.2.8)
2016-07-28Drop remaining GTKMM 2 fallback supportAlex Valavanis1-84/+6
(bzr r15023.2.7)
2016-07-28Reverted changes to r15024 after many building problemsAdrian Boguszewski1-1/+15
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-15/+1
(bzr r15025)
2016-07-27Renamed some functions, fixed testsAdrian Boguszewski1-1/+1
(bzr r14954.1.28)
2016-07-01Added xmlNodes as range functionAdrian Boguszewski1-5/+4
(bzr r14954.1.12)
2016-06-25Moved next functions, added namespace, renamed range functionsAdrian Boguszewski1-7/+7
(bzr r14954.1.10)
2015-11-05static code analysisKris De Gussem1-3/+3
(bzr r14446)
2015-09-12Export. Fix for bug #170295 (default export image name for not-saved drawings).Nicolas Dufour1-0/+7
Fixed bugs: - https://launchpad.net/bugs/170295 (bzr r14357)
2015-07-10Force PNG bitmap export to always write with PNG extensionJabier Arraiza Cenoz1-3/+5
(bzr r14238)
2015-04-27Fix unnecessary inclusion of glibmm/threads.h. This can be resolved by ↵Alex Valavanis1-4/+0
ensuring that glibmm headers always preceed glib.h headers. Same applies with gtkmm/gtk+ etc (bzr r14064)
2015-02-27corrected the casts (hopefully)Marc Jeanmougin1-2/+2
(bzr r13922.1.10)
2015-02-19Put a few std::vector<SPitem*>Marc Jeanmougin1-4/+4
(bzr r13922.1.5)
2015-02-18I can't really understand why, but i can now launch inkscape without it ↵mc1-6/+6
segfaulting. That's an improvement. Next thing: code cleaning, replacing containers with vectors (bzr r13922.1.4)
2015-02-17At first, I was thinking "I just have to go to the selection file, and ↵Marc Jeanmougin1-13/+15
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)
2014-12-21Remove sp_desktop_document and finish cleanup of desktop-handles.hLiam P. White1-8/+7
(bzr r13820)
2014-12-21Purge sp_desktop_namedview in favor of SPDesktop::getNamedViewLiam P. White1-2/+2
(bzr r13810)