Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GHOST_NDOFManagerUnix.h « intern « ghost « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd603e3cb54fac55ef511b5c4bd4d38073368662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

#include "GHOST_NDOFManager.h"

/* Event capture is handled within the NDOF manager on Linux,
 * so there's no need for SystemX11 to look for them. */

class GHOST_NDOFManagerUnix : public GHOST_NDOFManager {
 public:
  GHOST_NDOFManagerUnix(GHOST_System &);
  ~GHOST_NDOFManagerUnix();
  bool available();
  bool processEvents();

 private:
  bool m_available;
};