55 lines
1.8 KiB
Rust
55 lines
1.8 KiB
Rust
|
/*
|
||
|
Copyright 2023, Savanni D'Gerinel <savanni@luminescent-dreams.com>
|
||
|
|
||
|
This file is part of FitnessTrax.
|
||
|
|
||
|
FitnessTrax 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.
|
||
|
|
||
|
FitnessTrax 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 FitnessTrax. If not, see <https://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
use glib::Object;
|
||
|
use gtk::{prelude::*, subclass::prelude::*};
|
||
|
|
||
|
/// The historical view will show a window into the main database. It will show some version of
|
||
|
/// daily summaries, daily details, and will provide all functions the user may need for editing
|
||
|
/// records.
|
||
|
pub struct HistoricalViewPrivate {}
|
||
|
|
||
|
#[glib::object_subclass]
|
||
|
impl ObjectSubclass for HistoricalViewPrivate {
|
||
|
const NAME: &'static str = "HistoricalView";
|
||
|
type Type = HistoricalView;
|
||
|
type ParentType = gtk::Box;
|
||
|
|
||
|
fn new() -> Self {
|
||
|
Self {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl ObjectImpl for HistoricalViewPrivate {}
|
||
|
impl WidgetImpl for HistoricalViewPrivate {}
|
||
|
impl BoxImpl for HistoricalViewPrivate {}
|
||
|
|
||
|
glib::wrapper! {
|
||
|
pub struct HistoricalView(ObjectSubclass<HistoricalViewPrivate>) @extends gtk::Box, gtk::Widget;
|
||
|
}
|
||
|
|
||
|
impl HistoricalView {
|
||
|
pub fn new() -> Self {
|
||
|
let s: Self = Object::builder().build();
|
||
|
|
||
|
let label = gtk::Label::builder()
|
||
|
.label("Database has been configured and now it is time to show data")
|
||
|
.build();
|
||
|
s.append(&label);
|
||
|
s
|
||
|
}
|
||
|
}
|