summaryrefslogtreecommitdiffstats
path: root/src/device-manager.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-26Rm unused code now Gtk+ >= 3.22 dependency is setAlexander Valavanis1-30/+16
2019-03-06Avoid the “using std::*;” or “using namespace std;” constructs.Emmanuel Gil Peyrot1-0/+1
This makes the code a lot less readable and greppable for no reason.
2019-01-02modernize loopsMarc Jeanmougin1-19/+19
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-06-18Run clang-tidy’s modernize-use-emplace pass.Emmanuel Gil Peyrot1-2/+2
This reduces the boilerplate required to add a new element to a container.
2018-06-18Run clang-tidy’s modernize-use-equals-default pass.Emmanuel Gil Peyrot1-4/+3
This replaces empty constructors and destructors with the default keyword.
2018-06-18Run clang-tidy’s modernize-use-nullptr pass.Emmanuel Gil Peyrot1-1/+1
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
2018-06-18Run clang-tidy’s modernize-use-override pass.Emmanuel Gil Peyrot1-25/+25
This adds the override specifier on all methods which override a virtual method, whether they were already virtual or missing this specifier.
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.
2016-08-08Use Gdk::Seat instead of Gdk::DeviceManagerAlex Henrie1-3/+17
(bzr r15046.1.1)
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-0/+3
(bzr r15027)
2016-07-28Removed unused includes, decrease compilation timeAdrian Boguszewski1-3/+0
(bzr r15025)
2016-07-27device-manager: Drop GTK2 fallbacksAlex Valavanis1-39/+9
(bzr r15023.2.2)
2015-02-14device-manager: Get rid of GListsAlex Valavanis1-55/+51
(bzr r13922)
2015-02-14device-manager: Migrate to GtkmmAlex Valavanis1-91/+102
(bzr r13921)
2013-03-25Workaround usage of deprecated glib symbols in 3rd party librariesAlex Valavanis1-2/+1
Fixed bugs: - https://launchpad.net/bugs/1122774 (bzr r12243)
2013-02-23Fix missing headers for Gtk+ 3 buildAlex Valavanis1-0/+1
Fixed bugs: - https://launchpad.net/bugs/1122816 (bzr r12145)
2013-01-04ocaldialog: Use GtkSearchEntry in Gtk+ >= 3.6Alex Valavanis1-9/+0
(bzr r12008)
2012-11-26Drop support for GTK+ < 2.24Alex Valavanis1-8/+1
Fixed bugs: - https://launchpad.net/bugs/1069024 (bzr r11907)
2012-10-04code cleanup: add own includes to cpp files or make the functions static if ↵Campbell Barton1-2/+2
they are not used elsewhere. (bzr r11735)
2012-07-24Don't include keyboards in input-device list. Remove comments about private ↵Alex Valavanis1-70/+20
fields. Fixed bugs: - https://launchpad.net/bugs/1028088 (bzr r11571)
2012-07-05Drop GTK+ 2.20 support.Alex Valavanis1-43/+0
Fixed bugs: - https://launchpad.net/bugs/1020494 (bzr r11529)
2012-05-27Stop using obsolete GdkDevice API. Needs testing with extended input devicesAlex Valavanis1-13/+39
(bzr r11425)
2012-02-29Header tidying, suppress all gdk deprecation errors in gtkmmAlex Valavanis1-1/+1
(bzr r11030)
2012-01-05Fix desktop-events backward compat (typo)Alex Valavanis1-1/+1
(bzr r10847)
2012-01-05Backward compatibility for gdk_device_get_has_cursorAlex Valavanis1-2/+3
(bzr r10844)
2012-01-05Fix remaining GSEAL issues in device manager and restore backward compatibility.Alex Valavanis1-4/+89
I have defined a GdkDeviceFake structure, which contains copies of all the private fields of GdkDevice. The isValidDevice function should probably be checked carefully to ensure that I have implemented it correctly. Previously, it appeared to compare pointers to GdkDevices rather than checking that the fields were identical. Fixed bugs: - https://launchpad.net/bugs/911174 (bzr r10842)
2012-01-03Backward compatibility: gdk_device_get_n_keys needs GTK 2.24Alex Valavanis1-1/+10
(bzr r10832)
2012-01-03A few GSEAL issues in device-managerAlex Valavanis1-11/+18
(bzr r10829)
2011-06-03Use generic headers in preparation for GTK+ 3 transitionAlex Valavanis1-1/+1
Fixed bugs: - https://launchpad.net/bugs/792263 (bzr r10252.1.1)
2010-11-17Super duper mega (fun!) commit: replaced encoding=utf-8 with ↵Chris Morgan1-1/+1
fileencoding=utf-8 in all 1074 Vim modelines. The reason for this is that (a) setting the encoding isn't nice, and (b) Vim 7.3 (with modeline enabled) disallows it and pops up an error whenever you open any file with it ("invalid modeline"). Also corrected five deviant modestrings: * src/ui/widget/dock.cpp and src/ui/widget/dock.h: missing colon at the end * src/ui/dialog/tile.cpp: removed gratuitous second colon at the end * src/helper/units-test.h: removed gratuitous space before a colon * share/extensions/export_gimp_palette.py: missing textwidth=99 That's my geekiest commit yet. (bzr r9900)
2010-04-12Simplifying sigc::bind use. Possible fix for mac compile.Jon A. Cruz1-12/+12
Fixed bugs: - https://launchpad.net/bugs/196195 (bzr r9317)
2010-04-10Do not emit signals when setting values to their existing state.Jon A. Cruz1-4/+9
(bzr r9304)
2010-04-08Cleanup of device internal handling and API.Jon A. Cruz1-37/+295
(bzr r9300)
2008-04-05Const char fixupJon A. Cruz1-5/+5
(bzr r5351)
2008-03-24Fixed unlinking of devicesJon A. Cruz1-19/+31
(bzr r5186)
2008-03-22Tracking of live axesJon A. Cruz1-1/+29
(bzr r5172)
2008-03-20Adding signals and linkingJon A. Cruz1-13/+178
(bzr r5129)
2008-03-15Turned off fake test sourcesJon A. Cruz1-1/+1
(bzr r5094)
2008-03-15Split data mode apart from UI and added button trackersJon A. Cruz1-0/+225
(bzr r5092)