Home
last modified time | relevance | path

Searched refs:CInputProcessorPointer (Results 1 – 4 of 4) sorted by relevance

/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/windowing/wayland/
H A DInputProcessorPointer.cpp40 CInputProcessorPointer::CInputProcessorPointer(wayland::surface_t const& surface, IInputHandlerPoin… in CInputProcessorPointer() function in CInputProcessorPointer
45 void CInputProcessorPointer::OnPointerEnter(CSeat* seat, in OnPointerEnter()
60 void CInputProcessorPointer::OnPointerLeave(CSeat* seat, in OnPointerLeave()
71 void CInputProcessorPointer::OnPointerMotion(CSeat* seat, std::uint32_t time, double surfaceX, doub… in OnPointerMotion()
80 void CInputProcessorPointer::OnPointerButton(CSeat* seat, std::uint32_t serial, std::uint32_t time,… in OnPointerButton()
96 void CInputProcessorPointer::OnPointerAxis(CSeat* seat, std::uint32_t time, wayland::pointer_axis a… in OnPointerAxis()
112 std::uint16_t CInputProcessorPointer::ConvertMouseCoordinate(double coord) const in ConvertMouseCoordinate()
117 void CInputProcessorPointer::SetMousePosFromSurface(CPointGen<double> position) in SetMousePosFromSurface()
122 void CInputProcessorPointer::SendMouseMotion() in SendMouseMotion()
129 void CInputProcessorPointer::SendMouseButton(unsigned char button, bool pressed) in SendMouseButton()
H A DInputProcessorPointer.h37 class CInputProcessorPointer final : public IRawInputHandlerPointer
40 CInputProcessorPointer(wayland::surface_t const& surface, IInputHandlerPointer& handler);
56 CInputProcessorPointer(CInputProcessorPointer const& other) = delete;
57 CInputProcessorPointer& operator=(CInputProcessorPointer const& other) = delete;
H A DSeatInputProcessing.h123 std::unique_ptr<CInputProcessorPointer> pointerProcessor;
H A DSeatInputProcessing.cpp27 seatState.pointerProcessor.reset(new CInputProcessorPointer(m_inputSurface, *this)); in AddSeat()