2017-04-27 18:26:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-04-14 03:44:02 +00:00
|
|
|
/*
|
|
|
|
* mainwindow.h
|
|
|
|
*
|
|
|
|
* header file for the main window of Subsurface
|
|
|
|
*
|
|
|
|
*/
|
2013-04-07 22:20:43 +00:00
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
2013-05-12 13:54:34 +00:00
|
|
|
#include <QAction>
|
2013-12-05 12:02:25 +00:00
|
|
|
#include <QUrl>
|
2015-02-11 18:14:45 +00:00
|
|
|
#include <QUuid>
|
2015-09-09 20:02:39 +00:00
|
|
|
#include <QProgressDialog>
|
2019-04-13 08:54:06 +00:00
|
|
|
#include <memory>
|
2013-04-07 22:20:43 +00:00
|
|
|
|
2013-10-03 18:54:24 +00:00
|
|
|
#include "ui_mainwindow.h"
|
2017-11-27 16:36:21 +00:00
|
|
|
#include "ui_plannerDetails.h"
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "desktop-widgets/notificationwidget.h"
|
2020-09-26 09:40:54 +00:00
|
|
|
#include "desktop-widgets/filterwidget.h"
|
2019-05-10 17:51:43 +00:00
|
|
|
#include "core/applicationstate.h"
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "core/gpslocation.h"
|
2019-11-17 17:13:55 +00:00
|
|
|
#include "core/dive.h"
|
2020-02-18 01:16:11 +00:00
|
|
|
#include "core/subsurface-qt/divelistnotifier.h"
|
2013-10-03 18:54:24 +00:00
|
|
|
|
2017-11-30 10:52:42 +00:00
|
|
|
#define NUM_RECENT_FILES 4
|
|
|
|
|
2013-04-25 23:44:06 +00:00
|
|
|
class QSortFilterProxyModel;
|
2013-04-12 07:24:07 +00:00
|
|
|
class DiveTripModel;
|
2013-05-04 00:49:40 +00:00
|
|
|
class QItemSelection;
|
2013-05-19 03:09:36 +00:00
|
|
|
class DiveListView;
|
|
|
|
class MainTab;
|
2013-08-22 19:20:47 +00:00
|
|
|
class QWebView;
|
2018-08-29 10:08:47 +00:00
|
|
|
class QSettings;
|
2014-04-02 19:41:39 +00:00
|
|
|
class UpdateManager;
|
2014-06-30 20:45:52 +00:00
|
|
|
class UserManual;
|
2015-02-09 21:19:10 +00:00
|
|
|
class DivePlannerWidget;
|
2015-02-09 21:51:31 +00:00
|
|
|
class ProfileWidget2;
|
2015-02-09 22:37:17 +00:00
|
|
|
class PlannerDetails;
|
|
|
|
class PlannerSettingsWidget;
|
2015-05-17 19:13:41 +00:00
|
|
|
class LocationInformationWidget;
|
2013-04-07 22:20:43 +00:00
|
|
|
|
2015-08-21 01:24:49 +00:00
|
|
|
typedef std::pair<QByteArray, QVariant> WidgetProperty;
|
|
|
|
typedef QVector<WidgetProperty> PropertyList;
|
|
|
|
|
2019-09-27 23:26:54 +00:00
|
|
|
class MainWindow : public QMainWindow {
|
2014-02-28 04:09:57 +00:00
|
|
|
Q_OBJECT
|
2013-04-07 22:20:43 +00:00
|
|
|
public:
|
2014-02-28 04:09:57 +00:00
|
|
|
enum {
|
|
|
|
COLLAPSED,
|
|
|
|
EXPANDED
|
|
|
|
};
|
2015-02-10 18:15:51 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
enum CurrentState {
|
|
|
|
VIEWALL,
|
2017-07-14 22:51:23 +00:00
|
|
|
MAP_MAXIMIZED,
|
2014-02-28 04:09:57 +00:00
|
|
|
INFO_MAXIMIZED,
|
|
|
|
PROFILE_MAXIMIZED,
|
2018-05-03 17:19:54 +00:00
|
|
|
LIST_MAXIMIZED,
|
2014-02-28 04:09:57 +00:00
|
|
|
};
|
2013-06-12 18:54:55 +00:00
|
|
|
|
2013-04-07 22:20:43 +00:00
|
|
|
MainWindow();
|
2018-07-31 05:41:19 +00:00
|
|
|
~MainWindow();
|
2019-09-27 23:26:54 +00:00
|
|
|
static MainWindow *instance();
|
2017-11-30 10:52:42 +00:00
|
|
|
void loadRecentFiles();
|
|
|
|
void updateRecentFiles();
|
|
|
|
void updateRecentFilesMenu();
|
|
|
|
void addRecentFile(const QString &file, bool update);
|
2015-02-11 15:19:35 +00:00
|
|
|
LocationInformationWidget *locationInformationWidget();
|
2017-12-11 16:43:53 +00:00
|
|
|
void setTitle();
|
2013-04-09 08:35:44 +00:00
|
|
|
|
2013-09-09 08:59:03 +00:00
|
|
|
void loadFiles(const QStringList files);
|
|
|
|
void importFiles(const QStringList importFiles);
|
2014-03-11 16:30:58 +00:00
|
|
|
void setToolButtonsEnabled(bool enabled);
|
2014-06-03 08:06:18 +00:00
|
|
|
void printPlan();
|
2019-05-10 17:51:43 +00:00
|
|
|
void setApplicationState(ApplicationState state);
|
2015-08-18 08:03:51 +00:00
|
|
|
bool inPlanner();
|
2015-02-26 14:07:39 +00:00
|
|
|
NotificationWidget *getNotificationWidget();
|
2015-06-14 22:42:28 +00:00
|
|
|
void enableDisableCloudActions();
|
2018-09-17 07:08:06 +00:00
|
|
|
void enableDisableOtherDCsActions();
|
2019-03-16 10:35:44 +00:00
|
|
|
void editDiveSite(dive_site *ds);
|
2015-11-19 02:52:44 +00:00
|
|
|
|
2019-04-13 08:54:06 +00:00
|
|
|
std::unique_ptr<MainTab> mainTab;
|
2018-10-12 13:07:40 +00:00
|
|
|
PlannerDetails *plannerDetails;
|
|
|
|
PlannerSettingsWidget *divePlannerSettingsWidget;
|
|
|
|
ProfileWidget2 *graphics;
|
|
|
|
DivePlannerWidget *divePlannerWidget;
|
2018-10-12 14:13:42 +00:00
|
|
|
DiveListView *diveList;
|
2014-02-28 04:09:57 +00:00
|
|
|
private
|
|
|
|
slots:
|
2013-04-09 16:26:23 +00:00
|
|
|
/* file menu action */
|
2014-02-13 21:48:07 +00:00
|
|
|
void recentFileTriggered(bool checked);
|
2013-04-09 08:35:44 +00:00
|
|
|
void on_actionNew_triggered();
|
2013-04-09 16:26:23 +00:00
|
|
|
void on_actionOpen_triggered();
|
|
|
|
void on_actionSave_triggered();
|
|
|
|
void on_actionSaveAs_triggered();
|
|
|
|
void on_actionClose_triggered();
|
2015-06-01 05:11:27 +00:00
|
|
|
void on_actionCloudstorageopen_triggered();
|
|
|
|
void on_actionCloudstoragesave_triggered();
|
2018-01-03 10:46:21 +00:00
|
|
|
void on_actionCloudOnline_triggered();
|
2013-04-09 16:26:23 +00:00
|
|
|
void on_actionPrint_triggered();
|
|
|
|
void on_actionPreferences_triggered();
|
|
|
|
void on_actionQuit_triggered();
|
2015-02-26 13:44:27 +00:00
|
|
|
void on_actionHash_images_triggered();
|
2013-04-09 16:26:23 +00:00
|
|
|
|
|
|
|
/* log menu actions */
|
|
|
|
void on_actionDownloadDC_triggered();
|
2013-10-25 01:02:59 +00:00
|
|
|
void on_actionDivelogs_de_triggered();
|
2013-04-09 16:26:23 +00:00
|
|
|
void on_actionAddDive_triggered();
|
|
|
|
void on_actionRenumber_triggered();
|
|
|
|
void on_actionAutoGroup_triggered();
|
|
|
|
void on_actionYearlyStatistics_triggered();
|
|
|
|
|
|
|
|
/* view menu actions */
|
|
|
|
void on_actionViewList_triggered();
|
|
|
|
void on_actionViewProfile_triggered();
|
|
|
|
void on_actionViewInfo_triggered();
|
2017-07-14 22:48:53 +00:00
|
|
|
void on_actionViewMap_triggered();
|
2013-04-09 16:26:23 +00:00
|
|
|
void on_actionViewAll_triggered();
|
|
|
|
void on_actionPreviousDC_triggered();
|
|
|
|
void on_actionNextDC_triggered();
|
2014-01-14 17:36:07 +00:00
|
|
|
void on_actionFullScreen_triggered(bool checked);
|
2013-04-09 16:26:23 +00:00
|
|
|
|
|
|
|
/* other menu actions */
|
|
|
|
void on_actionAboutSubsurface_triggered();
|
|
|
|
void on_actionUserManual_triggered();
|
2013-06-20 21:48:21 +00:00
|
|
|
void on_actionDivePlanner_triggered();
|
2014-08-19 20:03:53 +00:00
|
|
|
void on_actionReplanDive_triggered();
|
2014-04-02 19:41:39 +00:00
|
|
|
void on_action_Check_for_Updates_triggered();
|
2013-04-09 08:35:44 +00:00
|
|
|
|
Dive list view: replace signal-magic by flag
In DiveListView, we have a very fundamental problem: When
On the one hand, we get informed of user-selection in the
DiveListView::selectionChanged() slot. This has to set the
correct flags in the C-backend.
On the other hand, sometimes we have to set the selection
programatically, e.g. when selecting a trip. This is done
by calling QItemSelectionModel::select().
But: this will *also* call into the above slot, in which
we can't tell whether it was a user interaction or an
internal call. This can lead to either infinite loops or
very inefficient behavior, because the current dive
is set numerous times.
The current code is aware of that and disconnects the
corresponding signal. This is scary, as these signals are
set internally by the model and view. Replace this
by a global "command executing" flag in DiveListNotifier.
The flag is set using a "marker" class, which resets the flag
once it goes out of scope (cf. RAII pattern).
In DiveListView, only process a selection if the flag is not
set. Otherwise simply call the QTreeView base class, to reflect
the new selection in the UI.
To have a common point for notifications of selection changes,
add such a signal to DiveListNotifier. This signal will be
used by the DiveListView as well as the Command-objects.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2018-08-01 17:23:43 +00:00
|
|
|
void selectionChanged();
|
2013-06-04 12:40:09 +00:00
|
|
|
void initialUiSetup();
|
2013-05-14 11:18:26 +00:00
|
|
|
|
2013-12-29 16:11:20 +00:00
|
|
|
void on_actionImportDiveLog_triggered();
|
2019-05-05 03:46:42 +00:00
|
|
|
void on_actionImportDiveSites_triggered();
|
2013-10-16 19:05:19 +00:00
|
|
|
|
2014-02-06 13:38:28 +00:00
|
|
|
/* TODO: Move those slots below to it's own class */
|
2014-05-20 16:33:32 +00:00
|
|
|
void on_actionExport_triggered();
|
2014-08-16 15:32:23 +00:00
|
|
|
void on_copy_triggered();
|
|
|
|
void on_paste_triggered();
|
2014-09-17 17:50:41 +00:00
|
|
|
void on_actionFilterTags_triggered();
|
2014-05-29 15:54:19 +00:00
|
|
|
void on_actionConfigure_Dive_Computer_triggered();
|
2015-02-11 15:58:23 +00:00
|
|
|
void setDefaultState();
|
2015-06-16 13:04:34 +00:00
|
|
|
void setAutomaticTitle();
|
2015-09-09 20:02:39 +00:00
|
|
|
void cancelCloudStorageOperation();
|
2018-03-17 09:48:45 +00:00
|
|
|
void unsetProfHR();
|
|
|
|
void unsetProfTissues();
|
2014-05-29 15:54:19 +00:00
|
|
|
|
2013-04-27 09:09:57 +00:00
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent *);
|
|
|
|
|
2015-08-25 21:27:19 +00:00
|
|
|
signals:
|
2018-01-28 21:08:30 +00:00
|
|
|
void showError(QString message);
|
2015-08-25 21:27:19 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
public
|
|
|
|
slots:
|
2014-06-04 20:41:50 +00:00
|
|
|
void turnOffNdlTts();
|
2013-05-26 18:33:45 +00:00
|
|
|
void readSettings();
|
2020-05-05 08:37:02 +00:00
|
|
|
void refreshDisplay();
|
2013-06-27 17:48:03 +00:00
|
|
|
void showProfile();
|
2015-09-23 02:55:48 +00:00
|
|
|
void refreshProfile();
|
2013-11-01 15:48:34 +00:00
|
|
|
void editCurrentDive();
|
2014-05-28 18:43:32 +00:00
|
|
|
void planCanceled();
|
2014-05-28 18:54:04 +00:00
|
|
|
void planCreated();
|
2014-08-04 15:58:21 +00:00
|
|
|
void setEnabledToolbar(bool arg1);
|
2020-04-13 13:09:35 +00:00
|
|
|
void setPlanNotes(QString plan);
|
2015-11-05 19:12:22 +00:00
|
|
|
// Some shortcuts like "change DC" or "copy/paste dive components"
|
|
|
|
// should only be enabled when the profile's visible.
|
|
|
|
void disableShortcuts(bool disablePaste = true);
|
|
|
|
void enableShortcuts();
|
2019-03-16 10:51:42 +00:00
|
|
|
void startDiveSiteEdit();
|
2017-01-02 06:23:39 +00:00
|
|
|
|
2013-04-07 22:20:43 +00:00
|
|
|
private:
|
2013-10-03 18:54:25 +00:00
|
|
|
Ui::MainWindow ui;
|
2020-09-26 09:40:54 +00:00
|
|
|
FilterWidget filterWidget;
|
2013-05-12 13:54:34 +00:00
|
|
|
QAction *actionNextDive;
|
|
|
|
QAction *actionPreviousDive;
|
2018-07-30 09:15:08 +00:00
|
|
|
QAction *undoAction;
|
|
|
|
QAction *redoAction;
|
2018-05-31 14:36:34 +00:00
|
|
|
#ifndef NO_USERMANUAL
|
2014-06-30 20:45:52 +00:00
|
|
|
UserManual *helpView;
|
2018-05-31 14:36:34 +00:00
|
|
|
#endif
|
2013-11-07 16:37:27 +00:00
|
|
|
CurrentState state;
|
2018-05-03 17:19:54 +00:00
|
|
|
CurrentState stateBeforeEdit;
|
2017-10-27 12:52:27 +00:00
|
|
|
QString filter_open();
|
|
|
|
QString filter_import();
|
2019-05-05 03:46:42 +00:00
|
|
|
QString filter_import_dive_sites();
|
2019-09-27 23:26:54 +00:00
|
|
|
static MainWindow *m_Instance;
|
2015-06-12 13:53:00 +00:00
|
|
|
QString displayedFilename(QString fullFilename);
|
2013-04-13 13:17:59 +00:00
|
|
|
bool askSaveChanges();
|
2014-06-09 02:46:43 +00:00
|
|
|
bool okToClose(QString message);
|
|
|
|
void closeCurrentFile();
|
2018-01-03 16:11:52 +00:00
|
|
|
void setCurrentFile(const char *f);
|
|
|
|
void updateCloudOnlineStatus();
|
2015-09-09 20:02:39 +00:00
|
|
|
void showProgressBar();
|
|
|
|
void hideProgressBar();
|
2013-04-27 09:09:57 +00:00
|
|
|
void writeSettings();
|
2014-03-14 17:19:23 +00:00
|
|
|
int file_save();
|
|
|
|
int file_save_as();
|
2013-11-07 16:37:27 +00:00
|
|
|
void beginChangeState(CurrentState s);
|
|
|
|
void saveSplitterSizes();
|
2017-12-29 11:01:21 +00:00
|
|
|
void toggleCollapsible(bool toggle);
|
2019-02-10 00:01:50 +00:00
|
|
|
void showFilterIfEnabled();
|
2014-02-28 04:09:57 +00:00
|
|
|
void updateLastUsedDir(const QString &s);
|
2018-05-03 17:19:54 +00:00
|
|
|
void enterState(CurrentState);
|
2014-03-11 21:54:28 +00:00
|
|
|
bool filesAsArguments;
|
2014-04-02 19:41:39 +00:00
|
|
|
UpdateManager *updateManager;
|
2018-10-13 06:57:46 +00:00
|
|
|
LocationInformationWidget *diveSiteEdit;
|
2014-05-25 18:19:36 +00:00
|
|
|
|
|
|
|
bool plannerStateClean();
|
2015-10-11 20:24:35 +00:00
|
|
|
void configureToolbar();
|
2015-11-09 20:05:30 +00:00
|
|
|
void setupSocialNetworkMenu();
|
2018-06-10 14:40:23 +00:00
|
|
|
QDialog *findMovedImagesDialog;
|
2014-08-16 15:32:23 +00:00
|
|
|
struct dive copyPasteDive;
|
|
|
|
struct dive_components what;
|
2014-09-17 22:39:49 +00:00
|
|
|
QList<QAction *> profileToolbarActions;
|
2017-11-30 10:52:42 +00:00
|
|
|
QStringList recentFiles;
|
2017-11-30 16:44:32 +00:00
|
|
|
QAction *actionsRecent[NUM_RECENT_FILES];
|
2015-02-09 17:35:36 +00:00
|
|
|
|
2019-05-10 18:51:25 +00:00
|
|
|
enum {
|
|
|
|
FLAG_NONE = 0,
|
|
|
|
FLAG_DISABLED = 1
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Quadrant {
|
|
|
|
QWidget *widget;
|
|
|
|
int flags;
|
2015-02-09 17:35:36 +00:00
|
|
|
};
|
2015-08-21 01:24:49 +00:00
|
|
|
|
2019-05-10 18:51:25 +00:00
|
|
|
struct Quadrants {
|
|
|
|
Quadrant topLeft;
|
|
|
|
Quadrant topRight;
|
|
|
|
Quadrant bottomLeft;
|
|
|
|
Quadrant bottomRight;
|
2015-08-21 01:24:49 +00:00
|
|
|
};
|
|
|
|
|
2019-05-10 18:51:25 +00:00
|
|
|
Quadrants applicationState[(size_t)ApplicationState::Count];
|
|
|
|
static void setQuadrant(const Quadrant &, QStackedWidget *);
|
|
|
|
static void addWidgets(const Quadrant &, QStackedWidget *);
|
|
|
|
void registerApplicationState(ApplicationState state, Quadrants q);
|
2015-08-21 01:24:49 +00:00
|
|
|
|
2015-11-19 02:52:44 +00:00
|
|
|
GpsLocation *locationProvider;
|
2017-01-02 06:19:08 +00:00
|
|
|
QMenu *connections;
|
2017-04-16 09:41:29 +00:00
|
|
|
QAction *share_on_fb;
|
2020-02-18 01:16:11 +00:00
|
|
|
void divesChanged(const QVector<dive *> &dives, DiveField field);
|
2013-04-07 22:20:43 +00:00
|
|
|
};
|
|
|
|
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // MAINWINDOW_H
|