60 lines
1.2 KiB
Plaintext
60 lines
1.2 KiB
Plaintext
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template $HomePage: Box {
|
|
orientation: vertical;
|
|
baseline-position: center;
|
|
Adw.Clamp {
|
|
Adw.PreferencesGroup {
|
|
title: _("Welcome back, Tenno");
|
|
Adw.ActionRow {
|
|
title: _("Owned Unique Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label owned_frames {
|
|
}
|
|
}
|
|
Adw.ActionRow {
|
|
title: _("Owned Basic Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label owned_basics {
|
|
}
|
|
}
|
|
|
|
Adw.ActionRow {
|
|
title: _("Missing Basic Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label missing_basics {
|
|
}
|
|
}
|
|
|
|
Adw.ActionRow {
|
|
title: _("Owned Prime Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label owned_primes {
|
|
}
|
|
}
|
|
|
|
Adw.ActionRow {
|
|
title: _("Missing Prime Frames:");
|
|
title-selectable: false;
|
|
activatable: false;
|
|
|
|
[suffix]
|
|
Label missing_primes {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |