editablelabel: Add a style class while editing

Add the .editing style class to the editable label
while it is editing. The idea is that themes can
show a frame around the entry.
This commit is contained in:
Matthias Clasen 2020-07-18 09:54:55 -04:00
parent 7c02ae00c2
commit 899024cef7

View File

@ -444,6 +444,8 @@ gtk_editable_label_start_editing (GtkEditableLabel *self)
gtk_stack_set_visible_child_name (GTK_STACK (self->stack), "entry");
gtk_widget_grab_focus (self->entry);
gtk_widget_add_css_class (self, "editing");
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_EDITING]);
}
@ -480,5 +482,8 @@ gtk_editable_label_stop_editing (GtkEditableLabel *self,
}
gtk_widget_grab_focus (GTK_WIDGET (self));
gtk_widget_remove_css_class (self, "editing");
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_EDITING]);
}