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.
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "autocomplete.h"
|
|
|
|
|
#include "mutex.h"
|
|
|
|
|
#include "source.h"
|
|
|
|
|
#include <atomic>
|
|
|
|
|
|
|
|
|
|
namespace Source {
|
|
|
|
|
class GenericView : public View {
|
|
|
|
|
public:
|
|
|
|
|
GenericView(const boost::filesystem::path &file_path, const Glib::RefPtr<Gsv::Language> &language);
|
|
|
|
|
~GenericView();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void parse_language_file(bool &has_context_class, const boost::property_tree::ptree &pt);
|
|
|
|
|
|
|
|
|
|
std::set<std::string> keywords;
|
|
|
|
|
|
|
|
|
|
bool is_word_iter(const Gtk::TextIter &iter);
|
|
|
|
|
std::pair<Gtk::TextIter, Gtk::TextIter> get_word(Gtk::TextIter iter);
|
|
|
|
|
std::vector<std::pair<Gtk::TextIter, Gtk::TextIter>> get_words(const Gtk::TextIter &start, const Gtk::TextIter &end);
|
|
|
|
|
|
|
|
|
|
Mutex buffer_words_mutex ACQUIRED_AFTER(autocomplete.prefix_mutex);
|
|
|
|
|
std::map<std::string, size_t> buffer_words GUARDED_BY(buffer_words_mutex);
|
|
|
|
|
bool show_prefix_buffer_word GUARDED_BY(buffer_words_mutex) = false; /// To avoid showing the current word if it is unique in document
|
|
|
|
|
void setup_buffer_words();
|
|
|
|
|
|
|
|
|
|
Autocomplete autocomplete;
|
|
|
|
|
std::vector<std::string> autocomplete_comment;
|
|
|
|
|
std::vector<std::string> autocomplete_insert;
|
|
|
|
|
void setup_autocomplete();
|
|
|
|
|
};
|
|
|
|
|
} // namespace Source
|