mirror of https://gitlab.com/cppit/jucipp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
3.9 KiB
115 lines
3.9 KiB
#include "entrybox.hpp" |
|
|
|
std::unordered_map<std::string, std::vector<std::string>> EntryBox::entry_histories; |
|
|
|
EntryBox::Entry::Entry(const std::string &content, std::function<void(const std::string &content)> on_activate_, unsigned width_chars) : Gtk::Entry(), on_activate(std::move(on_activate_)) { |
|
set_max_length(0); |
|
set_width_chars(width_chars); |
|
set_text(content); |
|
last_content = content; |
|
selected_history = -1; |
|
signal_activate().connect([this]() { |
|
if(this->on_activate) { |
|
auto &history = EntryBox::entry_histories[get_placeholder_text()]; |
|
auto text = get_text(); |
|
if(!text.empty() && (history.empty() || *history.begin() != text)) |
|
history.emplace(history.begin(), text); |
|
selected_history = -1; |
|
this->on_activate(text); |
|
} |
|
}); |
|
signal_changed().connect([this] { |
|
if(!set_text_from_history) { |
|
last_content = get_text(); |
|
selected_history = -1; |
|
} |
|
}); |
|
signal_key_press_event().connect([this](GdkEventKey *key) { |
|
if(key->keyval == GDK_KEY_Up || key->keyval == GDK_KEY_KP_Up) { |
|
auto &history = entry_histories[get_placeholder_text()]; |
|
if(history.size() > 0) { |
|
selected_history++; |
|
if(selected_history == 0 && get_text() == history[selected_history]) |
|
selected_history++; |
|
if(selected_history >= static_cast<long>(history.size())) |
|
selected_history = history.size() - 1; |
|
set_text_from_history = true; |
|
set_text(history[selected_history]); |
|
set_text_from_history = false; |
|
set_position(-1); |
|
} |
|
} |
|
if(key->keyval == GDK_KEY_Down || key->keyval == GDK_KEY_KP_Down) { |
|
auto &history = entry_histories[get_placeholder_text()]; |
|
if(history.size() > 0) { |
|
selected_history--; |
|
if(selected_history < -1) |
|
selected_history = -1; |
|
set_text_from_history = true; |
|
if(selected_history == -1) |
|
set_text(last_content); |
|
else |
|
set_text(history[selected_history]); |
|
set_text_from_history = false; |
|
set_position(-1); |
|
} |
|
} |
|
return false; |
|
}); |
|
} |
|
|
|
EntryBox::Button::Button(const std::string &label, std::function<void()> on_activate_) : Gtk::Button(label), on_activate(std::move(on_activate_)) { |
|
set_focus_on_click(false); |
|
signal_clicked().connect([this]() { |
|
if(this->on_activate) |
|
this->on_activate(); |
|
}); |
|
} |
|
|
|
EntryBox::ToggleButton::ToggleButton(const std::string &label, std::function<void()> on_activate_) : Gtk::ToggleButton(label), on_activate(std::move(on_activate_)) { |
|
set_focus_on_click(false); |
|
signal_clicked().connect([this]() { |
|
if(this->on_activate) |
|
this->on_activate(); |
|
}); |
|
} |
|
|
|
EntryBox::Label::Label(std::function<void(int state, const std::string &message)> update_) : Gtk::Label(), update(std::move(update_)) { |
|
if(this->update) |
|
this->update(-1, ""); |
|
} |
|
|
|
EntryBox::EntryBox() : Gtk::Box(Gtk::ORIENTATION_VERTICAL), upper_box(Gtk::ORIENTATION_HORIZONTAL), lower_box(Gtk::ORIENTATION_HORIZONTAL) { |
|
get_style_context()->add_class("juci_entry"); |
|
pack_start(upper_box, Gtk::PACK_SHRINK); |
|
pack_start(lower_box, Gtk::PACK_SHRINK); |
|
this->set_focus_chain({&lower_box}); |
|
} |
|
|
|
void EntryBox::clear() { |
|
Gtk::Box::hide(); |
|
entries.clear(); |
|
buttons.clear(); |
|
toggle_buttons.clear(); |
|
labels.clear(); |
|
} |
|
|
|
void EntryBox::show() { |
|
std::vector<Gtk::Widget *> focus_chain; |
|
for(auto &entry : entries) { |
|
lower_box.pack_start(entry, Gtk::PACK_SHRINK); |
|
focus_chain.emplace_back(&entry); |
|
} |
|
for(auto &button : buttons) |
|
lower_box.pack_start(button, Gtk::PACK_SHRINK); |
|
for(auto &toggle_button : toggle_buttons) |
|
lower_box.pack_start(toggle_button, Gtk::PACK_SHRINK); |
|
for(auto &label : labels) |
|
upper_box.pack_start(label, Gtk::PACK_SHRINK); |
|
lower_box.set_focus_chain(focus_chain); |
|
show_all(); |
|
if(entries.size() > 0) { |
|
entries.begin()->grab_focus(); |
|
entries.begin()->select_region(0, entries.begin()->get_text_length()); |
|
} |
|
}
|
|
|