mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
72 lines
2.0 KiB
C++
72 lines
2.0 KiB
C++
#ifndef __NCPP_MULTI_SELECTOR_HH
|
|
#define __NCPP_MULTI_SELECTOR_HH
|
|
|
|
#include <notcurses/notcurses.h>
|
|
|
|
#include "NCAlign.hh"
|
|
#include "Plane.hh"
|
|
#include "Utilities.hh"
|
|
|
|
namespace ncpp
|
|
{
|
|
class NCPP_API_EXPORT MultiSelector : public Root
|
|
{
|
|
public:
|
|
static ncmultiselector_options default_options;
|
|
|
|
public:
|
|
explicit MultiSelector (Plane *plane, int y, int x, const ncmultiselector_options *opts = nullptr)
|
|
: MultiSelector (static_cast<const Plane*>(plane), y, x, opts)
|
|
{}
|
|
|
|
explicit MultiSelector (Plane const* plane, int y, int x, const ncmultiselector_options *opts = nullptr)
|
|
: Root (Utilities::get_notcurses_cpp (plane))
|
|
{
|
|
common_init (Utilities::to_ncplane (plane), y, x, opts);
|
|
}
|
|
|
|
explicit MultiSelector (Plane &plane, int y, int x, const ncmultiselector_options *opts = nullptr)
|
|
: MultiSelector (static_cast<Plane const&>(plane), y, x, opts)
|
|
{}
|
|
|
|
explicit MultiSelector (Plane const& plane, int y, int x, const ncmultiselector_options *opts = nullptr)
|
|
: Root (Utilities::get_notcurses_cpp (plane))
|
|
{
|
|
common_init (Utilities::to_ncplane (plane), y, x, opts);
|
|
}
|
|
|
|
~MultiSelector ()
|
|
{
|
|
if (!is_notcurses_stopped ())
|
|
ncmultiselector_destroy (multiselector);
|
|
}
|
|
|
|
bool offer_input (const struct ncinput *ni) const noexcept
|
|
{
|
|
return ncmultiselector_offer_input (multiselector, ni);
|
|
}
|
|
|
|
int get_selected (bool *selected, unsigned count) const NOEXCEPT_MAYBE
|
|
{
|
|
return error_guard<int> (ncmultiselector_selected (multiselector, selected, count), -1);
|
|
}
|
|
|
|
Plane* get_plane () const noexcept;
|
|
|
|
private:
|
|
void common_init (ncplane *plane, int y, int x, const ncmultiselector_options *opts)
|
|
{
|
|
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");
|
|
}
|
|
|
|
private:
|
|
ncmultiselector *multiselector;
|
|
};
|
|
}
|
|
#endif
|