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.
97 lines
3.3 KiB
97 lines
3.3 KiB
#ifndef JUCI_SELECTIONDIALOG_H_ |
|
#define JUCI_SELECTIONDIALOG_H_ |
|
|
|
#include "gtkmm.h" |
|
#include <unordered_map> |
|
|
|
class SelectionDialogBase { |
|
class ListViewText : public Gtk::TreeView { |
|
class ColumnRecord : public Gtk::TreeModel::ColumnRecord { |
|
public: |
|
ColumnRecord() { |
|
add(text); |
|
} |
|
Gtk::TreeModelColumn<std::string> text; |
|
}; |
|
public: |
|
bool use_markup; |
|
ListViewText(bool use_markup); |
|
void append(const std::string& value); |
|
void clear(); |
|
private: |
|
Glib::RefPtr<Gtk::ListStore> list_store; |
|
ColumnRecord column_record; |
|
Gtk::CellRendererText cell_renderer; |
|
}; |
|
|
|
class SearchEntry : public Gtk::Entry { |
|
public: |
|
SearchEntry() : Gtk::Entry() {} |
|
bool on_key_press_event(GdkEventKey *event) override { return Gtk::Entry::on_key_press_event(event); }; |
|
}; |
|
|
|
public: |
|
SelectionDialogBase(Gtk::TextView *text_view, Glib::RefPtr<Gtk::TextBuffer::Mark> start_mark, bool show_search_entry, bool use_markup); |
|
virtual ~SelectionDialogBase(); |
|
void add_row(const std::string& row); |
|
void set_cursor_at_last_row(); |
|
void show(); |
|
void hide(); |
|
|
|
bool is_visible() {return window.is_visible();} |
|
void get_position(int &root_x, int &root_y) {window.get_position(root_x, root_y);} |
|
|
|
std::function<void()> on_show; |
|
std::function<void()> on_hide; |
|
std::function<void(const std::string& selected, bool hide_window)> on_select; |
|
std::function<void(const std::string &selected)> on_changed; |
|
Glib::RefPtr<Gtk::TextBuffer::Mark> start_mark; |
|
|
|
protected: |
|
void cursor_changed(); |
|
|
|
Gtk::TextView *text_view; |
|
Gtk::Window window; |
|
Gtk::Box vbox; |
|
Gtk::ScrolledWindow scrolled_window; |
|
ListViewText list_view_text; |
|
SearchEntry search_entry; |
|
bool show_search_entry; |
|
|
|
std::string last_row; |
|
}; |
|
|
|
class SelectionDialog : public SelectionDialogBase { |
|
SelectionDialog(Gtk::TextView *text_view, Glib::RefPtr<Gtk::TextBuffer::Mark> start_mark, bool show_search_entry, bool use_markup); |
|
static std::unique_ptr<SelectionDialog> instance; |
|
public: |
|
bool on_key_press(GdkEventKey* key); |
|
|
|
static void create(Gtk::TextView *text_view, Glib::RefPtr<Gtk::TextBuffer::Mark> start_mark, bool show_search_entry=true, bool use_markup=false) { |
|
instance=std::unique_ptr<SelectionDialog>(new SelectionDialog(text_view, start_mark, show_search_entry, use_markup)); |
|
} |
|
static void create(bool show_search_entry=true, bool use_markup=false) { |
|
instance=std::unique_ptr<SelectionDialog>(new SelectionDialog(nullptr, Glib::RefPtr<Gtk::TextBuffer::Mark>(), show_search_entry, use_markup)); |
|
} |
|
static std::unique_ptr<SelectionDialog> &get() {return instance;} |
|
}; |
|
|
|
class CompletionDialog : public SelectionDialogBase { |
|
CompletionDialog(Gtk::TextView *text_view, Glib::RefPtr<Gtk::TextBuffer::Mark> start_mark); |
|
static std::unique_ptr<CompletionDialog> instance; |
|
public: |
|
bool on_key_release(GdkEventKey* key); |
|
bool on_key_press(GdkEventKey* key); |
|
|
|
static void create(Gtk::TextView *text_view, Glib::RefPtr<Gtk::TextBuffer::Mark> start_mark) { |
|
instance=std::unique_ptr<CompletionDialog>(new CompletionDialog(text_view, start_mark)); |
|
} |
|
static std::unique_ptr<CompletionDialog> &get() {return instance;} |
|
private: |
|
void select(bool hide_window=true); |
|
|
|
int show_offset; |
|
bool row_in_entry=false; |
|
}; |
|
|
|
#endif // JUCI_SELECTIONDIALOG_H_
|