2021-11-17 11:19:18 +00:00
|
|
|
// main.rs
|
|
|
|
//
|
|
|
|
// Copyright 2021 Tom A. Wagner <tom.a.wagner@protonmail.com>
|
|
|
|
// Copyright 2021 Stéphane Cerveau <scerveau@collabora.com>
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
2021-11-19 11:34:19 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod macros;
|
|
|
|
mod app;
|
2021-12-07 11:11:28 +00:00
|
|
|
mod common;
|
2021-11-25 15:13:40 +00:00
|
|
|
mod graphmanager;
|
2022-01-04 16:48:32 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod logger;
|
2021-11-17 15:15:16 +00:00
|
|
|
mod pipeline;
|
2021-12-08 13:15:22 +00:00
|
|
|
mod plugindialogs;
|
2021-12-21 16:37:17 +00:00
|
|
|
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;
|
2021-12-07 11:11:28 +00:00
|
|
|
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();
|
2021-12-07 11:11:28 +00:00
|
|
|
init().expect("Unable to init app");
|
|
|
|
let application = gtk::Application::new(Some(common::APPLICATION_NAME), 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
|
|
|
}
|