first commit
This commit is contained in:
commit
d8b1761163
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/target
|
1059
Cargo.lock
generated
Normal file
1059
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
11
Cargo.toml
Normal file
11
Cargo.toml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
[package]
|
||||||
|
name = "test-gtk4-libadw-app"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
gtk = { version = "0.6.6", package = "gtk4" }
|
||||||
|
tokio = { features = ["full"] }
|
||||||
|
vte = { version = "0.6.0", package = "vte4" }
|
147
src/main.rs
Normal file
147
src/main.rs
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
use std::process::Command;
|
||||||
|
use gtk::prelude::*;
|
||||||
|
use gtk::*;
|
||||||
|
use vte::*;
|
||||||
|
use glib::*;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let app = Application::builder()
|
||||||
|
.application_id("com.pika-os.driver-manager")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
app.connect_activate(build_ui);
|
||||||
|
app.run();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fn build_ui(app: &Application) {
|
||||||
|
|
||||||
|
|
||||||
|
let main_box = gtk::Box::builder()
|
||||||
|
.orientation(Orientation::Vertical)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
let drivers_list_row = gtk::ListBox::builder()
|
||||||
|
.margin_top(20)
|
||||||
|
.margin_bottom(20)
|
||||||
|
.margin_start(20)
|
||||||
|
.margin_end(20)
|
||||||
|
.vexpand(true)
|
||||||
|
.hexpand(true)
|
||||||
|
.show_separators(true)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
main_box.append(&drivers_list_row);
|
||||||
|
|
||||||
|
|
||||||
|
let ubuntu_drivers_list_cli = Command::new("/usr/bin/echo")
|
||||||
|
.arg("test1\ntest2\ntest3\ntest4")
|
||||||
|
.output()
|
||||||
|
.expect("failed to execute process");
|
||||||
|
|
||||||
|
let ubuntu_drivers_list_utf8 = String::from_utf8(ubuntu_drivers_list_cli.stdout).unwrap();
|
||||||
|
|
||||||
|
for driver in ubuntu_drivers_list_utf8.lines() {
|
||||||
|
|
||||||
|
|
||||||
|
let driver_name = driver;
|
||||||
|
|
||||||
|
let driver_string = driver.to_string();
|
||||||
|
let driver_string2 = driver.to_string();
|
||||||
|
|
||||||
|
let driver_box = gtk::Box::builder()
|
||||||
|
.orientation(Orientation::Horizontal)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
|
||||||
|
let driver_label = gtk::Label::builder()
|
||||||
|
.margin_top(12)
|
||||||
|
.margin_bottom(12)
|
||||||
|
.margin_start(12)
|
||||||
|
.margin_end(12)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
if driver_name != "test1" {
|
||||||
|
driver_label.set_label(driver)
|
||||||
|
} else {
|
||||||
|
driver_label.set_label("No Driver are required for this system you are good to go! 😎")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
let driver_button = gtk::Button::builder()
|
||||||
|
.margin_top(12)
|
||||||
|
.margin_bottom(12)
|
||||||
|
.margin_start(12)
|
||||||
|
.margin_end(12)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
let driver_separator = gtk::Separator::builder()
|
||||||
|
.hexpand(true)
|
||||||
|
.opacity(0.0)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
driver_button_refresh(&driver_string2, &driver_button);
|
||||||
|
|
||||||
|
driver_box.append(&driver_label);
|
||||||
|
driver_box.append(&driver_separator);
|
||||||
|
if driver_name != "test1" {
|
||||||
|
driver_box.append(&driver_button);
|
||||||
|
}
|
||||||
|
drivers_list_row.append(&driver_box);
|
||||||
|
|
||||||
|
driver_button.connect_clicked(clone!(@weak driver_button => move |_| modify_package(&driver_string, &driver_button)));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
let main_scroll = gtk::ScrolledWindow::builder()
|
||||||
|
.child(&main_box)
|
||||||
|
.build();
|
||||||
|
let window = gtk::ApplicationWindow::builder()
|
||||||
|
.title("PikaOS Driver Manager")
|
||||||
|
.application(app)
|
||||||
|
.child(&main_scroll)
|
||||||
|
.icon_name("mintinstall")
|
||||||
|
.default_width(700)
|
||||||
|
.default_height(500)
|
||||||
|
.width_request(500)
|
||||||
|
.height_request(500)
|
||||||
|
.startup_id("pika-drivers")
|
||||||
|
.build();
|
||||||
|
|
||||||
|
|
||||||
|
window.show()
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
fn modify_package(package: &str, driver_button: &Button) {
|
||||||
|
let wrapper_command = Command::new("x-terminal-emulator")
|
||||||
|
.args(["-e", "bash", "-c", "apt install jaj"])
|
||||||
|
.output()
|
||||||
|
.unwrap();
|
||||||
|
if wrapper_command.status.success() {
|
||||||
|
driver_button_refresh(package, driver_button);
|
||||||
|
} else {
|
||||||
|
driver_button_refresh(package, driver_button);
|
||||||
|
let _error_command = Command::new("zenity")
|
||||||
|
.args(["--error", "--text", "There was an error instaling", package])
|
||||||
|
.spawn()
|
||||||
|
.expect("x-terminal-emulator command failed to start");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn driver_button_refresh(driver: &str, driver_button: &Button) {
|
||||||
|
let driver_command = Command::new("dpkg")
|
||||||
|
.args(["-s", driver])
|
||||||
|
.output()
|
||||||
|
.unwrap();
|
||||||
|
if driver_command.status.success() {
|
||||||
|
println!("hshsahsa");
|
||||||
|
driver_button.set_icon_name("user-trash-symbolic");
|
||||||
|
} else {
|
||||||
|
println!("hshsahsasfgfd");
|
||||||
|
driver_button.set_icon_name("go-down-symbolic");
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user