2008-11-07 14:32:28 -05:00
|
|
|
#include <gmodule.h>
|
2007-05-31 14:33:42 -04:00
|
|
|
#include <clutter/clutter.h>
|
|
|
|
|
2007-06-07 17:23:07 -04:00
|
|
|
static void
|
|
|
|
on_entry_activated (ClutterEntry *entry, gpointer null)
|
|
|
|
{
|
|
|
|
g_print ("Activated: %s\n", clutter_entry_get_text (entry));
|
|
|
|
}
|
|
|
|
|
2008-11-07 14:32:28 -05:00
|
|
|
G_MODULE_EXPORT int
|
|
|
|
test_entry_main (int argc, char *argv[])
|
2007-05-31 14:33:42 -04:00
|
|
|
{
|
|
|
|
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);
|
2007-06-19 10:10:25 -04:00
|
|
|
clutter_stage_set_title (CLUTTER_STAGE (stage), "ClutterEntry Test");
|
2007-06-19 05:10:37 -04:00
|
|
|
|
2007-05-31 14:33:42 -04:00
|
|
|
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);
|
2007-06-01 11:58:17 -04:00
|
|
|
/*clutter_entry_set_visibility (CLUTTER_ENTRY (entry), FALSE);*/
|
2007-06-01 13:18:21 -04:00
|
|
|
/*clutter_entry_set_max_length (CLUTTER_ENTRY (entry), 50);*/
|
2007-06-01 11:58:17 -04:00
|
|
|
|
2007-05-31 14:33:42 -04:00
|
|
|
clutter_group_add (CLUTTER_GROUP (stage), entry);
|
2008-03-06 07:39:24 -05:00
|
|
|
clutter_stage_set_key_focus (CLUTTER_STAGE (stage), entry);
|
|
|
|
|
2007-06-19 10:10:25 -04:00
|
|
|
clutter_actor_show_all (stage);
|
2007-05-31 14:33:42 -04:00
|
|
|
|
2007-06-07 17:23:07 -04:00
|
|
|
g_signal_connect (entry, "activate",
|
|
|
|
G_CALLBACK (on_entry_activated), NULL);
|
2007-07-26 07:04:04 -04:00
|
|
|
|
2007-05-31 14:33:42 -04:00
|
|
|
clutter_main();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|