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.
44 lines
1.5 KiB
44 lines
1.5 KiB
#pragma once |
|
#include "source_base.h" |
|
#include <aspell.h> |
|
|
|
namespace Source { |
|
class SpellCheckView : virtual public Source::BaseView { |
|
public: |
|
SpellCheckView(const boost::filesystem::path &file_path, Glib::RefPtr<Gsv::Language> language); |
|
~SpellCheckView(); |
|
|
|
void configure() override; |
|
void hide_dialogs() override; |
|
|
|
void spellcheck(); |
|
void remove_spellcheck_errors(); |
|
void goto_next_spellcheck_error(); |
|
|
|
protected: |
|
bool is_code_iter(const Gtk::TextIter &iter); |
|
bool spellcheck_all=false; |
|
guint last_keyval=0; |
|
|
|
Glib::RefPtr<Gtk::TextTag> comment_tag; |
|
Glib::RefPtr<Gtk::TextTag> string_tag; |
|
Glib::RefPtr<Gtk::TextTag> no_spell_check_tag; |
|
private: |
|
Glib::RefPtr<Gtk::TextTag> spellcheck_error_tag; |
|
|
|
sigc::connection signal_tag_added_connection; |
|
sigc::connection signal_tag_removed_connection; |
|
|
|
static AspellConfig* spellcheck_config; |
|
AspellCanHaveError *spellcheck_possible_err; |
|
AspellSpeller *spellcheck_checker; |
|
bool is_word_iter(const Gtk::TextIter& iter); |
|
std::pair<Gtk::TextIter, Gtk::TextIter> get_word(Gtk::TextIter iter); |
|
void spellcheck_word(Gtk::TextIter start, Gtk::TextIter end); |
|
std::vector<std::string> get_spellcheck_suggestions(const Gtk::TextIter& start, const Gtk::TextIter& end); |
|
sigc::connection delayed_spellcheck_suggestions_connection; |
|
sigc::connection delayed_spellcheck_error_clear; |
|
|
|
void spellcheck(const Gtk::TextIter& start, const Gtk::TextIter& end); |
|
}; |
|
}
|
|
|