mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-06 03:20:26 +00:00
e429724287
Added: * Plane: gradient (`ncplane_gradient`) * Plane: gradient_sized (`ncplane_gradient_sized`) * NotCurses: drop_planes (`ncplane_drop_planes`) * NcReel: constructor which takes `Plane&` * Visual: constructors which take `Plane const*`, `Plane&` and `Plane const&`) * ncpp_build: a nonsensical "demo" which exists purely to test whether the C++ builds and does absolutely nothing interesting. Broke: * All exceptions throw temporary objects instead of allocated instances. Less typing in `catch` :P (and more conventional)
88 lines
2.0 KiB
C++
88 lines
2.0 KiB
C++
#ifndef __NCPP_SELECTOR_HH
|
|
#define __NCPP_SELECTOR_HH
|
|
|
|
#include <notcurses.h>
|
|
|
|
#include "Root.hh"
|
|
#include "NCAlign.hh"
|
|
|
|
namespace ncpp
|
|
{
|
|
class Plane;
|
|
|
|
class NCPP_API_EXPORT Selector : public Root
|
|
{
|
|
public:
|
|
static selector_options default_options;
|
|
|
|
public:
|
|
explicit Selector (Plane *plane, int y, int x, const selector_options *opts = nullptr)
|
|
: Selector (reinterpret_cast<ncplane*>(plane), y, x, opts)
|
|
{}
|
|
|
|
explicit Selector (Plane const* plane, int y, int x, const selector_options *opts = nullptr)
|
|
: Selector (const_cast<Plane*>(plane), y, x, opts)
|
|
{}
|
|
|
|
explicit Selector (Plane &plane, int y, int x, const selector_options *opts = nullptr)
|
|
: Selector (reinterpret_cast<ncplane*>(&plane), y, x, opts)
|
|
{}
|
|
|
|
explicit Selector (Plane const& plane, int y, int x, const selector_options *opts = nullptr)
|
|
: Selector (const_cast<Plane*>(&plane), y, x, opts)
|
|
{}
|
|
|
|
explicit Selector (ncplane *plane, int y, int x, const selector_options *opts = nullptr)
|
|
{
|
|
if (plane == nullptr)
|
|
throw invalid_argument ("'plane' must be a valid pointer");
|
|
|
|
selector = ncselector_create (plane, y, x, opts == nullptr ? &default_options : opts);
|
|
if (selector == nullptr)
|
|
throw init_error ("notcurses failed to create a new selector");
|
|
}
|
|
|
|
~Selector ()
|
|
{
|
|
if (!is_notcurses_stopped ())
|
|
ncselector_destroy (selector, nullptr);
|
|
}
|
|
|
|
bool additem (const selector_item *item) const noexcept
|
|
{
|
|
return ncselector_additem (selector, item) >= 0;
|
|
}
|
|
|
|
bool delitem (const char *item) const noexcept
|
|
{
|
|
return ncselector_delitem (selector, item) >= 0;
|
|
}
|
|
|
|
const char* previtem () const noexcept
|
|
{
|
|
return ncselector_previtem (selector);
|
|
}
|
|
|
|
const char* nextitem () const noexcept
|
|
{
|
|
return ncselector_nextitem (selector);
|
|
}
|
|
|
|
const char* get_selected () const noexcept
|
|
{
|
|
return ncselector_selected (selector);
|
|
}
|
|
|
|
bool offer_input (const struct ncinput* nc) const noexcept
|
|
{
|
|
return ncselector_offer_input (selector, nc);
|
|
}
|
|
|
|
Plane* get_plane () const noexcept;
|
|
|
|
private:
|
|
ncselector *selector;
|
|
};
|
|
}
|
|
#endif
|