1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/gui.h

197 lines
4.1 KiB
C
Raw Normal View History

2015-10-05 01:43:48 +02:00
#ifndef GUI_H
#define GUI_H
#include <QMainWindow>
#include <QString>
#include <QList>
#include <QDate>
2016-05-25 23:27:07 +02:00
#include <QPrinter>
2016-09-21 23:48:11 +02:00
#include "units.h"
#include "graph.h"
2015-10-05 01:43:48 +02:00
#include "poi.h"
2016-05-27 22:45:58 +02:00
#include "margins.h"
2015-10-05 01:43:48 +02:00
class QMenu;
class QToolBar;
class QTabWidget;
class QActionGroup;
class QAction;
class QLabel;
class QSignalMapper;
class QPrinter;
2015-10-20 22:18:41 +02:00
class FileBrowser;
2016-06-24 00:55:44 +02:00
class GraphTab;
2016-09-26 21:01:58 +02:00
class PathView;
2015-11-23 02:37:08 +01:00
class Map;
2015-10-05 01:43:48 +02:00
class GUI : public QMainWindow
{
Q_OBJECT
public:
GUI(QWidget *parent = 0);
2016-05-13 18:48:42 +02:00
~GUI();
2015-10-05 01:43:48 +02:00
bool openFile(const QString &fileName);
private slots:
void about();
2015-10-21 01:09:17 +02:00
void keys();
void dataSources();
void printFile();
void exportFile();
2015-10-05 01:43:48 +02:00
void openFile();
2016-03-23 20:56:39 +01:00
void closeAll();
2015-10-20 22:18:41 +02:00
void reloadFile();
2015-10-05 01:43:48 +02:00
void openPOIFile();
void closePOIFiles();
void showMap(bool checked);
void showGraphs(bool checked);
void showToolbars(bool checked);
2016-04-05 09:10:19 +02:00
void showFullscreen(bool checked);
void showTracks(bool show);
void showRoutes(bool show);
2016-04-01 19:25:34 +02:00
void clearMapCache();
2016-04-08 22:33:19 +02:00
void nextMap();
void prevMap();
2015-10-20 22:18:41 +02:00
2015-11-23 02:37:08 +01:00
void mapChanged(int);
2015-10-05 01:43:48 +02:00
void graphChanged(int);
void poiFileChecked(int);
2015-10-05 01:43:48 +02:00
2015-12-18 22:21:11 +01:00
void next();
void prev();
void last();
void first();
2016-09-21 23:48:11 +02:00
void setMetricUnits() {setUnits(Metric);}
void setImperialUnits() {setUnits(Imperial);}
void setDistanceGraph() {setGraphType(Distance);}
void setTimeGraph() {setGraphType(Time);}
2015-12-19 20:23:07 +01:00
2016-03-30 20:50:51 +02:00
void sliderPositionChanged(qreal pos);
2015-10-05 01:43:48 +02:00
private:
typedef QPair<QDate, QDate> DateRange;
2016-05-13 18:48:42 +02:00
void loadMaps();
void loadPOIs();
2016-03-23 20:56:39 +01:00
void closeFiles();
void plot(QPrinter *printer);
2015-11-23 02:37:08 +01:00
2016-03-05 22:42:22 +01:00
QAction *createPOIFileAction(int index);
void createPOIFilesActions();
2016-03-05 22:42:22 +01:00
void createMapActions();
2015-10-05 01:43:48 +02:00
void createActions();
void createMenus();
void createToolBars();
void createStatusBar();
void createPathView();
void createGraphTabs();
2015-10-05 01:43:48 +02:00
bool openPOIFile(const QString &fileName);
2015-10-20 22:18:41 +02:00
bool loadFile(const QString &fileName);
void exportFile(const QString &fileName);
2015-10-20 22:18:41 +02:00
void updateStatusBarInfo();
2016-04-19 08:51:11 +02:00
void updateWindowTitle();
2015-12-18 22:21:11 +01:00
void updateNavigationActions();
2016-03-23 09:38:22 +01:00
void updateGraphTabs();
2016-03-25 09:50:19 +01:00
void updateTrackView();
2015-10-17 12:08:30 +02:00
2016-09-21 23:48:11 +02:00
void setUnits(Units units);
void setGraphType(GraphType type);
2016-04-26 09:39:16 +02:00
qreal distance();
qreal time();
2016-04-26 20:55:29 +02:00
int mapIndex(const QString &name);
2016-04-26 09:39:16 +02:00
void readSettings();
void writeSettings();
2015-10-05 01:43:48 +02:00
2016-09-21 23:48:11 +02:00
void keyPressEvent(QKeyEvent *event);
void closeEvent(QCloseEvent *event);
2016-10-04 10:16:46 +02:00
void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event);
2016-09-21 23:48:11 +02:00
2015-10-05 01:43:48 +02:00
QToolBar *_fileToolBar;
2015-11-23 02:37:08 +01:00
QToolBar *_showToolBar;
2015-12-18 22:21:11 +01:00
QToolBar *_navigationToolBar;
2016-08-09 01:16:19 +02:00
QMenu *_poiFilesMenu;
2015-10-05 01:43:48 +02:00
QActionGroup *_fileActionGroup;
2015-12-18 22:21:11 +01:00
QActionGroup *_navigationActionGroup;
2015-10-05 01:43:48 +02:00
QAction *_exitAction;
2015-10-21 01:09:17 +02:00
QAction *_keysAction;
QAction *_dataSourcesAction;
2015-10-05 01:43:48 +02:00
QAction *_aboutAction;
QAction *_aboutQtAction;
QAction *_printFileAction;
QAction *_exportFileAction;
2015-10-05 01:43:48 +02:00
QAction *_openFileAction;
QAction *_closeFileAction;
2015-10-20 22:18:41 +02:00
QAction *_reloadFileAction;
2015-10-05 01:43:48 +02:00
QAction *_openPOIAction;
QAction *_closePOIAction;
2015-10-05 01:43:48 +02:00
QAction *_showPOIAction;
QAction *_overlapPOIAction;
2016-08-09 01:16:19 +02:00
QAction *_showPOILabelsAction;
2015-11-23 02:37:08 +01:00
QAction *_showMapAction;
2016-04-05 09:10:19 +02:00
QAction *_fullscreenAction;
2016-04-01 19:25:34 +02:00
QAction *_clearMapCacheAction;
QAction *_showGraphsAction;
2016-09-19 00:56:10 +02:00
QAction *_distanceGraphAction;
QAction *_timeGraphAction;
QAction *_showToolbarsAction;
2015-12-18 22:21:11 +01:00
QAction *_nextAction;
QAction *_prevAction;
QAction *_lastAction;
QAction *_firstAction;
2015-12-19 20:23:07 +01:00
QAction *_metricUnitsAction;
QAction *_imperialUnitsAction;
2016-04-08 22:33:19 +02:00
QAction *_nextMapAction;
QAction *_prevMapAction;
2016-08-09 01:16:19 +02:00
QAction *_showTracksAction;
QAction *_showRoutesAction;
QAction *_showWaypointsAction;
QAction *_showWaypointLabelsAction;
2016-08-09 10:47:49 +02:00
QAction *_showRouteWaypointsAction;
2015-11-23 02:37:08 +01:00
QList<QAction*> _mapActions;
QList<QAction*> _poiFilesActions;
QSignalMapper *_poiFilesSM;
2015-10-05 01:43:48 +02:00
2015-10-14 02:54:36 +02:00
QLabel *_fileNameLabel;
QLabel *_distanceLabel;
QLabel *_timeLabel;
2015-10-05 01:43:48 +02:00
2016-09-26 21:01:58 +02:00
PathView *_pathView;
QTabWidget *_graphTabWidget;
2016-06-24 00:55:44 +02:00
QList<GraphTab*> _tabs;
2015-10-05 01:43:48 +02:00
POI _poi;
2015-11-23 02:37:08 +01:00
QList<Map*> _maps;
2015-10-05 01:43:48 +02:00
2015-10-20 22:18:41 +02:00
FileBrowser *_browser;
QList<QString> _files;
2015-11-23 02:37:08 +01:00
Map *_currentMap;
2015-10-14 02:54:36 +02:00
int _trackCount;
int _routeCount;
int _waypointCount;
qreal _trackDistance;
qreal _routeDistance;
2015-10-14 02:54:36 +02:00
qreal _time;
DateRange _dateRange;
2016-03-30 20:50:51 +02:00
qreal _sliderPos;
2016-04-05 09:10:19 +02:00
int _frameStyle;
bool _showGraphs;
2016-05-25 23:27:07 +02:00
QString _exportFileName;
QPrinter::PaperSize _exportPaperSize;
QPrinter::Orientation _exportOrientation;
2016-05-27 22:45:58 +02:00
MarginsF _exportMargins;
2015-10-05 01:43:48 +02:00
};
#endif // GUI_H