Start remove app

This commit is contained in:
FyloZ 2023-09-01 14:21:32 -04:00
parent 2ef3557932
commit 8e0bf14cc8
Signed by: william
GPG Key ID: 835378AE9AF4AE97
9 changed files with 81 additions and 3 deletions

View File

@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
adw = { version = "0.5.2", package = "libadwaita", features = ["v1_2"] }
adw = { version = "0.5.2", package = "libadwaita", features = ["v1_3"] }
gtk = { version = "0.7.1", package = "gtk4", features = ["v4_10"] }
log = { version = "0.4", features = ["max_level_debug", "release_max_level_info"] }
simplelog = "^0.12.0"

13
resources/app_view.ui Normal file
View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
<interface>
<template class="ConfigManagerAppView" parent="GtkBox">
<property name="orientation">vertical</property>
<property name="hexpand">True</property>
<child>
<object class="GtkButton">
<property name="label" translatable="yes">_Test</property>
<property name="halign">center</property>
</object>
</child>
</template>
</interface>

View File

@ -2,5 +2,6 @@
<gresources>
<gresource prefix="/dev/fyloz/example/">
<file compressed="true" preprocess="xml-stripblanks">window.ui</file>
<file compressed="true" preprocess="xml-stripblanks">app_view.ui</file>
</gresource>
</gresources>

View File

@ -128,6 +128,9 @@
</object>
</child>
<!-- Content -->
<child>
<object class="CmAppView" />
</child>
</object>
</child>
</object>

32
src/ui/appview/imp.rs Normal file
View File

@ -0,0 +1,32 @@
use adw::glib;
use glib::subclass::InitializingObject;
use gtk::CompositeTemplate;
use gtk::prelude::*;
use gtk::subclass::prelude::*;
#[derive(Default, CompositeTemplate)]
#[template(resource = "dev/fyloz/example/app_view.ui")]
pub struct AppView {}
#[glib::object_subclass]
impl ObjectSubclass for AppView {
const NAME: &'static str = "CmAppView";
type Type = super::AppView;
type ParentType = gtk::Box;
fn class_init(klass: &mut Self::Class) {
klass.bind_template();
}
fn instance_init(obj: &InitializingObject<Self>) {
obj.init_template();
}
}
impl ObjectImpl for AppView {
}
impl WidgetImpl for AppView {}
impl BoxImpl for AppView {}

9
src/ui/appview/mod.rs Normal file
View File

@ -0,0 +1,9 @@
use adw::glib;
mod imp;
glib::wrapper! {
pub struct AppView(ObjectSubclass<imp::AppView>)
@extends gtk::Box, gtk::Widget,
@implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget, gtk::Orientable;
}

View File

@ -1,2 +1,4 @@
pub mod objects;
pub mod window;
pub mod appview;

View File

@ -9,6 +9,7 @@ use adw::subclass::prelude::*;
use glib::once_cell::sync::OnceCell;
use glib::subclass::InitializingObject;
use gtk::{gio, glib, CompositeTemplate, ListBox, TemplateChild, Stack};
use crate::ui::appview::AppView;
#[derive(CompositeTemplate, Default)]
#[template(resource = "/dev/fyloz/example/window.ui")]
@ -19,6 +20,8 @@ pub struct Window {
pub leaflet: TemplateChild<Leaflet>,
#[template_child]
pub stack: TemplateChild<Stack>,
#[template_child]
pub app_view: TemplateChild<AppView>,
pub apps: OnceCell<gio::ListStore>,
pub current_app: RefCell<Option<AppObject>>,
}

View File

@ -5,7 +5,7 @@ use crate::ui::objects::app::{AppData, AppObject};
use adw::prelude::*;
use adw::subclass::prelude::*;
use gtk::{gio, glib, Entry, ListBoxRow, Label, pango, SelectionMode};
use gtk::{gio, glib, Entry, ListBoxRow, Label, pango, SelectionMode, Button, Orientation, CenterBox};
use glib::{clone, Object};
glib::wrapper! {
@ -34,12 +34,27 @@ impl Window {
.xalign(0.0)
.build();
let remove_button = Button::builder()
.icon_name("user-trash-symbolic")
.tooltip_text("Remove the application")
.action_name("win.remove-application")
.build();
let bbox = CenterBox::builder()
.orientation(Orientation::Horizontal)
.build();
bbox.set_start_widget(Some(&label));
bbox.set_end_widget(Some(&remove_button));
self.imp().apps_list.remove(&bbox);
app_object
.bind_property("name", &label, "label")
.sync_create()
.build();
ListBoxRow::builder().child(&label).build()
ListBoxRow::builder().child(&bbox).build()
}
fn current_app(&self) -> AppObject {