| Top |  |  |  |  | 
| GtkWidget * | gdict_speller_new () | 
| GtkWidget * | gdict_speller_new_with_context () | 
| void | gdict_speller_set_context () | 
| GdictContext * | gdict_speller_get_context () | 
| void | gdict_speller_set_database () | 
| const gchar * | gdict_speller_get_database () | 
| void | gdict_speller_set_strategy () | 
| const gchar * | gdict_speller_get_strategy () | 
| void | gdict_speller_clear () | 
| void | gdict_speller_match () | 
| gint | gdict_speller_count_matches () | 
| gchar ** | gdict_speller_get_matches () | 
GObject ╰── GInitiallyUnowned ╰── GtkWidget ╰── GtkContainer ╰── GtkBox ╰── GdictSpeller
GdictSpeller is a widget showing a list of words returned by a GdictContext query, using a specific database and a matching strategy.
GtkWidget *
gdict_speller_new_with_context (GdictContext *context);
FIXME
Since:
void gdict_speller_set_context (GdictSpeller *speller,GdictContext *context);
FIXME
Since:
GdictContext *
gdict_speller_get_context (GdictSpeller *speller);
FIXME
Since:
void gdict_speller_set_database (GdictSpeller *speller,const gchar *database);
FIXME
Since:
const gchar *
gdict_speller_get_database (GdictSpeller *speller);
FIXME
Since: FIXME
void gdict_speller_set_strategy (GdictSpeller *speller,const gchar *strategy);
FIXME
Since: FIXME
const gchar *
gdict_speller_get_strategy (GdictSpeller *speller);
FIXME
Since: FIXME
void gdict_speller_match (GdictSpeller *speller,const gchar *word);
FIXME
Since: FIXME
gchar ** gdict_speller_get_matches (GdictSpeller *speller,gsize length);
FIXME
Since: FIXME
struct GdictSpellerClass {
  GtkBoxClass parent_class;
  void (*word_activated) (GdictSpeller *speller,
		          const gchar  *word,
			  const gchar  *database);
  /* padding for future expansion */
  void (*_gdict_speller_1) (void);
  void (*_gdict_speller_2) (void);
  void (*_gdict_speller_3) (void);
  void (*_gdict_speller_4) (void);  
};
“context” property“context” GdictContext *
The GdictContext object used to get the word definition.
Flags: Read / Write / Construct
“database” property“database” gchar *
The database used to query the GdictContext.
Flags: Read / Write
Default value: "*"
“strategy” property“strategy” gchar *
The strategy used to query the GdictContext.
Flags: Read / Write
Default value: "."
“word-activated” signalvoid user_function (GdictSpeller *gdictspeller, gchar *arg1, gchar *arg2, gpointer user_data)
Flags: Run Last