facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
47 lines
1.7 KiB
XML
47 lines
1.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- This file is in the public domain. -->
|
|
<interface>
|
|
<!-- interface-requires gtk+ 3.10 -->
|
|
<template class="HelloApplicationWindow" parent="GtkApplicationWindow">
|
|
<property name="title" translatable="yes">Example Application</property>
|
|
<property name="default-width">600</property>
|
|
<property name="default-height">400</property>
|
|
<child>
|
|
<object class="GtkBox" id="panel">
|
|
<property name="visible">True</property>
|
|
<property name="orientation">vertical</property>
|
|
<child>
|
|
<object class="GtkAlignment" id="alignment">
|
|
<property name="visible">True</property>
|
|
<property name="xalign">0.5</property>
|
|
<property name="yalign">0.5</property>
|
|
<property name="xscale">0</property>
|
|
<property name="yscale">0</property>
|
|
<property name="vexpand">True</property>
|
|
<child>
|
|
<object class="GtkLabel" id="label">
|
|
<property name="visible">True</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="GtkHButtonBox" id="buttonbar">
|
|
<property name="visible">True</property>
|
|
<child>
|
|
<object class="GtkButton" id="button">
|
|
<property name="visible">True</property>
|
|
<property name="label" translatable="yes">Update text</property>
|
|
<property name="use_stock">False</property>
|
|
</object>
|
|
<packing>
|
|
<property name="pack-type">end</property>
|
|
</packing>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</template>
|
|
</interface>
|