29 lines
582 B
C++
29 lines
582 B
C++
//
|
|
// Created by selim on 03.01.2022.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_MAINWINDOW_H
|
|
#define AUTOCAT_GNOME_MAINWINDOW_H
|
|
|
|
#include "../gtkpp/Window.h"
|
|
#include "../gtkpp/Leaflet.h"
|
|
#include "../gtkpp/Button.h"
|
|
#include "../gtkpp/ListView.h"
|
|
#include "../models/VehiclesListFactory.h"
|
|
|
|
class MainWindow: public gtkpp::Window {
|
|
private:
|
|
gtkpp::Leaflet _leaflet;
|
|
gtkpp::Button _addNumberButton;
|
|
|
|
VehiclesListFactory _vehiclesListFactory;
|
|
gtkpp::ListView _vehiclesListView;
|
|
|
|
public:
|
|
explicit MainWindow();
|
|
void showCheckDialog();
|
|
};
|
|
|
|
|
|
#endif //AUTOCAT_GNOME_MAINWINDOW_H
|