mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-23 07:59:03 -04:00
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
|
#ifndef __NCPP_MULTI_SELECTOR_HH
|
||
|
#define __NCPP_MULTI_SELECTOR_HH
|
||
|
|
||
|
#include <notcurses/notcurses.h>
|
||
|
|
||
|
#include "Root.hh"
|
||
|
#include "NCAlign.hh"
|
||
|
|
||
|
namespace ncpp
|
||
|
{
|
||
|
class Plane;
|
||
|
|
||
|
class NCPP_API_EXPORT MultiSelector : public Root
|
||
|
{
|
||
|
public:
|
||
|
static multiselector_options default_options;
|
||
|
|
||
|
public:
|
||
|
explicit MultiSelector (Plane *plane, int y, int x, const multiselector_options *opts = nullptr)
|
||
|
: MultiSelector (reinterpret_cast<ncplane*>(plane), y, x, opts)
|
||
|
{}
|
||
|
|
||
|
explicit MultiSelector (Plane const* plane, int y, int x, const multiselector_options *opts = nullptr)
|
||
|
: MultiSelector (const_cast<Plane*>(plane), y, x, opts)
|
||
|
{}
|
||
|
|
||
|
explicit MultiSelector (Plane &plane, int y, int x, const multiselector_options *opts = nullptr)
|
||
|
: MultiSelector (reinterpret_cast<ncplane*>(&plane), y, x, opts)
|
||
|
{}
|
||
|
|
||
|
explicit MultiSelector (Plane const& plane, int y, int x, const multiselector_options *opts = nullptr)
|
||
|
: MultiSelector (const_cast<Plane*>(&plane), y, x, opts)
|
||
|
{}
|
||
|
|
||
|
explicit MultiSelector (ncplane *plane, int y, int x, const multiselector_options *opts = nullptr)
|
||
|
{
|
||
|
if (plane == nullptr)
|
||
|
throw invalid_argument ("'plane' must be a valid pointer");
|
||
|
|
||
|
multiselector = ncmultiselector_create (plane, y, x, opts == nullptr ? &default_options : opts);
|
||
|
if (multiselector == nullptr)
|
||
|
throw init_error ("notcurses failed to create a new multiselector");
|
||
|
}
|
||
|
|
||
|
~MultiSelector ()
|
||
|
{
|
||
|
if (!is_notcurses_stopped ())
|
||
|
ncmultiselector_destroy (multiselector, nullptr);
|
||
|
}
|
||
|
|
||
|
bool offer_input (const struct ncinput *nc) const noexcept
|
||
|
{
|
||
|
return ncmultiselector_offer_input (multiselector, nc);
|
||
|
}
|
||
|
|
||
|
const int get_selected (bool *selected, unsigned count) const noexcept
|
||
|
{
|
||
|
return ncmultiselector_selected (multiselector, selected, count);
|
||
|
}
|
||
|
|
||
|
Plane* get_plane () const noexcept;
|
||
|
|
||
|
private:
|
||
|
ncmultiselector *multiselector;
|
||
|
};
|
||
|
}
|
||
|
#endif
|