Sliding details

This commit is contained in:
Franz Dietrich 2024-01-21 22:26:03 +01:00
parent f5e2be9651
commit bd637cb97d
2 changed files with 73 additions and 48 deletions

View File

@ -8,47 +8,71 @@ Adw.ApplicationWindow window {
content: Gtk.Box { content: Gtk.Box {
orientation: vertical; orientation: vertical;
Adw.HeaderBar{ Adw.HeaderBar {
title-widget: Adw.WindowTitle { title-widget: Adw.WindowTitle {
title: "Sieverman"; title: "Sieverman";
}; };
Gtk.Button { label: "Neu";} [start]
Gtk.Button {
label: "Neu";
} }
[end]
Gtk.ToggleButton settings_button {
icon-name: "open-menu-symbolic";
active: true;
}
}
Gtk.Box { Gtk.Box {
orientation: horizontal; orientation: horizontal;
vexpand: true; vexpand: true;
halign: fill; halign: fill;
Gtk.Label{ Gtk.Label {
label: "Log information"; label: "Log information";
hexpand: true; hexpand: true;
} }
Gtk.Revealer settings_pane {
reveal-child: bind settings_button.active bidirectional;
transition-type: slide_left;
Gtk.ScrolledWindow server_info { Gtk.ScrolledWindow server_info {
width-request: 100; width-request: 100;
Adw.PreferencesPage { Adw.PreferencesPage {
Adw.PreferencesGroup server_settings{ Adw.PreferencesGroup server_settings {
vexpand: true; vexpand: true;
valign: center; valign: center;
title: "Server Information"; title: "Server Information";
description: "The information the server published on connection"; description: "The information the server published on connection";
} }
Adw.PreferencesGroup credentials { Adw.PreferencesGroup credentials {
vexpand: true; vexpand: true;
valign: center; valign: center;
title: "Login Information"; title: "Login Information";
description: "The credentials that will be used to log in."; description: "The credentials that will be used to log in.";
Adw.EntryRow{title: "Username:";}
Adw.PasswordEntryRow{title: "Password:";}
}} Adw.EntryRow {
title: "Username:";
}
Adw.PasswordEntryRow {
title: "Password:";
} }
} }
Gtk.Statusbar{Gtk.Label{ }
}
}
}
Gtk.Statusbar {
Gtk.Label {
label: "Status"; label: "Status";
}} }
}
}; };
} }

View File

@ -1,11 +1,11 @@
use std::{cell::RefCell, rc::Rc}; use std::{cell::RefCell, rc::Rc};
use crate::__COMPILED_BLUEPRINT_MAP__; use crate::__COMPILED_BLUEPRINT_MAP__;
use gtk4::{ use gtk::{
glib,
prelude::{ApplicationExt, GtkWindowExt}, prelude::{ApplicationExt, GtkWindowExt},
Application, Application,
}; };
use gtk4 as gtk;
use gtk_blueprint::get_blp; use gtk_blueprint::get_blp;
use libadwaita::prelude::{PreferencesGroupExt, PreferencesRowExt}; use libadwaita::prelude::{PreferencesGroupExt, PreferencesRowExt};
use tracing::trace; use tracing::trace;
@ -25,16 +25,17 @@ pub(crate) fn get_app(
} }
fn build_ui( fn build_ui(
app: &gtk4::Application, app: &gtk::Application,
from_backend_rx: Rc<RefCell<Option<tokio::sync::mpsc::Receiver<BackToFront>>>>, from_backend_rx: Rc<RefCell<Option<tokio::sync::mpsc::Receiver<BackToFront>>>>,
) { ) {
let builder = gtk4::Builder::new(); let builder = gtk::Builder::new();
builder builder
.add_from_string(get_blp!("gui/main_window.blp")) .add_from_string(get_blp!("gui/main_window.blp"))
.expect("Failed to parse blueprint"); .expect("Failed to parse blueprint");
let main_window = builder let main_window = builder
.object::<libadwaita::ApplicationWindow>("window") .object::<libadwaita::ApplicationWindow>("window")
.unwrap(); .unwrap();
let prefrences_group = builder let prefrences_group = builder
.object::<libadwaita::PreferencesGroup>("server_settings") .object::<libadwaita::PreferencesGroup>("server_settings")
.unwrap(); .unwrap();
@ -58,14 +59,14 @@ fn build_ui(
} }
}; };
let c = glib::MainContext::default(); let c = gtk::glib::MainContext::default();
c.spawn_local(future); c.spawn_local(future);
main_window.present(); main_window.present();
trace!("Window is visible"); trace!("Window is visible");
} }
fn row_in_settings(name: &str, value: &str) -> libadwaita::ActionRow { fn row_in_settings(name: &str, value: &str) -> libadwaita::ActionRow {
let builder = gtk4::Builder::new(); let builder = gtk::Builder::new();
builder builder
.add_from_string(get_blp!("gui/server_info_row.blp")) .add_from_string(get_blp!("gui/server_info_row.blp"))
.expect("Failed to parse blueprint"); .expect("Failed to parse blueprint");
@ -75,7 +76,7 @@ fn row_in_settings(name: &str, value: &str) -> libadwaita::ActionRow {
.unwrap(); .unwrap();
row.set_title(name); row.set_title(name);
let label = builder let label = builder
.object::<gtk4::Label>("server_info_row_value") .object::<gtk::Label>("server_info_row_value")
.unwrap(); .unwrap();
label.set_label(value); label.set_label(value);
row row