mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-08 17:50:10 +00:00
1755e07af7
Use the text-box accessible role for GtkPasswordEntry. And set properties as appropriate. Update the documentation and add a test.
42 lines
1.1 KiB
C
42 lines
1.1 KiB
C
#include <gtk/gtk.h>
|
|
|
|
static void
|
|
password_entry_role (void)
|
|
{
|
|
GtkWidget *widget = gtk_password_entry_new ();
|
|
g_object_ref_sink (widget);
|
|
|
|
gtk_test_accessible_assert_role (widget, GTK_ACCESSIBLE_ROLE_TEXT_BOX);
|
|
|
|
g_object_unref (widget);
|
|
}
|
|
|
|
static void
|
|
password_entry_properties (void)
|
|
{
|
|
GtkWidget *widget = gtk_password_entry_new ();
|
|
g_object_ref_sink (widget);
|
|
|
|
gtk_test_accessible_assert_property (widget, GTK_ACCESSIBLE_PROPERTY_PLACEHOLDER, NULL);
|
|
gtk_test_accessible_assert_property (widget, GTK_ACCESSIBLE_PROPERTY_READ_ONLY, FALSE);
|
|
|
|
g_object_set (widget, "placeholder-text", "Hello", NULL);
|
|
gtk_editable_set_editable (GTK_EDITABLE (widget), FALSE);
|
|
|
|
gtk_test_accessible_assert_property (widget, GTK_ACCESSIBLE_PROPERTY_PLACEHOLDER, "Hello");
|
|
gtk_test_accessible_assert_property (widget, GTK_ACCESSIBLE_PROPERTY_READ_ONLY, TRUE);
|
|
|
|
g_object_unref (widget);
|
|
}
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
gtk_test_init (&argc, &argv, NULL);
|
|
|
|
g_test_add_func ("/a11y/passwordentry/role", password_entry_role);
|
|
g_test_add_func ("/a11y/passwordentry/properties", password_entry_properties);
|
|
|
|
return g_test_run ();
|
|
}
|