You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/include/ncpp/Tablet.hh

62 lines
1009 B
C++

5 years ago
#ifndef __NCPP_TABLET_HH
#define __NCPP_TABLET_HH
#include <map>
#include <mutex>
#include <notcurses.h>
#include "Root.hh"
namespace ncpp
{
class Plane;
class NCPP_API_EXPORT Tablet : public Root
{
protected:
explicit Tablet (tablet *t)
: _tablet (t)
{
if (t == nullptr)
throw new invalid_argument ("'t' must be a valid pointer");
};
public:
template<typename T>
T* get_userptr () const noexcept
{
return static_cast<T*>(tablet_userptr (_tablet));
}
operator tablet* () const noexcept
{
return _tablet;
}
operator tablet const* () const noexcept
{
return _tablet;
}
Plane* get_plane () const noexcept;
static Tablet* map_tablet (tablet *t) noexcept;
protected:
static void unmap_tablet (Tablet *p) noexcept;
tablet* get_tablet () const noexcept
{
return _tablet;
}
private:
tablet *_tablet = nullptr;
static std::map<tablet*,Tablet*> *tablet_map;
static std::mutex tablet_map_mutex;
friend class PanelReel;
};
}
#endif