27 gtk_widget_set_sensitive(GTK_WIDGET(g), (value==0)?FALSE:TRUE);
31 gtk_widget_grab_focus(GTK_WIDGET(g));
44 "Function is not appropriate for this type of widget (%s)",
64 return (gtk_widget_get_sensitive(GTK_WIDGET(g))==TRUE)?1:0;
67 return (gtk_widget_has_focus(GTK_WIDGET(g))==TRUE)?1:0;
80 "Function is not appropriate for this type of widget (%s)",
100 gtk_entry_set_text(GTK_ENTRY(g), value);
107 "Function is not appropriate for this type of widget (%s)",
118 const char *defaultValue) {
126 return gtk_entry_get_text(GTK_ENTRY(g));
132 "Function is not appropriate for this type of widget (%s)",
185 gulong deleted_text_handler_id;
186 gulong inserted_text_handler_id;
187 gboolean text_is_visible;
191 wParent=GWEN_Widget_Tree_GetParent(w);
197 gtk_entry_set_text(GTK_ENTRY(g), s);
198 gtk_entry_set_visibility(GTK_ENTRY(g), text_is_visible);
208 deleted_text_handler_id=g_signal_connect(gtk_entry_get_buffer(GTK_ENTRY(g)),
213 inserted_text_handler_id=g_signal_connect(gtk_entry_get_buffer(GTK_ENTRY(g)),