testing-repository/Gtk3/gtk27/winclass.cpp

15 lines
307 B
C++
Raw Normal View History

2020-12-19 15:46:03 +08:00
#include "winclass.h"
#include "GtkClass.h"
void GtkMain::init(GtkApplication *app){
GtkWin window;
Winheader header;
window.main_window=gtk_application_window_new(app);
window.win_init(400,300);
header.header_init();
window.set_titlebar(header.header);
window.show_all();
};