forked from GokuMK/TSRE5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CELoadWindow.h
52 lines (42 loc) · 1.05 KB
/
CELoadWindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* This file is part of TSRE5.
*
* TSRE5 - train sim game engine and MSTS/OR Editors.
* Copyright (C) 2016 Piotr Gadecki <[email protected]>
*
* Licensed under GNU General Public License 3.0 or later.
*
* See LICENSE.md or https://www.gnu.org/licenses/gpl.html
*/
#ifndef CELOADWINDOW_H
#define CELOADWINDOW_H
#include <QtWidgets>
class PreciseTileCoordinate;
class IghCoordinate;
class LatitudeLongitudeCoordinate;
class CELoadWindow : public QWidget {
Q_OBJECT
public:
CELoadWindow();
public slots:
void exitNow();
void handleBrowseButton();
void routeLoad();
void dirSelected();
signals:
void showMainWindow();
private:
void listRoutes();
void listInfo();
QListWidget recentDirs;
//QListWidget routeList;
QPushButton *browse;
QPushButton *load;
QPushButton *neww;
QPushButton *exit;
QLineEdit *nowaTrasa;
QWidget* nowa;
QWidget* info;
QLineEdit conNumber;
QLineEdit trainsNumber;
};
#endif /* CELOADWINDOW_H */