Files
wince/data/ui/main.blp
2022-12-18 23:13:52 -08:00

51 lines
959 B
Plaintext

using Gtk 4.0;
using Adw 1;
Adw.ApplicationWindow mainWindow {
title: "Wince";
default-width: 600;
default-height: 500;
Gtk.Box {
orientation: vertical;
Adw.HeaderBar {}
Gtk.Box {
orientation: horizontal;
margin-top: 10;
margin-start: 14;
margin-bottom: 14;
margin-end: 14;
halign: center;
styles ["linked"]
Gtk.Entry searchEntry {
placeholder-text: "Search";
}
Gtk.Entry locationEntry {
placeholder-text: "Location";
}
Gtk.Button searchButton {
icon-name: "edit-find";
}
}
Gtk.ScrolledWindow scrollWindow {
vexpand: true;
visible: false;
Gtk.ListBox searchResults {}
}
Gtk.Label poweredByText {
halign: center;
valign: center;
vexpand: true;
use-markup: true;
label: "<span foreground=\"gray\" style=\"italic\">Wince is powered by Yelp</span>";
}
}
}