Krita Source Code Documentation
Loading...
Searching...
No Matches
osx.mm
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2017 Bernhard Liebl
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6#import <AppKit/AppKit.h>
7
8extern "C" {
10 void setMouseCoalescingEnabled(bool enabled);
11}
12
14 return NSEvent.isMouseCoalescingEnabled;
15}
16
17void setMouseCoalescingEnabled(bool enabled) {
18 NSEvent.mouseCoalescingEnabled = enabled;
19}
bool isMouseCoalescingEnabled()
Definition osx.mm:13
void setMouseCoalescingEnabled(bool enabled)
Definition osx.mm:17