mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 19:42:05 +00:00
[tests] Remove test-entry.c since we don't have a ClutterEntry any more
Removes an unused interactive unit test for the old ClutterEntry actor we used to have.
This commit is contained in:
parent
b710ed0eea
commit
4293920a11
1
.gitignore
vendored
1
.gitignore
vendored
@ -79,7 +79,6 @@ TAGS
|
|||||||
/tests/interactive/test-boxes
|
/tests/interactive/test-boxes
|
||||||
/tests/interactive/test-depth
|
/tests/interactive/test-depth
|
||||||
/tests/interactive/test-effects
|
/tests/interactive/test-effects
|
||||||
/tests/interactive/test-entry
|
|
||||||
/tests/interactive/test-events
|
/tests/interactive/test-events
|
||||||
/tests/interactive/test-fbo
|
/tests/interactive/test-fbo
|
||||||
/tests/interactive/test-fullscreen
|
/tests/interactive/test-fullscreen
|
||||||
|
@ -1,47 +0,0 @@
|
|||||||
#include <gmodule.h>
|
|
||||||
#include <clutter/clutter.h>
|
|
||||||
|
|
||||||
static void
|
|
||||||
on_entry_activated (ClutterEntry *entry, gpointer null)
|
|
||||||
{
|
|
||||||
g_print ("Activated: %s\n", clutter_entry_get_text (entry));
|
|
||||||
}
|
|
||||||
|
|
||||||
G_MODULE_EXPORT int
|
|
||||||
test_entry_main (int argc, char *argv[])
|
|
||||||
{
|
|
||||||
ClutterActor *entry;
|
|
||||||
ClutterActor *stage;
|
|
||||||
ClutterColor stage_color = { 0x00, 0x00, 0x00, 0xff };
|
|
||||||
ClutterColor entry_color = { 0x33, 0xdd, 0xff, 0xff };
|
|
||||||
|
|
||||||
clutter_init (&argc, &argv);
|
|
||||||
|
|
||||||
stage = clutter_stage_get_default ();
|
|
||||||
|
|
||||||
clutter_actor_set_size (stage, 800, 600);
|
|
||||||
clutter_stage_set_color (CLUTTER_STAGE (stage), &stage_color);
|
|
||||||
clutter_stage_set_title (CLUTTER_STAGE (stage), "ClutterEntry Test");
|
|
||||||
|
|
||||||
entry = clutter_entry_new_with_text ("Sans 14",
|
|
||||||
"Type something, be sure to use the "
|
|
||||||
"left/right arrow keys to move the "
|
|
||||||
"cursor position.");
|
|
||||||
clutter_entry_set_color (CLUTTER_ENTRY (entry), &entry_color);
|
|
||||||
clutter_actor_set_size (entry, 600, 50);
|
|
||||||
clutter_actor_set_position (entry, 100, 100);
|
|
||||||
/*clutter_entry_set_visibility (CLUTTER_ENTRY (entry), FALSE);*/
|
|
||||||
/*clutter_entry_set_max_length (CLUTTER_ENTRY (entry), 50);*/
|
|
||||||
|
|
||||||
clutter_group_add (CLUTTER_GROUP (stage), entry);
|
|
||||||
clutter_stage_set_key_focus (CLUTTER_STAGE (stage), entry);
|
|
||||||
|
|
||||||
clutter_actor_show_all (stage);
|
|
||||||
|
|
||||||
g_signal_connect (entry, "activate",
|
|
||||||
G_CALLBACK (on_entry_activated), NULL);
|
|
||||||
|
|
||||||
clutter_main();
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user