echidna/src/components/window/window.ui

49 lines
1.8 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/. -->
<interface>
<requires lib="gtk" version="4.0" />
<template class="EchidnaWindow">
<property name="title">Echidna Code Editor</property>
<property name="default-width">800</property>
<property name="default-height">600</property>
<child>
<object class="GtkBox" id="echidna-root">
<property name="orientation">vertical</property>
<child>
<object class="GtkBox" id="bars-box">
<property name="vexpand">1</property>
<child>
<object class="EchidnaSidebar" id="sidebar"></object>
</child>
<child>
<placeholder />
</child>
<child>
<!-- <object class="GtkGrid" id="editor-tabs">
<property name="hexpand">1</property>
<child>
-->
<object class="GtkNotebook" id="notebook">
<property name="hexpand">1</property>
</object>
<!-- </child>
</object> -->
</child>
</object>
</child>
<child>
<object class="GtkStatusbar" id="status-bar">
<property name="margin-start">10</property>
<property name="margin-end">10</property>
<property name="margin-start">10</property>
<property name="margin-end">10</property>
<property name="margin-top">6</property>
<property name="margin-bottom">6</property>
</object>
</child>
</object>
</child>
</template>
</interface>