2024-04-05 12:42:02 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<interface>
|
2024-04-07 14:08:57 +03:00
|
|
|
<template class="MemoryCardsGameScene" parent="GtkApplicationWindow">
|
|
|
|
<property name="title">Memory cards game</property>
|
2024-04-05 12:42:02 +03:00
|
|
|
<child>
|
|
|
|
<object class="GtkBox" id="content">
|
2024-04-07 14:08:57 +03:00
|
|
|
<property name="orientation">vertical</property>
|
2024-04-08 16:34:14 +03:00
|
|
|
<property name="valign">GTK_ALIGN_CENTER</property>
|
2024-04-05 12:42:02 +03:00
|
|
|
<child>
|
2024-04-07 14:08:57 +03:00
|
|
|
<object class="CardDisplay" id="card_display"></object>
|
2024-04-05 12:42:02 +03:00
|
|
|
</child>
|
2024-04-10 20:25:02 +03:00
|
|
|
<child>
|
|
|
|
<object class="GtkLabel" id="no_cards_label">
|
|
|
|
<property name="label">No card found. Please, add some.</property>
|
|
|
|
<property name="visible">false</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
2024-04-05 12:42:02 +03:00
|
|
|
<child>
|
2024-04-07 14:08:57 +03:00
|
|
|
<object class="GtkLabel" id="stats_label">
|
|
|
|
<property name="label">Correct|Incorrect: 0|0</property>
|
2024-04-05 12:42:02 +03:00
|
|
|
</object>
|
|
|
|
</child>
|
2024-04-10 20:25:02 +03:00
|
|
|
<child>
|
|
|
|
<object class="GtkButton" id="back_button">
|
|
|
|
<property name="label">go back</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
2024-04-05 12:42:02 +03:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</template>
|
|
|
|
</interface>
|