123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #include "ftk.h"
- static void create_app_window(void);
- static Ret button_open_clicked(void* ctx, void* obj)
- {
- create_app_window();
- return RET_OK;
- }
- static Ret button_close_clicked(void* ctx, void* obj)
- {
- FtkWidget* win = ctx;
- ftk_logd("%s: close window %s\n", __func__, ftk_widget_get_text(win));
- ftk_widget_unref(win);
- return RET_OK;
- }
- static int g_index = 0;
- static void on_window_close(void* user_data)
- {
- g_index--;
- ftk_logd("%s: g_index=%d\n", __func__, g_index);
- if(g_index == 0)
- {
- FTK_QUIT();
- }
- return ;
- }
- static void create_app_window(void)
- {
- char title[32] = {0};
- int width = 0;
- int height = 0;
- FtkWidget* win = ftk_app_window_create();
- FtkWidget* label = NULL;
- FtkWidget* button = NULL;
-
- width = ftk_widget_width(win);
- height = ftk_widget_height(win);
- button = ftk_button_create(win, 0, height/6, width/3, 50);
- ftk_widget_set_text(button, "创建窗口");
- ftk_button_set_clicked_listener(button, button_open_clicked, win);
- button = ftk_button_create(win, 2*width/3, height/6, width/3, 50);
- ftk_widget_set_text(button, "关闭窗口");
- ftk_button_set_clicked_listener(button, button_close_clicked, win);
- ftk_snprintf(title, sizeof(title), "window%02d", g_index++);
- label = ftk_label_create(win, width/4, height/2, width/2, 30);
- ftk_widget_set_text(label, title);
-
- ftk_widget_set_text(win, title);
- ftk_widget_show_all(win, 1);
- ftk_widget_set_user_data(win, on_window_close, win);
- return;
- }
- #ifdef FTK_AS_PLUGIN
- #include "ftk_app_demo.h"
- FTK_HIDE int FTK_MAIN(int argc, char* argv[]);
- FtkApp* ftk_app_demo_multi_win_create()
- {
- return ftk_app_demo_create(_("multi_win"), ftk_main);
- }
- #else
- #define FTK_HIDE extern
- #endif /*FTK_AS_PLUGIN*/
- FTK_HIDE int FTK_MAIN(int argc, char* argv[])
- {
- FTK_INIT(argc, argv);
-
- create_app_window();
- FTK_RUN();
- return 0;
- }
|