summaryrefslogtreecommitdiffstats
path: root/src/ui/toolbar/arc-toolbar.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-08-06Fix Arc toolbar buttons (gitlab, inkscape#355)Nathan Lee1-0/+4
2019-05-26Rm unused code now Gtk+ >= 3.22 dependency is setAlexander Valavanis1-10/+0
2019-04-30Make display unit change roll out to toolbarsNathan Lee1-1/+2
Add exception for measure tool, which uses preferences Fixes https://gitlab.com/inkscape/inbox/issues/393 Partial fix: https://gitlab.com/inkscape/inkscape/issues/208
2019-02-03UnitTracker: Create tool item without using GtkActionAlexander Valavanis1-3/+2
2019-01-29ArcToolbar: GtkAction migrationAlexander Valavanis1-156/+127
2019-01-29EraserToolbar: GtkAction migrationAlexander Valavanis1-1/+0
2019-01-22Tidy up toolbox utilitiesAlexander Valavanis1-0/+1
2019-01-22Tidy up toolbox codeAlexander Valavanis1-4/+4
2019-01-21Cleanup unused toolbar codeAlexander Valavanis1-10/+2
2019-01-19derive all toolbars from Inkscape::ToolbarAlexander Valavanis1-338/+331
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-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-21/+21
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-06-17Move toolbars to ui/toolbarAlexander Valavanis1-3/+2
2018-04-12Fix inconsistent signal disconnection in arc toolbarMikko Rasa1-1/+3
Leaving the repr listener up while the selection signal was disconnected caused a crash when the attribute change callback was called with an old item pointer still stored in tbl.
2018-03-08Incorporate Eduard's suggestion for Ellipse Undo entry.Maren Hachmann1-1/+1
2018-03-02Suggestion for improved Undo string when changing radii of an ellipse, ↵Maren Hachmann1-1/+1
consistent with other messages and more specific.
2018-02-04Convert UnitTracker to use ink-select-one-action.Tavmjong Bah1-4/+2
Additional code clean up.
2018-01-30Move classes derived from SPObject to own directory.Tavmjong Bah1-7/+11
A lot of header clean-up.
2018-01-29Don't translate the empty string.Eduard Braun1-3/+3
Really, please don't do it! - in the best case it shows a wall of useless text to the user - in the worst case it causes strange crashes for users with non-English locale
2018-01-09Fix sensitivity for arc toolbar controls.Tavmjong Bah1-3/+3
2018-01-08Convert arc-toolbar to use ink-select-one-action.Tavmjong Bah1-49/+50
2017-12-26Stop using deprecated gtk_adjustment_value_changedAlexander Valavanis1-0/+12
2017-12-04Add arc radius to toolbarGeoff Lankow1-32/+25
2017-12-04Change labels a bit for consistency with other UI stringsEduard Braun1-2/+2
2017-12-04Prevent setting zero radiusEduard Braun1-0/+7
While the spec explicitly allows for that (and it should disable rendering of the element) Inkscape does not allow setting a zero radius at runtime (it works fine when opening an existing file). If we still force this during runtime we end up with a "ghost" ellipse on canvas which looks as if it had the old radius but has control points according to the zero radius and has the added bonus of not being movable (or rather being movable but snapping back back immediately when released) until updating the radius with a valid number again which finally moves the ellipse to wherever it should have been.
2017-12-04Account for Inkscape's custom arcs (which do not have cx/cy)Eduard Braun1-0/+4
If an open arc is rendered we need to look at the prefixed values instead.
2017-12-04Do not reset rx/cx to zero when resetting arc to whole ellipseEduard Braun1-7/+0
2017-11-25Add arc radius to toolbarGeoff Lankow1-0/+155
2017-06-29Remove old icon handling codeAlexander Valavanis1-1/+1
2017-03-02Implement arc "chord" type. (Matches Krita "chord" arc type.)Tavmjong Bah1-34/+57
(bzr r15561)
2016-08-05Split InkAction classes into separate filesAlex Valavanis1-1/+2
(bzr r15043)
2016-08-03Removed unused includes, decreased compilation time. Once againAdrian Boguszewski1-3/+1
(bzr r15034)
2016-07-28Reverted changes to r15024 after many building problemsAdrian Boguszewski1-1/+3
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-3/+1
(bzr r15025)
2016-06-25Moved next functions, added namespace, renamed range functionsAdrian Boguszewski1-4/+4
(bzr r14954.1.10)
2015-11-05static code analysisKris De Gussem1-4/+4
(bzr r14446)
2015-02-27corrected the casts (hopefully)Marc Jeanmougin1-4/+4
(bzr r13922.1.10)
2015-02-19Put a few std::vector<SPitem*>Marc Jeanmougin1-8/+8
(bzr r13922.1.5)
2015-02-17At first, I was thinking "I just have to go to the selection file, and ↵Marc Jeanmougin1-21/+12
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-5/+5
(bzr r13820)
2014-12-21Deprecate and remove sp_desktop_selection in favor of SPDesktop::getSelectionLiam P. White1-5/+5
(bzr r13809)
2014-10-05Move GtkAction subclasses to widgets/Liam P. White1-4/+4
(bzr r13341.1.249)
2014-08-10Further fixes related to bug #1327267, toolbars don't need to update when ↵Liam P. White1-5/+15
their context is not in use (bzr r13341.1.126)
2014-03-02Fixed includes for tools.Markus Engel1-26/+16
(bzr r13097)
2013-11-09Moved and renamed some tool-related files.Markus Engel1-1/+1
(bzr r12785)
2013-10-08Seamlessly switch between SVG circle, ellipse, and path (arc) elements while ↵Tavmjong Bah1-7/+6
using the Circle, Ellipse, and Arc tool. (bzr r12670)
2013-09-26Further refactored SPEllipse.Markus Engel1-1/+1
(bzr r12601)
2013-07-19Removed "helper/unit-menu.h" from "widgest/toolbar.*" and associated files.Matthew Petroff1-2/+2
(bzr r12380.1.30)
2013-07-17Removed unused unit includes.Matthew Petroff1-4/+0
(bzr r12380.1.10)