GstPipelineStudio/src/main.rs

36 lines
720 B
Rust
Raw Normal View History

2021-11-17 11:19:18 +00:00
// main.rs
//
// Copyright 2021 Stéphane Cerveau <scerveau@collabora.com>
//
// This file is part of GstPipelineStudio
2021-11-17 11:19:18 +00:00
//
// SPDX-License-Identifier: GPL-3.0-only
2021-11-19 11:34:19 +00:00
#[macro_use]
mod macros;
mod app;
mod common;
mod config;
mod graphmanager;
mod session;
mod ui;
#[macro_use]
mod logger;
mod gps;
mod settings;
2021-10-22 11:00:05 +00:00
use gtk::prelude::*;
2021-11-19 11:34:19 +00:00
use crate::app::GPSApp;
use crate::common::init;
2021-10-12 08:33:51 +00:00
fn main() {
2021-10-22 11:00:05 +00:00
// gio::resources_register_include!("compiled.gresource").unwrap();
init().expect("Unable to init app");
let application = gtk::Application::new(Some(config::APP_ID), Default::default());
2021-11-19 11:34:19 +00:00
application.connect_startup(|application| {
GPSApp::on_startup(application);
});
2021-10-22 11:00:05 +00:00
application.run();
2021-10-12 08:33:51 +00:00
}