2013-09-12 23:47:23 +02:00
|
|
|
#include "client.hh"
|
2012-09-03 14:22:02 +02:00
|
|
|
|
2014-07-11 01:27:04 +02:00
|
|
|
#include "face_registry.hh"
|
2012-09-03 14:22:02 +02:00
|
|
|
#include "context.hh"
|
2013-05-20 14:10:53 +02:00
|
|
|
#include "buffer_manager.hh"
|
2015-09-19 13:43:39 +02:00
|
|
|
#include "buffer_utils.hh"
|
2013-08-02 18:58:37 +02:00
|
|
|
#include "file.hh"
|
2013-10-11 19:43:23 +02:00
|
|
|
#include "remote.hh"
|
2013-10-15 19:51:31 +02:00
|
|
|
#include "client_manager.hh"
|
2015-09-19 13:43:39 +02:00
|
|
|
#include "command_manager.hh"
|
2014-11-25 02:00:18 +01:00
|
|
|
#include "event_manager.hh"
|
2016-02-27 18:23:13 +01:00
|
|
|
#include "user_interface.hh"
|
2013-11-14 22:12:59 +01:00
|
|
|
#include "window.hh"
|
2012-09-03 14:22:02 +02:00
|
|
|
|
2014-11-25 02:00:18 +01:00
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2012-09-03 14:22:02 +02:00
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
2013-12-20 21:10:08 +01:00
|
|
|
Client::Client(std::unique_ptr<UserInterface>&& ui,
|
|
|
|
std::unique_ptr<Window>&& window,
|
2014-04-07 22:25:44 +02:00
|
|
|
SelectionList selections,
|
|
|
|
EnvVarMap env_vars,
|
|
|
|
String name)
|
2013-12-20 21:10:08 +01:00
|
|
|
: m_ui{std::move(ui)}, m_window{std::move(window)},
|
2014-12-19 00:12:58 +01:00
|
|
|
m_input_handler{std::move(selections), Context::Flags::None,
|
2014-04-07 22:25:44 +02:00
|
|
|
std::move(name)},
|
|
|
|
m_env_vars(env_vars)
|
2013-11-14 19:09:15 +01:00
|
|
|
{
|
2016-05-09 14:48:48 +02:00
|
|
|
m_window->set_client(this);
|
|
|
|
|
2013-11-14 19:09:15 +01:00
|
|
|
context().set_client(*this);
|
2013-12-20 21:10:08 +01:00
|
|
|
context().set_window(*m_window);
|
2014-11-11 00:29:16 +01:00
|
|
|
|
2016-02-27 18:23:13 +01:00
|
|
|
m_window->set_dimensions(m_ui->dimensions());
|
2014-11-11 00:29:16 +01:00
|
|
|
m_window->options().register_watcher(*this);
|
2016-02-27 18:23:13 +01:00
|
|
|
|
2014-11-11 00:29:16 +01:00
|
|
|
m_ui->set_ui_options(m_window->options()["ui_options"].get<UserInterface::Options>());
|
2016-02-27 18:23:13 +01:00
|
|
|
m_ui->set_input_callback([this](EventMode mode) { handle_available_input(mode); });
|
2016-03-08 00:11:59 +01:00
|
|
|
force_redraw();
|
2013-11-14 19:09:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Client::~Client()
|
|
|
|
{
|
2014-11-11 00:29:16 +01:00
|
|
|
m_window->options().unregister_watcher(*this);
|
2016-05-09 14:48:48 +02:00
|
|
|
m_window->set_client(nullptr);
|
2013-11-14 19:09:15 +01:00
|
|
|
}
|
|
|
|
|
2014-11-29 21:14:52 +01:00
|
|
|
Optional<Key> Client::get_next_key(EventMode mode)
|
|
|
|
{
|
|
|
|
if (not m_pending_keys.empty())
|
|
|
|
{
|
|
|
|
Key key = m_pending_keys.front();
|
|
|
|
m_pending_keys.erase(m_pending_keys.begin());
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
if (mode != EventMode::Pending and m_ui->is_key_available())
|
|
|
|
return m_ui->get_key();
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2014-11-25 02:00:18 +01:00
|
|
|
void Client::handle_available_input(EventMode mode)
|
2013-11-14 19:09:15 +01:00
|
|
|
{
|
2014-11-29 21:14:52 +01:00
|
|
|
if (mode == EventMode::Urgent)
|
|
|
|
{
|
|
|
|
Key key = m_ui->get_key();
|
|
|
|
if (key == ctrl('c'))
|
|
|
|
killpg(getpgrp(), SIGINT);
|
|
|
|
else
|
|
|
|
m_pending_keys.push_back(key);
|
2015-07-22 14:30:03 +02:00
|
|
|
return;
|
2014-11-29 21:14:52 +01:00
|
|
|
}
|
2015-07-22 14:30:03 +02:00
|
|
|
|
|
|
|
try
|
2014-11-25 02:00:18 +01:00
|
|
|
{
|
2015-12-14 20:06:30 +01:00
|
|
|
try
|
2014-11-25 02:00:18 +01:00
|
|
|
{
|
2015-12-14 20:06:30 +01:00
|
|
|
while (Optional<Key> key = get_next_key(mode))
|
|
|
|
{
|
|
|
|
if (*key == ctrl('c'))
|
|
|
|
killpg(getpgrp(), SIGINT);
|
|
|
|
else if (*key == Key::FocusIn)
|
|
|
|
context().hooks().run_hook("FocusIn", context().name(), context());
|
|
|
|
else if (*key == Key::FocusOut)
|
|
|
|
context().hooks().run_hook("FocusOut", context().name(), context());
|
|
|
|
else if (key->modifiers == Key::Modifiers::Resize)
|
2016-05-16 11:23:47 +02:00
|
|
|
{
|
2016-05-13 21:32:53 +02:00
|
|
|
m_window->set_dimensions(m_ui->dimensions());
|
2016-05-16 11:23:47 +02:00
|
|
|
force_redraw();
|
|
|
|
}
|
2015-12-14 20:06:30 +01:00
|
|
|
else
|
|
|
|
m_input_handler.handle_key(*key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Kakoune::runtime_error& error)
|
|
|
|
{
|
|
|
|
context().print_status({ error.what().str(), get_face("Error") });
|
|
|
|
context().hooks().run_hook("RuntimeError", error.what(), context());
|
2014-11-25 02:00:18 +01:00
|
|
|
}
|
2015-07-22 14:30:03 +02:00
|
|
|
}
|
2015-10-08 14:43:39 +02:00
|
|
|
catch (Kakoune::client_removed& removed)
|
2015-07-22 14:30:03 +02:00
|
|
|
{
|
2015-10-08 14:43:39 +02:00
|
|
|
ClientManager::instance().remove_client(*this, removed.graceful);
|
2015-07-22 14:30:03 +02:00
|
|
|
}
|
2013-11-14 19:09:15 +01:00
|
|
|
}
|
|
|
|
|
2013-09-16 20:15:13 +02:00
|
|
|
void Client::print_status(DisplayLine status_line)
|
|
|
|
{
|
2016-03-08 00:11:59 +01:00
|
|
|
m_status_line = std::move(status_line);
|
|
|
|
m_ui_pending |= StatusLine;
|
2013-09-16 20:15:13 +02:00
|
|
|
}
|
|
|
|
|
2013-10-10 22:34:19 +02:00
|
|
|
DisplayLine Client::generate_mode_line() const
|
2013-09-16 20:15:13 +02:00
|
|
|
{
|
2015-09-19 13:43:39 +02:00
|
|
|
DisplayLine modeline;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const String& modelinefmt = context().options()["modelinefmt"].get<String>();
|
|
|
|
|
2015-09-20 12:34:13 +02:00
|
|
|
modeline = parse_display_line(expand(modelinefmt, context()));
|
2015-09-19 13:43:39 +02:00
|
|
|
}
|
|
|
|
catch (runtime_error& err)
|
|
|
|
{
|
|
|
|
write_to_debug_buffer(format("Error while parsing modelinefmt: {}", err.what()));
|
|
|
|
modeline.push_back({ "modelinefmt error, see *debug* buffer", get_face("Error") });
|
|
|
|
}
|
2013-09-16 20:15:13 +02:00
|
|
|
|
2014-07-11 01:27:04 +02:00
|
|
|
Face info_face = get_face("Information");
|
2014-07-07 20:57:03 +02:00
|
|
|
|
2013-10-10 22:34:19 +02:00
|
|
|
if (context().buffer().is_modified())
|
2015-09-19 13:43:39 +02:00
|
|
|
modeline.push_back({ "[+]", info_face });
|
2013-11-14 19:09:15 +01:00
|
|
|
if (m_input_handler.is_recording())
|
2015-09-19 13:43:39 +02:00
|
|
|
modeline.push_back({ format("[recording ({})]", m_input_handler.recording_reg()), info_face });
|
2013-10-10 22:34:19 +02:00
|
|
|
if (context().buffer().flags() & Buffer::Flags::New)
|
2015-09-19 13:43:39 +02:00
|
|
|
modeline.push_back({ "[new file]", info_face });
|
2015-08-19 00:16:53 +02:00
|
|
|
if (context().user_hooks_disabled())
|
2015-09-19 13:43:39 +02:00
|
|
|
modeline.push_back({ "[no-hooks]", info_face });
|
2014-07-07 20:57:03 +02:00
|
|
|
if (context().buffer().flags() & Buffer::Flags::Fifo)
|
2015-09-19 13:43:39 +02:00
|
|
|
modeline.push_back({ "[fifo]", info_face });
|
|
|
|
modeline.push_back({ " " });
|
2014-09-10 20:06:53 +02:00
|
|
|
for (auto& atom : m_input_handler.mode_line())
|
2015-09-19 13:43:39 +02:00
|
|
|
modeline.push_back(std::move(atom));
|
|
|
|
modeline.push_back({ format(" - {}@[{}]", context().name(), Server::instance().session()) });
|
2014-07-07 20:57:03 +02:00
|
|
|
|
2015-09-19 13:43:39 +02:00
|
|
|
return modeline;
|
2013-09-16 20:15:13 +02:00
|
|
|
}
|
|
|
|
|
2013-12-20 21:10:08 +01:00
|
|
|
void Client::change_buffer(Buffer& buffer)
|
|
|
|
{
|
2015-02-12 15:55:02 +01:00
|
|
|
if (m_buffer_reload_dialog_opened)
|
|
|
|
close_buffer_reload_dialog();
|
|
|
|
|
2015-11-07 19:24:08 +01:00
|
|
|
m_last_buffer = &m_window->buffer();
|
|
|
|
|
2014-04-01 19:54:46 +02:00
|
|
|
auto& client_manager = ClientManager::instance();
|
2014-11-11 00:29:16 +01:00
|
|
|
m_window->options().unregister_watcher(*this);
|
2016-05-09 14:48:48 +02:00
|
|
|
m_window->set_client(nullptr);
|
2014-04-01 19:54:46 +02:00
|
|
|
client_manager.add_free_window(std::move(m_window),
|
|
|
|
std::move(context().selections()));
|
|
|
|
WindowAndSelections ws = client_manager.get_free_window(buffer);
|
2014-11-11 00:29:16 +01:00
|
|
|
|
2014-01-27 21:28:38 +01:00
|
|
|
m_window = std::move(ws.window);
|
2016-05-09 14:48:48 +02:00
|
|
|
m_window->set_client(this);
|
2014-11-11 00:29:16 +01:00
|
|
|
m_window->options().register_watcher(*this);
|
|
|
|
m_ui->set_ui_options(m_window->options()["ui_options"].get<UserInterface::Options>());
|
|
|
|
|
2015-04-19 16:12:16 +02:00
|
|
|
context().selections_write_only() = std::move(ws.selections);
|
2013-12-20 21:10:08 +01:00
|
|
|
context().set_window(*m_window);
|
2016-02-27 18:23:13 +01:00
|
|
|
m_window->set_dimensions(m_ui->dimensions());
|
2016-03-08 00:11:59 +01:00
|
|
|
force_redraw();
|
2014-11-11 00:29:16 +01:00
|
|
|
|
2013-12-20 21:10:08 +01:00
|
|
|
m_window->hooks().run_hook("WinDisplay", buffer.name(), context());
|
|
|
|
}
|
|
|
|
|
2016-02-27 18:23:13 +01:00
|
|
|
static bool is_inline(InfoStyle style)
|
|
|
|
{
|
|
|
|
return style == InfoStyle::Inline or
|
|
|
|
style == InfoStyle::InlineAbove or
|
|
|
|
style == InfoStyle::InlineBelow;
|
|
|
|
}
|
|
|
|
|
2016-03-08 00:11:59 +01:00
|
|
|
void Client::redraw_ifn()
|
2013-09-16 20:15:13 +02:00
|
|
|
{
|
2015-06-22 14:34:22 +02:00
|
|
|
Window& window = context().window();
|
2016-03-08 00:11:59 +01:00
|
|
|
if (window.needs_redraw(context()))
|
|
|
|
m_ui_pending |= Draw;
|
2015-06-17 22:28:02 +02:00
|
|
|
|
2016-03-08 00:11:59 +01:00
|
|
|
DisplayLine mode_line = generate_mode_line();
|
|
|
|
if (mode_line.atoms() != m_mode_line.atoms())
|
|
|
|
{
|
|
|
|
m_ui_pending |= StatusLine;
|
|
|
|
m_mode_line = std::move(mode_line);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_ui_pending == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (m_ui_pending & Draw)
|
2016-02-27 18:23:13 +01:00
|
|
|
{
|
2016-04-11 14:44:10 +02:00
|
|
|
m_ui->draw(window.update_display_buffer(context()),
|
|
|
|
get_face("Default"), get_face("BufferPadding"));
|
2016-02-27 18:23:13 +01:00
|
|
|
|
2016-03-30 20:46:43 +02:00
|
|
|
if (not m_menu.items.empty() and m_menu.style == MenuStyle::Inline and
|
|
|
|
m_menu.ui_anchor != window.display_position(m_menu.anchor))
|
|
|
|
m_ui_pending |= (MenuShow | MenuSelect);
|
|
|
|
if (not m_info.content.empty() and is_inline(m_info.style) and
|
|
|
|
m_info.ui_anchor != window.display_position(m_info.anchor))
|
|
|
|
m_ui_pending |= InfoShow;
|
2016-02-27 18:23:13 +01:00
|
|
|
}
|
2015-06-17 22:28:02 +02:00
|
|
|
|
2016-03-08 00:11:59 +01:00
|
|
|
if (m_ui_pending & MenuShow)
|
2013-09-16 20:15:13 +02:00
|
|
|
{
|
2016-03-30 20:46:43 +02:00
|
|
|
m_menu.ui_anchor = m_menu.style == MenuStyle::Inline ?
|
2016-03-08 00:11:59 +01:00
|
|
|
window.display_position(m_menu.anchor) : CharCoord{};
|
2016-03-30 20:46:43 +02:00
|
|
|
m_ui->menu_show(m_menu.items, m_menu.ui_anchor,
|
2016-03-08 00:11:59 +01:00
|
|
|
get_face("MenuForeground"), get_face("MenuBackground"),
|
|
|
|
m_menu.style);
|
2013-09-16 20:15:13 +02:00
|
|
|
}
|
2016-03-08 00:11:59 +01:00
|
|
|
if (m_ui_pending & MenuSelect)
|
|
|
|
m_ui->menu_select(m_menu.selected);
|
|
|
|
if (m_ui_pending & MenuHide)
|
|
|
|
m_ui->menu_hide();
|
2015-06-17 22:28:02 +02:00
|
|
|
|
2016-03-08 00:11:59 +01:00
|
|
|
if (m_ui_pending & InfoShow)
|
2016-03-05 14:53:21 +01:00
|
|
|
{
|
2016-03-30 20:46:43 +02:00
|
|
|
m_info.ui_anchor = is_inline(m_info.style) ?
|
2016-03-08 00:11:59 +01:00
|
|
|
window.display_position(m_info.anchor) : CharCoord{};
|
2016-03-30 20:46:43 +02:00
|
|
|
m_ui->info_show(m_info.title, m_info.content, m_info.ui_anchor,
|
2016-03-08 00:11:59 +01:00
|
|
|
get_face("Information"), m_info.style);
|
2016-03-05 14:53:21 +01:00
|
|
|
}
|
2016-03-08 00:11:59 +01:00
|
|
|
if (m_ui_pending & InfoHide)
|
|
|
|
m_ui->info_hide();
|
|
|
|
|
|
|
|
if (m_ui_pending & StatusLine)
|
|
|
|
m_ui->draw_status(m_status_line, m_mode_line, get_face("StatusLine"));
|
|
|
|
|
|
|
|
m_ui->refresh(m_ui_pending | Refresh);
|
|
|
|
m_ui_pending = 0;
|
2013-09-16 20:15:13 +02:00
|
|
|
}
|
|
|
|
|
2015-08-23 14:29:24 +02:00
|
|
|
void Client::force_redraw()
|
|
|
|
{
|
2016-03-08 22:35:56 +01:00
|
|
|
m_ui_pending |= Refresh | Draw | StatusLine |
|
2016-03-08 14:42:00 +01:00
|
|
|
(m_menu.items.empty() ? MenuHide : MenuShow | MenuSelect) |
|
|
|
|
(m_info.content.empty() ? InfoHide : InfoShow);
|
2015-08-23 14:29:24 +02:00
|
|
|
}
|
|
|
|
|
2015-02-12 15:55:02 +01:00
|
|
|
void Client::reload_buffer()
|
|
|
|
{
|
2015-10-16 02:33:17 +02:00
|
|
|
Buffer& buffer = context().buffer();
|
2015-10-16 14:58:56 +02:00
|
|
|
reload_file_buffer(buffer);
|
|
|
|
context().print_status({ format("'{}' reloaded", buffer.display_name()),
|
|
|
|
get_face("Information") });
|
2015-02-12 15:55:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Client::on_buffer_reload_key(Key key)
|
2013-10-21 19:58:11 +02:00
|
|
|
{
|
2015-02-12 15:55:02 +01:00
|
|
|
auto& buffer = context().buffer();
|
|
|
|
|
2016-07-05 20:21:15 +02:00
|
|
|
if (key == 'y' or key == Key::Return)
|
2015-02-12 15:55:02 +01:00
|
|
|
reload_buffer();
|
|
|
|
else if (key == 'n' or key == Key::Escape)
|
|
|
|
{
|
|
|
|
// reread timestamp in case the file was modified again
|
|
|
|
buffer.set_fs_timestamp(get_fs_timestamp(buffer.name()));
|
2015-06-01 22:15:59 +02:00
|
|
|
print_status({ format("'{}' kept", buffer.display_name()),
|
2015-02-12 15:55:02 +01:00
|
|
|
get_face("Information") });
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-06-01 22:15:59 +02:00
|
|
|
print_status({ format("'{}' is not a valid choice", key_to_str(key)),
|
2015-02-12 15:55:02 +01:00
|
|
|
get_face("Error") });
|
|
|
|
m_input_handler.on_next_key(KeymapMode::None, [this](Key key, Context&){ on_buffer_reload_key(key); });
|
2013-10-21 19:58:11 +02:00
|
|
|
return;
|
2015-02-12 15:55:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& client : ClientManager::instance())
|
|
|
|
{
|
|
|
|
if (&client->context().buffer() == &buffer and
|
|
|
|
client->m_buffer_reload_dialog_opened)
|
|
|
|
client->close_buffer_reload_dialog();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Client::close_buffer_reload_dialog()
|
|
|
|
{
|
|
|
|
kak_assert(m_buffer_reload_dialog_opened);
|
|
|
|
m_buffer_reload_dialog_opened = false;
|
2016-06-16 20:35:43 +02:00
|
|
|
info_hide();
|
2015-02-12 15:55:02 +01:00
|
|
|
m_input_handler.reset_normal_mode();
|
2013-10-21 19:58:11 +02:00
|
|
|
}
|
|
|
|
|
2015-02-12 15:55:02 +01:00
|
|
|
void Client::check_if_buffer_needs_reloading()
|
2013-10-15 19:51:31 +02:00
|
|
|
{
|
2015-03-04 21:46:26 +01:00
|
|
|
if (m_buffer_reload_dialog_opened)
|
|
|
|
return;
|
|
|
|
|
2013-11-14 19:09:15 +01:00
|
|
|
Buffer& buffer = context().buffer();
|
2015-11-20 09:50:53 +01:00
|
|
|
auto reload = context().options()["autoreload"].get<Autoreload>();
|
|
|
|
if (not (buffer.flags() & Buffer::Flags::File) or reload == Autoreload::No)
|
2013-10-15 19:51:31 +02:00
|
|
|
return;
|
2013-10-21 19:58:11 +02:00
|
|
|
|
|
|
|
const String& filename = buffer.name();
|
2015-09-27 12:55:34 +02:00
|
|
|
timespec ts = get_fs_timestamp(filename);
|
2014-06-22 12:09:44 +02:00
|
|
|
if (ts == InvalidTime or ts == buffer.fs_timestamp())
|
2013-10-21 19:58:11 +02:00
|
|
|
return;
|
2015-11-20 09:50:53 +01:00
|
|
|
if (reload == Autoreload::Ask)
|
2013-10-15 19:51:31 +02:00
|
|
|
{
|
2016-03-02 14:14:21 +01:00
|
|
|
StringView bufname = buffer.display_name();
|
|
|
|
info_show(format("reload '{}' ?", bufname),
|
|
|
|
format("'{}' was modified externally\n"
|
|
|
|
"press <ret> or y to reload, <esc> or n to keep",
|
|
|
|
bufname), {}, InfoStyle::Prompt);
|
2014-03-24 20:31:40 +01:00
|
|
|
|
2015-02-12 15:55:02 +01:00
|
|
|
m_buffer_reload_dialog_opened = true;
|
|
|
|
m_input_handler.on_next_key(KeymapMode::None, [this](Key key, Context&){ on_buffer_reload_key(key); });
|
2013-10-15 19:51:31 +02:00
|
|
|
}
|
2013-10-21 19:58:11 +02:00
|
|
|
else
|
2015-02-12 15:55:02 +01:00
|
|
|
reload_buffer();
|
2013-10-15 19:51:31 +02:00
|
|
|
}
|
|
|
|
|
2015-09-16 20:57:57 +02:00
|
|
|
StringView Client::get_env_var(StringView name) const
|
2014-04-07 22:25:44 +02:00
|
|
|
{
|
|
|
|
auto it = m_env_vars.find(name);
|
|
|
|
if (it == m_env_vars.end())
|
2014-12-20 19:40:17 +01:00
|
|
|
return {};
|
2015-09-16 20:57:57 +02:00
|
|
|
return it->value;
|
2015-03-10 20:33:46 +01:00
|
|
|
}
|
|
|
|
|
2014-11-11 00:29:16 +01:00
|
|
|
void Client::on_option_changed(const Option& option)
|
|
|
|
{
|
|
|
|
if (option.name() == "ui_options")
|
2016-03-05 14:53:21 +01:00
|
|
|
{
|
2014-11-11 00:29:16 +01:00
|
|
|
m_ui->set_ui_options(option.get<UserInterface::Options>());
|
2016-03-08 00:11:59 +01:00
|
|
|
m_ui_pending |= Draw;
|
2016-03-05 14:53:21 +01:00
|
|
|
}
|
2014-11-11 00:29:16 +01:00
|
|
|
}
|
|
|
|
|
2016-02-27 18:23:13 +01:00
|
|
|
void Client::menu_show(Vector<DisplayLine> choices, ByteCoord anchor, MenuStyle style)
|
|
|
|
{
|
2016-03-30 20:46:43 +02:00
|
|
|
m_menu = Menu{ std::move(choices), anchor, {}, style, -1 };
|
2016-03-08 00:11:59 +01:00
|
|
|
m_ui_pending |= MenuShow;
|
|
|
|
m_ui_pending &= ~MenuHide;
|
2016-02-27 18:23:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Client::menu_select(int selected)
|
|
|
|
{
|
|
|
|
m_menu.selected = selected;
|
2016-03-08 00:11:59 +01:00
|
|
|
m_ui_pending |= MenuSelect;
|
|
|
|
m_ui_pending &= ~MenuHide;
|
2016-02-27 18:23:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Client::menu_hide()
|
|
|
|
{
|
|
|
|
m_menu = Menu{};
|
2016-03-08 00:11:59 +01:00
|
|
|
m_ui_pending |= MenuHide;
|
|
|
|
m_ui_pending &= ~(MenuShow | MenuSelect);
|
2016-02-27 18:23:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Client::info_show(String title, String content, ByteCoord anchor, InfoStyle style)
|
|
|
|
{
|
2016-03-30 20:46:43 +02:00
|
|
|
m_info = Info{ std::move(title), std::move(content), anchor, {}, style };
|
2016-03-08 00:11:59 +01:00
|
|
|
m_ui_pending |= InfoShow;
|
|
|
|
m_ui_pending &= ~InfoHide;
|
2016-02-27 18:23:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Client::info_hide()
|
|
|
|
{
|
|
|
|
m_info = Info{};
|
2016-03-08 00:11:59 +01:00
|
|
|
m_ui_pending |= InfoHide;
|
|
|
|
m_ui_pending &= ~InfoShow;
|
2016-02-27 18:23:13 +01:00
|
|
|
}
|
|
|
|
|
2012-09-03 14:22:02 +02:00
|
|
|
}
|