Yoda/src/main.rs

49 lines
1.2 KiB
Rust
Raw Normal View History

2024-09-20 18:02:10 +03:00
mod browser;
2024-09-18 20:33:29 +03:00
2024-09-21 14:21:39 +03:00
use std::fs;
2024-09-20 18:02:10 +03:00
use gtk::prelude::{ApplicationExt, ApplicationExtManual, GtkApplicationExt, GtkWindowExt};
2024-09-20 18:02:10 +03:00
use gtk::{glib, Application};
2024-09-18 16:24:25 +03:00
2024-09-20 18:02:10 +03:00
fn main() -> glib::ExitCode {
2024-09-21 14:21:39 +03:00
// Init meta
const APP_ID: &str = "io.github.yggverse.Yoda";
2024-09-21 20:48:12 +03:00
// Init profile directory
let mut fs = gtk::glib::user_config_dir();
2024-09-21 14:21:39 +03:00
2024-09-21 20:48:12 +03:00
fs.push(APP_ID);
2024-09-21 14:21:39 +03:00
2024-09-21 20:48:12 +03:00
if let Err(e) = fs::create_dir_all(&fs) {
2024-09-21 15:21:40 +03:00
panic!("Failed to create profile directory: {e}")
2024-09-21 14:21:39 +03:00
}
2024-09-21 20:48:12 +03:00
// Init profile database
let mut db = fs.clone();
db.push("database.sqlite3");
let db = match sqlite::open(db) {
Ok(db) => db,
Err(e) => panic!("Failed to connect profile database: {e}"),
};
2024-09-19 17:06:40 +03:00
// Init app
2024-09-21 14:21:39 +03:00
let app = Application::builder().application_id(APP_ID).build();
2024-09-18 16:24:25 +03:00
2024-09-19 17:06:40 +03:00
// Init accels
2024-09-20 18:02:10 +03:00
app.set_accels_for_action("win.tab_append", &["<Ctrl>t"]);
app.set_accels_for_action("win.tab_close", &["<Ctrl>q"]);
app.set_accels_for_action("win.debug", &["<Ctrl>i"]);
app.set_accels_for_action("win.quit", &["<Ctrl>Escape"]);
2024-09-19 17:06:40 +03:00
// Create new window
2024-09-21 20:48:12 +03:00
app.connect_activate(move |app| {
browser::new(&app, &db, 640, 480).present();
2024-09-20 18:02:10 +03:00
});
2024-09-18 16:24:25 +03:00
2024-09-19 17:06:40 +03:00
// Start
2024-09-18 16:24:25 +03:00
app.run()
2024-09-20 18:02:10 +03:00
}