69 lines
1.6 KiB
Plaintext
69 lines
1.6 KiB
Plaintext
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template $HomePage: Box {
|
|
orientation: vertical;
|
|
baseline-position: center;
|
|
Adw.Clamp {
|
|
ScrolledWindow {
|
|
hexpand: true;
|
|
vexpand: true;
|
|
child: Adw.PreferencesGroup {
|
|
margin-start:20;
|
|
margin-end: 20;
|
|
title: _("Welcome back, Tenno");
|
|
styles [
|
|
'list-title'
|
|
]
|
|
Adw.ExpanderRow owned_frames_row {
|
|
title: _("Owned Unique Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label owned_frames {
|
|
}
|
|
}
|
|
Adw.ExpanderRow owned_basics_row {
|
|
title: _("Owned Basic Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label owned_basics {
|
|
}
|
|
}
|
|
|
|
Adw.ExpanderRow missing_basics_row {
|
|
title: _("Missing Basic Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label missing_basics {
|
|
}
|
|
}
|
|
|
|
Adw.ExpanderRow owned_primes_row {
|
|
title: _("Owned Prime Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label owned_primes {
|
|
}
|
|
}
|
|
|
|
Adw.ExpanderRow missing_primes_row {
|
|
title: _("Missing Prime Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label missing_primes {
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|
|
} |