mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-10-31 15:20:13 +00:00
c063ce4e36
Added: * Pile: new class derived from Plane, which implements all the `ncpile_*` calls * Plane: `get_parent` (`ncplane_parent`) * Plane: protected constructor for use by `Pile` (or other derived classes which cannot provide a valid `ncplane*` when invoking parent constructor. * Plane: `set_plane` for use by the derived classes above. Changed: * Plane: `to_ncplane` is a `const` method now.
58 lines
1.0 KiB
C++
58 lines
1.0 KiB
C++
#ifndef __NCPP_PILE_HH
|
|
#define __NCPP_PILE_HH
|
|
|
|
#include <exception>
|
|
#include <notcurses/notcurses.h>
|
|
|
|
#include "NotCurses.hh"
|
|
#include "Plane.hh"
|
|
|
|
namespace ncpp
|
|
{
|
|
class NCPP_API_EXPORT Pile : public Plane
|
|
{
|
|
public:
|
|
Pile (ncplane_options const* nopts, NotCurses* ncinst = nullptr)
|
|
: Plane (ncinst)
|
|
{
|
|
if (nopts == nullptr) {
|
|
throw invalid_argument ("'nopts' must be a valid pointer");
|
|
}
|
|
|
|
notcurses *n;
|
|
if (ncinst == nullptr) {
|
|
n = NotCurses::get_instance ();
|
|
} else {
|
|
n = *ncinst;
|
|
}
|
|
|
|
ncplane *pile = ncpile_create (n, nopts);
|
|
if (pile == nullptr) {
|
|
throw init_error ("Notcurses failed to create a new pile");
|
|
}
|
|
|
|
set_plane (pile);
|
|
}
|
|
|
|
bool render () const NOEXCEPT_MAYBE
|
|
{
|
|
return error_guard (ncpile_render (to_ncplane ()), -1);
|
|
}
|
|
|
|
bool rasterize () const NOEXCEPT_MAYBE
|
|
{
|
|
return error_guard (ncpile_rasterize (to_ncplane ()), -1);
|
|
}
|
|
|
|
bool show () const NOEXCEPT_MAYBE
|
|
{
|
|
if (!render ()) {
|
|
return false;
|
|
}
|
|
|
|
return rasterize ();
|
|
}
|
|
};
|
|
}
|
|
#endif
|