3#include "terminalpp/behaviour.hpp"
4#include "terminalpp/core.hpp"
5#include "terminalpp/string.hpp"
6#include "terminalpp/terminal_state.hpp"
7#include "terminalpp/token.hpp"
15template <
typename Manipulator>
17 requires(Manipulator manipulator, terminal_state state) {
21 } -> std::same_as<void>;
32 using read_function = std::function<
void(terminalpp::tokens)>;
33 using write_function = std::function<
void(terminalpp::bytes)>;
38 template <
typename Channel>
41 std::make_unique<channel_model<Channel>>(
channel)}},
42 behaviour_(std::move(beh))
64 void async_read(std::function<
void(tokens)>
const &
callback);
69 void write(bytes
data);
86 void set_size(
extent size);
113 manip(behaviour_, state_, [
this](bytes
data) { write(
data); });
154 struct channel_concept
159 virtual ~channel_concept() =
default;
165 virtual void async_read(std::function<
void(bytes)>
const &) = 0;
170 virtual void write(bytes
data) = 0;
175 [[
nodiscard]]
virtual bool is_alive()
const = 0;
180 virtual void close() = 0;
186 template <
typename Channel>
187 struct channel_model final : channel_concept
192 explicit channel_model(Channel &channel) : channel_(channel)
200 void async_read(std::function<
void(bytes)>
const &callback)
override
202 channel_.async_read(callback);
208 void write(bytes data)
override
210 channel_.write(data);
216 [[nodiscard]]
bool is_alive()
const override
218 return channel_.is_alive();
224 void close()
override
232 std::unique_ptr<channel_concept> channel_;
233 behaviour behaviour_;
234 terminal_state state_;
258 terminal::write_function
const &
write_fn)
const;
279 terminal::write_function
const &
write_fn)
const;
304 terminal::write_function
const &
write_fn)
const;
323 terminal::write_function
const &
write_fn)
const;
339 terminal::write_function
const &
write_fn)
const;
354 terminal::write_function
const &
write_fn)
const;
369 terminal::write_function
const &
write_fn)
const;
384 terminal::write_function
const &
write_fn)
const;
400 terminal::write_function
const &
write_fn)
const;
416 terminal::write_function
const &
write_fn)
const;
431 terminal::write_function
const &
write_fn)
const;
447 terminal::write_function
const &
write_fn)
const;
463 terminal::write_function
const &
write_fn)
const;
479 terminal::write_function
const &
write_fn)
const;
495 terminal::write_function
const &
write_fn)
const;
515 terminal::write_function
const &
write_fn)
const;
533 terminal::write_function
const &
write_fn)
const;
548 terminal::write_function
const &
write_fn)
const;
A manipulator that disables mouse clicks according to the terminal behaviour.
Definition terminal.hpp:487
A manipulator that enables mouse clicks according to the terminal behaviour.
Definition terminal.hpp:471
A manipulator that erases the display from the line of the cursor to the top.
Definition terminal.hpp:392
A manipulator that erases the display from the line of the cursor to the bottom.
Definition terminal.hpp:408
A manipulator that erases the entire display.
Definition terminal.hpp:376
A manipulator that erases from the current cursor position to the beginning of the line.
Definition terminal.hpp:439
A manipulator that erases from the current cursor position to the end of the line.
Definition terminal.hpp:455
A manipulator that erases the current line of the display.
Definition terminal.hpp:423
A manipulator that hides the cursor.
Definition terminal.hpp:314
A manipulator that outputs ANSI protocol bytes to move the cursor to the specified location.
Definition terminal.hpp:287
constexpr move_cursor(point const &destination)
Constructor.
Definition terminal.hpp:292
A manipulator that restores the cursor position.
Definition terminal.hpp:361
A manipulator that saves the cursor position.
Definition terminal.hpp:346
A manipulator that sets the window title according to the terminal behaviour.
Definition terminal.hpp:503
A manipulator that shows the cursor.
Definition terminal.hpp:330
A class that represents strings of elements.
Definition string.hpp:21
A class that encapsulates a terminal.
Definition terminal.hpp:30
terminal & operator<<(terminal_manipulator auto &&manip)
Write to the terminal.
Definition terminal.hpp:111
terminal & operator=(terminal const &)=delete
Copy Assignment.
terminal(Channel &channel, behaviour beh=behaviour{})
Constructor.
Definition terminal.hpp:39
terminal(terminal const &)=delete
Copy Constructor.
A manipulator that enables the use of the alternate screen buffer.
Definition terminal.hpp:540
A manipulator that enables the use of the normal screen buffer.
Definition terminal.hpp:525
A manipulator that converts encoded attribute strings into ANSI protocol bytes.
Definition terminal.hpp:242
constexpr write_element(terminalpp::element const &elem)
Constructor.
Definition terminal.hpp:247
Definition terminal.hpp:16
A set of flags that determine how a terminal should behave over a datastream.
Definition behaviour.hpp:12
A structure representing an ANSI graphics effect (e.g. intensity, underlining)
Definition effect.hpp:27
constexpr effect() noexcept
Initialises the intensity to the default (normal) value.
Definition effect.hpp:31
A structure that represents the fundamental printable element of a terminal screen,...
Definition element.hpp:20
A class that represents a direction with distance in space (a vector).
Definition extent.hpp:18
A class that represents a position in space.
Definition point.hpp:17
The state of a terminal, which manipulators are allowed to use and edit.
Definition terminal_state.hpp:17
A manipulator that outputs ANSI protocol bytes for the default attribute, if necessary.
Definition terminal.hpp:272