1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="MousaiRecognizerView">
<property name="layout-manager">
<object class="GtkBinLayout"/>
</property>
<child>
<object class="AdwToolbarView" id="toolbar_view">
<child type="top">
<object class="AdwHeaderBar">
<child>
<object class="GtkButton">
<property name="tooltip-text" translatable="yes">Cancel Listening</property>
<property name="label" translatable="yes">Cancel</property>
<property name="action-name">win.toggle-recognize</property>
<style>
<class name="destructive-action"/>
</style>
</object>
</child>
</object>
</child>
<property name="content">
<object class="GtkBox">
<property name="margin-top">24</property>
<property name="margin-bottom">24</property>
<property name="valign">center</property>
<property name="orientation">vertical</property>
<property name="spacing">24</property>
<child>
<object class="MousaiWaveform" id="waveform"/>
</child>
<child>
<object class="GtkBox">
<property name="orientation">vertical</property>
<property name="spacing">6</property>
<child>
<object class="GtkLabel" id="title">
<style>
<class name="title-1"/>
</style>
</object>
</child>
<child>
<object class="GtkRevealer" id="offline_mode_status_revealer">
<property name="transition-type">crossfade</property>
<property name="child">
<object class="GtkLabel">
<property name="label" translatable="yes">Offline Mode</property>
<style>
<class name="caption"/>
</style>
</object>
</property>
</object>
</child>
</object>
</child>
</object>
</property>
</object>
</child>
</template>
</interface>
|