diff options
Diffstat (limited to 'xbmc/windowing/wayland/SeatSelection.h')
-rw-r--r-- | xbmc/windowing/wayland/SeatSelection.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/xbmc/windowing/wayland/SeatSelection.h b/xbmc/windowing/wayland/SeatSelection.h new file mode 100644 index 0000000..ec99a0d --- /dev/null +++ b/xbmc/windowing/wayland/SeatSelection.h @@ -0,0 +1,49 @@ +/* + * 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 "threads/CriticalSection.h" + +#include <string> +#include <vector> + +#include <wayland-client-protocol.hpp> + +namespace KODI +{ +namespace WINDOWING +{ +namespace WAYLAND +{ + +class CConnection; + +/** + * Retrieve and accept selection (clipboard) offers on the data device of a seat + */ +class CSeatSelection +{ +public: + CSeatSelection(CConnection& connection, wayland::seat_t const& seat); + std::string GetSelectionText() const; + +private: + wayland::data_device_t m_dataDevice; + wayland::data_offer_t m_currentOffer; + mutable wayland::data_offer_t m_currentSelection; + + std::vector<std::string> m_mimeTypeOffers; + std::string m_matchedMimeType; + + mutable CCriticalSection m_currentSelectionMutex; +}; + +} +} +} |