summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/symbols.h
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2017-10-20 03:51:55 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2017-10-20 03:51:55 +0000
commitf2149d04cdff6c8278fef20928b1bbee6bcbb06f (patch)
tree20d9089f87b1e3e0d9ee11ba5f5a8c42308b4eb6 /src/ui/dialog/symbols.h
parentMerge branch 'master' into SymbolsSearch (diff)
downloadinkscape-f2149d04cdff6c8278fef20928b1bbee6bcbb06f.tar.gz
inkscape-f2149d04cdff6c8278fef20928b1bbee6bcbb06f.zip
Add case insensitive and no dialog loading
Diffstat (limited to 'src/ui/dialog/symbols.h')
-rw-r--r--src/ui/dialog/symbols.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/symbols.h b/src/ui/dialog/symbols.h
index 9a28da1a0..e2e467cd6 100644
--- a/src/ui/dialog/symbols.h
+++ b/src/ui/dialog/symbols.h
@@ -76,7 +76,6 @@ private:
void selectionChanged(Inkscape::Selection *selection);
void documentReplaced(SPDesktop *desktop, SPDocument *document);
SPDocument* selectedSymbols(bool ignorecurrent = false);
- void update_search_box(gpointer data);
Glib::ustring selectedSymbolId();
Glib::ustring selectedSymbolDocTitle();
void iconChanged();
@@ -93,7 +92,8 @@ private:
void use_in_doc_recursive(SPObject *r, std::vector<SPUse*> &l);
std::vector<SPUse*> use_in_doc( SPDocument* document);
void find_symbols(GdkEventKey* evt);
- void find_symbols_overload();
+ void prepare_find_symbols(GdkEventKey* evt);
+ void find_symbols_overloaded();
gchar const* style_from_use( gchar const* id, SPDocument* document);
Glib::RefPtr<Gdk::Pixbuf> draw_symbol(SPObject *symbol);
@@ -110,8 +110,8 @@ private:
Glib::RefPtr<Gtk::ListStore> store;
Gtk::ComboBoxText* symbolSet;
bool sensitive;
- bool finded;
Gtk::SearchEntry* search;
+ Glib::ustring search_str;
Gtk::IconView* iconView;
Gtk::Button* addSymbol;
Gtk::Button* removeSymbol;