#include <Elementary.h>
void
{
if (!nf) return;
elm_object_text_set(btn, "Go to Second Page.");
elm_naviframe_item_push(nf, "Next Page", NULL, NULL, btn, NULL);
}
EAPI_MAIN int
{
elm_object_text_set(btn, "Go to Second Page.");
elm_naviframe_item_push(nf, "First Page", NULL, NULL, btn, NULL);
return 0;
}