2017-04-27 18:26:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-04-14 03:44:02 +00:00
|
|
|
/*
|
|
|
|
* divelistview.h
|
|
|
|
*
|
|
|
|
* header file for the dive list of Subsurface
|
|
|
|
*
|
|
|
|
*/
|
2013-04-12 07:24:07 +00:00
|
|
|
#ifndef DIVELISTVIEW_H
|
|
|
|
#define DIVELISTVIEW_H
|
|
|
|
|
|
|
|
/*! A view subclass for use with dives
|
|
|
|
Note: calling this a list view might be misleading?
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QTreeView>
|
2014-02-09 17:18:54 +00:00
|
|
|
#include <QLineEdit>
|
2015-04-24 15:10:55 +00:00
|
|
|
#include <QNetworkAccessManager>
|
2016-04-05 05:02:03 +00:00
|
|
|
#include "qt-models/divetripmodel.h"
|
2019-02-24 21:26:08 +00:00
|
|
|
#include "core/subsurface-qt/DiveListNotifier.h"
|
2013-04-12 07:24:07 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class DiveListView : public QTreeView {
|
2013-05-14 11:18:26 +00:00
|
|
|
Q_OBJECT
|
2013-04-12 07:24:07 +00:00
|
|
|
public:
|
|
|
|
DiveListView(QWidget *parent = 0);
|
2013-11-08 22:30:17 +00:00
|
|
|
~DiveListView();
|
2017-01-28 11:16:45 +00:00
|
|
|
void mouseDoubleClickEvent(QMouseEvent * event);
|
2014-02-28 04:09:57 +00:00
|
|
|
void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
|
|
|
|
void currentChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
2018-11-04 16:54:38 +00:00
|
|
|
void setSortOrder(int i, Qt::SortOrder order); // Call to set sort order
|
|
|
|
void reload(); // Call to reload model data
|
2014-02-28 04:09:57 +00:00
|
|
|
bool eventFilter(QObject *, QEvent *);
|
2013-06-05 06:41:52 +00:00
|
|
|
void unselectDives();
|
2019-11-28 14:49:49 +00:00
|
|
|
void selectDive(QModelIndex index, bool scrollto = false);
|
|
|
|
void selectDive(int dive_table_idx, bool scrollto = false);
|
2014-02-28 04:09:57 +00:00
|
|
|
void selectDives(const QList<int> &newDiveSelection);
|
2013-06-06 00:06:42 +00:00
|
|
|
void contextMenuEvent(QContextMenuEvent *event);
|
2019-05-31 14:09:14 +00:00
|
|
|
QList<dive_trip *> selectedTrips();
|
2018-06-09 14:24:39 +00:00
|
|
|
static QString lastUsedImageDir();
|
2018-06-10 14:40:23 +00:00
|
|
|
static void updateLastUsedImageDir(const QString &s);
|
2019-06-23 10:46:42 +00:00
|
|
|
signals:
|
|
|
|
void divesSelected();
|
2014-02-28 04:09:57 +00:00
|
|
|
public
|
|
|
|
slots:
|
2013-05-26 17:12:45 +00:00
|
|
|
void toggleColumnVisibilityByIndex();
|
|
|
|
void reloadHeaderActions();
|
2018-11-04 16:54:38 +00:00
|
|
|
void sortIndicatorChanged(int index, Qt::SortOrder order);
|
2013-06-06 00:06:42 +00:00
|
|
|
void removeFromTrip();
|
2013-06-06 01:37:18 +00:00
|
|
|
void deleteDive();
|
2013-12-07 01:40:59 +00:00
|
|
|
void markDiveInvalid();
|
2018-09-29 20:13:44 +00:00
|
|
|
void rowsInserted(const QModelIndex &parent, int start, int end) override;
|
|
|
|
void reset() override;
|
2013-06-27 05:16:40 +00:00
|
|
|
void mergeTripAbove();
|
|
|
|
void mergeTripBelow();
|
2013-11-15 02:32:19 +00:00
|
|
|
void newTripAbove();
|
2013-11-17 23:36:57 +00:00
|
|
|
void addToTripAbove();
|
2014-03-20 06:42:20 +00:00
|
|
|
void addToTripBelow();
|
2013-09-24 04:57:28 +00:00
|
|
|
void mergeDives();
|
2015-10-02 01:17:37 +00:00
|
|
|
void splitDives();
|
2014-05-19 21:11:32 +00:00
|
|
|
void renumberDives();
|
2013-11-18 13:53:05 +00:00
|
|
|
void shiftTimes();
|
2014-01-27 13:44:26 +00:00
|
|
|
void loadImages();
|
2015-04-24 15:10:55 +00:00
|
|
|
void loadWebImages();
|
2019-06-23 09:13:41 +00:00
|
|
|
void diveSelectionChanged(const QVector<QModelIndex> &indexes);
|
2018-08-14 13:12:21 +00:00
|
|
|
void currentDiveChanged(QModelIndex index);
|
2019-02-24 21:26:08 +00:00
|
|
|
void tripChanged(dive_trip *trip, TripField);
|
2013-05-14 01:14:59 +00:00
|
|
|
private:
|
2019-11-27 23:14:14 +00:00
|
|
|
void setSelection(const QRect &rect, QItemSelectionModel::SelectionFlags flags) override;
|
|
|
|
void selectAll() override;
|
|
|
|
void selectionChangeDone();
|
2018-12-27 09:06:11 +00:00
|
|
|
DiveTripModelBase::Layout currentLayout;
|
2013-06-06 00:06:42 +00:00
|
|
|
QModelIndex contextMenuIndex;
|
2018-07-25 18:40:47 +00:00
|
|
|
// Remember the initial column widths, to avoid writing unchanged widths to the settings
|
|
|
|
QVector<int> initialColumnWidths;
|
2013-11-26 17:44:18 +00:00
|
|
|
|
2018-12-27 09:06:11 +00:00
|
|
|
void resetModel(); // Call after model changed
|
2013-06-27 05:16:40 +00:00
|
|
|
void merge_trip(const QModelIndex &a, const int offset);
|
2018-07-26 16:03:07 +00:00
|
|
|
void setColumnWidths();
|
2018-07-25 19:23:19 +00:00
|
|
|
void calculateInitialColumnWidth(int col);
|
2019-11-28 20:55:26 +00:00
|
|
|
std::vector<int> backupExpandedRows();
|
|
|
|
void restoreExpandedRows(const std::vector<int> &);
|
2013-11-13 18:59:56 +00:00
|
|
|
int lastVisibleColumn();
|
2019-05-31 14:09:14 +00:00
|
|
|
void selectTrip(dive_trip *trip);
|
2014-02-12 15:46:17 +00:00
|
|
|
void updateLastImageTimeOffset(int offset);
|
|
|
|
int lastImageTimeOffset();
|
2014-08-21 19:20:03 +00:00
|
|
|
void addToTrip(int delta);
|
2015-04-24 15:10:55 +00:00
|
|
|
void matchImagesToDives(QStringList fileNames);
|
|
|
|
void loadImageFromURL(QUrl url);
|
|
|
|
QNetworkAccessManager manager;
|
2013-04-12 07:24:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DIVELISTVIEW_H
|