/
evo
/
Gtk4-tutorial
Обзор
Документация
Войти
/
evo
/
Gtk4-tutorial
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/tfe4/tfe.ui
59 строк
2 KB
Toshio Sekiya
Update section 1 to section23 to cover GTK version 4.10.
15 июл 2023, 11:27
15 июл 2023, 11:27
8aba1da
Код
Авторство
О чём код?
<?xml version="1.0" encoding="UTF-8"?> <interface> <object class="GtkApplicationWindow" id="win"> <property name="title">file editor</property> <property name="default-width">600</property> <property name="default-height">400</property> <child> <object class="GtkBox"> <property name="orientation">GTK_ORIENTATION_VERTICAL</property> <child> <object class="GtkBox"> <property name="orientation">GTK_ORIENTATION_HORIZONTAL</property> <child> <object class="GtkLabel"> <property name="width-chars">10</property> </object> </child> <child> <object class="GtkButton"> <property name="label">New</property> </object> </child> <child> <object class="GtkButton"> <property name="label">Open</property> </object> </child> <child> <object class="GtkLabel"> <property name="hexpand">TRUE</property> </object> </child> <child> <object class="GtkButton"> <property name="label">Save</property> </object> </child> <child> <object class="GtkButton"> <property name="label">Close</property> </object> </child> <child> <object class="GtkLabel"> <property name="width-chars">10</property> </object> </child> </object> </child> <child> <object class="GtkNotebook" id="nb"> <property name="hexpand">TRUE</property> <property name="vexpand">TRUE</property> </object> </child> </object> </child> </object> </interface>