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.
31 lines
1.2 KiB
31 lines
1.2 KiB
|
6 years ago
|
#include "selection_dialog.hpp"
|
||
|
10 years ago
|
|
||
|
10 years ago
|
SelectionDialogBase::ListViewText::ListViewText(bool use_markup) {}
|
||
|
10 years ago
|
|
||
|
8 years ago
|
SelectionDialogBase::SelectionDialogBase(Gtk::TextView *text_view, const Glib::RefPtr<Gtk::TextBuffer::Mark> &start_mark, bool show_search_entry, bool use_markup)
|
||
|
|
: text_view(text_view), list_view_text(use_markup) {}
|
||
|
10 years ago
|
|
||
|
|
void SelectionDialogBase::show() {}
|
||
|
|
|
||
|
|
void SelectionDialogBase::hide() {}
|
||
|
|
|
||
|
8 years ago
|
void SelectionDialogBase::add_row(const std::string &row) {}
|
||
|
10 years ago
|
|
||
|
9 years ago
|
std::unique_ptr<SelectionDialog> SelectionDialog::instance;
|
||
|
|
|
||
|
8 years ago
|
SelectionDialog::SelectionDialog(Gtk::TextView *text_view, const Glib::RefPtr<Gtk::TextBuffer::Mark> &start_mark, bool show_search_entry, bool use_markup)
|
||
|
|
: SelectionDialogBase(text_view, start_mark, show_search_entry, use_markup) {}
|
||
|
10 years ago
|
|
||
|
|
SelectionDialogBase::~SelectionDialogBase() {}
|
||
|
|
|
||
|
8 years ago
|
bool SelectionDialog::on_key_press(GdkEventKey *key) { return true; }
|
||
|
10 years ago
|
|
||
|
9 years ago
|
std::unique_ptr<CompletionDialog> CompletionDialog::instance;
|
||
|
|
|
||
|
8 years ago
|
CompletionDialog::CompletionDialog(Gtk::TextView *text_view, const Glib::RefPtr<Gtk::TextBuffer::Mark> &start_mark)
|
||
|
|
: SelectionDialogBase(text_view, start_mark, false, false) {}
|
||
|
10 years ago
|
|
||
|
8 years ago
|
bool CompletionDialog::on_key_press(GdkEventKey *key) { return true; }
|
||
|
10 years ago
|
|
||
|
8 years ago
|
bool CompletionDialog::on_key_release(GdkEventKey *key) { return true; }
|