summaryrefslogtreecommitdiff
path: root/libs/widgets/ardour_icon.cc
AgeCommit message (Collapse)Author
2020-03-17remove destructive/tape mode tracksPaul Davis
2019-10-10NO-OP: whitespaceRobin Gareus
2019-10-10Add "List/Browse" vector iconRobin Gareus
2019-09-18NO-OP: fix some Wimplicit-fallthroughRobin Gareus
gcc can recognize various regexps in comments. Since C++17 provides [[fallthrough]], using /* fallthrough */ consistently seems appropriate until we switch to C++17. see also https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
2019-09-12Add new icons: hide, prev/nextRobin Gareus
2019-08-27Cont'd icon tweaksRobin Gareus
* unify line-width calculation * thin line-width, approximate thickness of glyph stroke width at same UI scale * don't use outlines (except main tool buttons) This fixes issues of generic buttons with bright-theme * pixel align some lines
2019-08-27Reduce girth of "plus" iconRobin Gareus
2019-08-26Tweak icon_strip_width icon lines to align to pixelsRobin Gareus
2019-08-26Add some scaleable "Latency" iconRobin Gareus
2019-08-26Tweak icon line widthsRobin Gareus
Scale line-width of all icons, some were left at 1px regardless of scaling factor.
2019-08-23NO-OP: cleanupRobin Gareus
* remove unused code * replace "default" to check for switch() enum completeness
2019-08-22Update plugin-ui related iconsRobin Gareus
2019-08-21Add more vector-icons, plugin toolbar relatedRobin Gareus
This allows to replace "Add", "Save", "Delete", "Reset", "Bypass" text with icons.
2019-08-03Update canvas/UI lib GPL boilerplate and (C) from git logRobin Gareus
2018-10-26Fix some Wimplicit-fallthroughRobin Gareus
A "fall through" comment is most portable way to indicate "no break, fallthru" cases. * __attribute__ ((fallthrough)) // is not portable * [[fallthrough]]; // is C++17
2017-12-23Tweak size of transport-icons for consistent height+baselineRobin Gareus
2017-12-22Tweak icons (for non-square layout)Robin Gareus
2017-07-17Clean up library inheritance (colors.h, utils.h)Robin Gareus
make libwidget independent of libcanvas. Confine basics to pbd and gtkmm2ext.
2017-07-17Move more Gtkmm2ext widgets into libwidgetRobin Gareus