mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
tests/interactive: Add some descriptions
This commit is contained in:
parent
5fc953cb5e
commit
ac8e174eca
@ -114,3 +114,9 @@ test_animation_main (int argc, char *argv[])
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT const char *
|
||||
test_animation_describe (void)
|
||||
{
|
||||
return "Simple clutter_actor_animate() demo";
|
||||
}
|
||||
|
@ -111,3 +111,9 @@ test_cairo_clock_main (int argc, char *argv[])
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT const char *
|
||||
test_cairo_clock_describe (void)
|
||||
{
|
||||
return "Simple 2D canvas using a Cairo texture actor";
|
||||
}
|
||||
|
@ -247,3 +247,9 @@ test_constraints_main (int argc, char *argv[])
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT const char *
|
||||
test_constraints_describe (void)
|
||||
{
|
||||
return "Visualize usage of Bind and Align constraints";
|
||||
}
|
||||
|
@ -243,3 +243,9 @@ test_drop_main (int argc, char *argv[])
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT const char *
|
||||
test_drop_describe (void)
|
||||
{
|
||||
return "Drop action support";
|
||||
}
|
||||
|
@ -262,3 +262,9 @@ test_easing_main (int argc, char *argv[])
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT const char *
|
||||
test_easing_describe (void)
|
||||
{
|
||||
return "Visualize all easing modes provided by Clutter";
|
||||
}
|
||||
|
@ -274,3 +274,9 @@ test_table_layout_main (int argc, char *argv[])
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT const char *
|
||||
test_table_layout_describe (void)
|
||||
{
|
||||
return "Table layout manager";
|
||||
}
|
||||
|
@ -334,3 +334,14 @@ test_text_field_main (gint argc,
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT const char *
|
||||
test_text_field_describe (void)
|
||||
{
|
||||
return
|
||||
"Text actor single-line and password mode support\n"
|
||||
"\n"
|
||||
"This test checks the :single-line-mode and :password-char properties of\n"
|
||||
"the ClutterText actor, plus the password hint feature and the :max-length\n"
|
||||
"property.";
|
||||
}
|
||||
|
@ -147,3 +147,9 @@ test_texture_async_main (int argc, char *argv[])
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT const char *
|
||||
test_texture_async_describe (void)
|
||||
{
|
||||
return "Texture asynchronous loading using threads";
|
||||
}
|
||||
|
@ -110,3 +110,9 @@ test_textures_main (int argc, char *argv[])
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT const char *
|
||||
test_texture_slicing_describe (void)
|
||||
{
|
||||
return "Check texture slicing support in CoglTexture";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user