summaryrefslogtreecommitdiffstats
path: root/src/display/canvas-axonomgrid.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* remove hex color defaults from pref skeletonThomas Holder2019-11-181-2/+2
| | | | | | | | | | | | | /options/grids/axonom/color /options/grids/axonom/empcolor /options/grids/xy/color /options/grids/xy/empcolor /options/wireframecolors/onlight /options/wireframecolors/ondark /options/wireframecolors/images /options/wireframecolors/clips /options/wireframecolors/masks /tools/nodes/highlight_color
* fix #515 axonometric grid snapping w/ y-axis downThomas Holder2019-11-171-5/+12
|
* Merge branch 'master' of gitlab.com:inkscape/inkscapeDiederik van Lierop2019-04-301-9/+9
|\
| * Keep Document Grid spacing on change and saveNathan Lee2019-04-241-9/+9
| | | | | | | | | | | | | | | | | | Reverts behaviour back to Feb 2019. setDigits calls on_value_changed(), leading to 0 value being set when wr.isUpdating() is false. The grid widget is re-created on save, if closed. Fix https://gitlab.com/inkscape/inbox/issues/387
* | Fix disappearing and antialiasing of grid linesDiederik van Lierop2019-04-301-1/+3
|/
* Document Properties: General UI cleanupPatrick Storz2019-03-221-13/+23
| | | | | | Try to achieve consistent look and reasonable alignment. Account for some gtk3 changes and some minor code cleanup.
* Realign UI of Doc Properties > GridNathan Lee2019-03-091-16/+12
| | | | Fixes https://gitlab.com/inkscape/inbox/issues/187
* Fix bug 1810206: Crash if XRay mode enabled (assertion failed in ↵Jabier Arraiza2019-01-071-6/+20
| | | | SPCanvas::paintXRayBuffer) and other improvements to XRay
* Clarify licensesMax Gaukler2018-11-081-7/+8
| | | | | | - 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 #include "config.h" wherever possibleEduard Braun2018-10-011-4/+0
|
* Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot2018-06-181-6/+6
| | | | | This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
* Add buttons to align grids to pageGeoff Lankow2018-05-091-70/+14
|
* Revert "Fix include order with clang-tidy check llvm-include-order"Marc Jeanmougin2018-05-041-6/+6
| | | | This reverts commit bba4ff6672494fab59286b50f6c645ad62a47e60.
* Fix include order with clang-tidy check llvm-include-orderMarc Jeanmougin2018-04-291-6/+6
|
* Re-enable CanvasXYGrid::updateWidgets and CanvasAxonomGrid::updateWidgetsGeoff Lankow2018-03-221-29/+34
|
* Move classes derived from SPObject to own directory.Tavmjong Bah2018-01-301-3/+3
| | | | A lot of header clean-up.
* Removed all GSList occurences in .h filesMarc Jeanmougin2017-10-011-2/+2
|
* Remove some unneeded < C++11 fallback codeAlex Valavanis2017-02-061-1/+0
| | | (bzr r15485)
* Fix a few Gtkmm deprecationsAlex Valavanis2016-12-261-0/+5
| | | (bzr r15357)
* display.canvas-*grid: Drop GTK2 fallbacksAlex Valavanis2016-07-271-38/+2
| | | (bzr r15023.2.3)
* Sync 2Geom to commit 5ee51c1c4f2066faa3e2c82021fc92671ad44ba4Krzysztof Kosi??ski2016-02-081-4/+4
| | | (bzr r14639)
* 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)
* Collect util/ into a static libraryLiam P. White2015-02-251-1/+1
| | | (bzr r13948)
* for grid spacing, reduce numerical error if viewbox and page are same sizeAlvin Penner2015-02-041-0/+3
| | | (bzr r13900)
* for snapping to grids and guides, reduce numerical error for the case of ↵Alvin Penner2015-01-291-0/+5
| | | | | uniform scaling of viewbox (bzr r13881)
* Remove sp_desktop_document and finish cleanup of desktop-handles.hLiam P. White2014-12-211-1/+1
| | | (bzr r13820)
* Change grids to use 'user units'. Grids using absolute units are read in butTavmjong Bah2014-12-111-9/+48
| | | | | may be scaled incorrectly due to change of 90 to 96 dpi. (bzr r13795)
* Fix grid jumping (bug #1342238).Matthew Petroff2014-08-171-0/+3
| | | | | | Fixed bugs: - https://launchpad.net/bugs/1342238 (bzr r13522)
* Added "Gtk::" scope to "manage" function calls.Markus Engel2014-03-301-1/+1
| | | (bzr r13236)
* pass class variables by reference for performanceKris De Gussem2014-01-121-3/+3
| | | (bzr r12917)
* Units: stop newing Unit objects. pass around pointers to "undeletable" Unit ↵Johan B. C. Engelen2013-10-121-9/+10
| | | | | objects in the UnitTable. I think we should move to using indexed units, and pass around the index of the unit in the unittable, or smth like that... ? (bzr r12679)
* Rewrite the internals of the unit code for somewhat better performanceKrzysztof Kosi??ski2013-10-051-5/+5
| | | (bzr r12661)
* Switched to global UnitTable.Matthew Petroff2013-08-041-3/+1
| | | (bzr r12380.1.62)
* Switch unit functions from using pointer arguements to reference arguements.Matthew Petroff2013-07-181-12/+9
| | | (bzr r12380.1.28)
* Ported "display/canvas-grid.*" and "display/canvas-axonomgrid.*".Matthew Petroff2013-07-181-76/+28
| | | (bzr r12380.1.25)
* Removed "helper/unit.*" dependency from "ui/widget/registered-widget.*".Matthew Petroff2013-07-171-1/+1
| | | (bzr r12380.1.21)
* 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/+2
| | | | | | | | versions. Fixes bug #1179338. Fixed bugs: - https://launchpad.net/bugs/1179338 (bzr r12346.1.1)
* Drop more Gtk::Table usageAlex Valavanis2013-03-081-5/+49
| | | (bzr r12180)
* Fix build error due to bad internal handling of deprecated GTK+ symbols in ↵Alex Valavanis2012-10-271-4/+5
| | | | | gtkmm header (bzr r11833)
* bit of a clean-upJohan B. C. Engelen2012-10-261-21/+9
| | | (bzr r11832)
* include yourself first, then the othersJohan B. C. Engelen2012-10-261-2/+3
| | | (bzr r11831)
* allow 0 degree angles for axonometric grid's x and z axesJohan B. C. Engelen2012-10-261-31/+45
| | | | | | Fixed bugs: - https://launchpad.net/bugs/583141 (bzr r11830)
* UI. Fix for Bug #817193 (Usability: emphasize gridlines checkbox is using ↵Nicolas Dufour2012-06-261-1/+1
| | | | | negative text). (bzr r11514)
* Removed outdated classes.Jon A. Cruz2012-06-171-0/+2
| | | | | Pruned header to not introduce extraneous includes. (bzr r11502)
* Prevent false gtk deprecation warnings in canvas-grid and tidy headersAlex Valavanis2012-02-151-0/+1
| | | (bzr r10988)
* More header cleanup/fwd declarationsAlex Valavanis2012-02-151-2/+1
| | | (bzr r10986)
* Snap to grid/guide lines perpendicularlyDiederik van Lierop2012-02-141-0/+6
| | | (bzr r10976)
* Cleaning up a few headersAlex Valavanis2012-02-121-0/+3
| | | (bzr r10961)
* Get rid of gtkmm top-level header usage - not required by APIAlex Valavanis2012-02-061-0/+2
| | | (bzr r10940)