summaryrefslogtreecommitdiffstats
path: root/xbmc/peripherals/devices/PeripheralMouse.h
blob: b46776db04290bb46b051f634e21bf4669d852d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 *  Copyright (C) 2017-2018 Team Kodi
 *  This file is part of Kodi - https://kodi.tv
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *  See LICENSES/README.md for more information.
 */

#pragma once

#include "Peripheral.h"
#include "XBDateTime.h"
#include "input/mouse/interfaces/IMouseDriverHandler.h"
#include "threads/CriticalSection.h"

#include <vector>

namespace PERIPHERALS
{
class CPeripheralMouse : public CPeripheral, public KODI::MOUSE::IMouseDriverHandler
{
public:
  CPeripheralMouse(CPeripherals& manager,
                   const PeripheralScanResult& scanResult,
                   CPeripheralBus* bus);

  ~CPeripheralMouse(void) override;

  // implementation of CPeripheral
  bool InitialiseFeature(const PeripheralFeature feature) override;
  void RegisterMouseDriverHandler(KODI::MOUSE::IMouseDriverHandler* handler,
                                  bool bPromiscuous) override;
  void UnregisterMouseDriverHandler(KODI::MOUSE::IMouseDriverHandler* handler) override;
  CDateTime LastActive() override { return m_lastActive; }
  KODI::GAME::ControllerPtr ControllerProfile() const override;

  // implementation of IMouseDriverHandler
  bool OnPosition(int x, int y) override;
  bool OnButtonPress(KODI::MOUSE::BUTTON_ID button) override;
  void OnButtonRelease(KODI::MOUSE::BUTTON_ID button) override;

private:
  struct MouseHandle
  {
    KODI::MOUSE::IMouseDriverHandler* handler;
    bool bPromiscuous;
  };

  std::vector<MouseHandle> m_mouseHandlers;
  CCriticalSection m_mutex;
  CDateTime m_lastActive;
};
} // namespace PERIPHERALS