int main(int argc, char *argv[]) { HildonProgram *program; HildonWindow *window; GtkWidget *button; /* This is called in all Hildon applications. Arguments are parsed * from the command line and are returned to the application. */ hildon_gtk_init (&argc, &argv); /* Get an instance of HildonProgram. It is an object used to represent * an application running in the Hildon framework. */ program = HILDON_PROGRAM( hildon_program_get_instance () ); /* Set the program title */ g_set_application_name("Hello World"); /* create a new hildon window */ window = HILDON_WINDOW( hildon_window_new () ); gtk_window_set_title(GTK_WINDOW(window), "Kokbok"); /* Registers a window as belonging to the program */ hildon_program_add_window (program, window);