cpp-terminal 1.0.0
Small C++ library for writing multiplatform terminal applications
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
terminal_impl.hpp
Go to the documentation of this file.
1/*
2* cpp-terminal
3* C++ library for writing multi-platform terminal applications.
4*
5* SPDX-FileCopyrightText: 2019-2025 cpp-terminal
6*
7* SPDX-License-Identifier: MIT
8*/
9
10#pragma once
11
14
15#include <cstddef>
16#include <string>
17
18namespace Term
19{
20
21namespace Private
22{
23class Signals;
24}
25
27{
28public:
29 friend class Private::Signals;
30 ~Terminal() noexcept;
31 Terminal() noexcept;
32 Terminal(const Terminal&) = delete;
33 Terminal(Terminal&&) = delete;
34 Terminal& operator=(Terminal&&) = delete;
35 Terminal& operator=(const Terminal&) = delete;
36 template<typename... Args> void setOptions(const Args&&... args)
37 {
38 m_options = {args...};
40 }
41 Term::Options getOptions() const noexcept;
42 // clear the screen and the scroll-back buffer
43 std::string clear() const noexcept;
44
45private:
49 static void store_and_restore() noexcept;
50
55 void setMode() const;
56
57 void setOptions();
58 void applyOptions() const;
59
60 static std::size_t setMouseEvents();
61 static std::size_t unsetMouseEvents();
62 static std::size_t setFocusEvents();
63 static std::size_t unsetFocusEvents();
64
65 static void set_unset_utf8();
67 void clean();
68};
69
70} // namespace Term
void setOptions(const Args &&... args)
void setMode() const
Set mode raw/cooked.
static void set_unset_utf8()
static void store_and_restore() noexcept
Store and restore the default state of the terminal.
void applyOptions() const
Terminal() noexcept
std::string clear() const noexcept
static std::size_t setFocusEvents()
static std::size_t setMouseEvents()
static std::size_t unsetMouseEvents()
~Terminal() noexcept
Term::Options getOptions() const noexcept
Term::Options m_options
static std::size_t unsetFocusEvents()
Definition args.cpp:13