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>
|
2013-05-28 20:07:43 +00:00
|
|
|
#include "models.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();
|
2014-02-28 04:09:57 +00:00
|
|
|
void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
|
|
|
|
void currentChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
2013-06-06 02:22:08 +00:00
|
|
|
void reload(DiveTripModel::Layout layout, bool forceSort = true);
|
2014-02-28 04:09:57 +00:00
|
|
|
bool eventFilter(QObject *, QEvent *);
|
2013-06-05 06:41:52 +00:00
|
|
|
void unselectDives();
|
2014-11-04 01:52:04 +00:00
|
|
|
void clearTripSelection();
|
2013-11-16 20:41:47 +00:00
|
|
|
void selectDive(int dive_table_idx, bool scrollto = false, bool toggle = false);
|
2014-02-28 04:09:57 +00:00
|
|
|
void selectDives(const QList<int> &newDiveSelection);
|
2013-11-14 08:52:03 +00:00
|
|
|
void rememberSelection();
|
|
|
|
void restoreSelection();
|
2013-06-06 00:06:42 +00:00
|
|
|
void contextMenuEvent(QContextMenuEvent *event);
|
2014-02-28 04:09:57 +00:00
|
|
|
QList<dive_trip_t *> selectedTrips();
|
|
|
|
public
|
|
|
|
slots:
|
2013-05-26 17:12:45 +00:00
|
|
|
void toggleColumnVisibilityByIndex();
|
|
|
|
void reloadHeaderActions();
|
2013-05-28 20:07:43 +00:00
|
|
|
void headerClicked(int);
|
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();
|
2013-06-06 00:06:42 +00:00
|
|
|
void testSlot();
|
2013-06-12 17:14:25 +00:00
|
|
|
void fixMessyQtModelBehaviour();
|
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();
|
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();
|
2014-02-18 23:26:36 +00:00
|
|
|
static QString lastUsedImageDir();
|
2013-06-14 16:17:46 +00:00
|
|
|
|
2013-06-19 17:20:16 +00:00
|
|
|
signals:
|
2013-05-14 11:18:26 +00:00
|
|
|
void currentDiveChanged(int divenr);
|
2013-06-06 00:06:42 +00:00
|
|
|
|
2013-05-14 01:14:59 +00:00
|
|
|
private:
|
|
|
|
bool mouseClickSelection;
|
2013-11-08 23:08:14 +00:00
|
|
|
QList<int> expandedRows;
|
2013-11-05 05:09:08 +00:00
|
|
|
int sortColumn;
|
|
|
|
Qt::SortOrder currentOrder;
|
2013-05-29 19:46:27 +00:00
|
|
|
DiveTripModel::Layout currentLayout;
|
2013-06-06 00:06:42 +00:00
|
|
|
QModelIndex contextMenuIndex;
|
2014-05-25 04:03:18 +00:00
|
|
|
bool dontEmitDiveChangedSignal;
|
2014-05-28 22:03:10 +00:00
|
|
|
bool selectionSaved;
|
2013-11-26 17:44:18 +00:00
|
|
|
|
|
|
|
/* if dive_trip_t is null, there's no problem. */
|
|
|
|
QMultiHash<dive_trip_t *, int> selectedDives;
|
2013-06-27 05:16:40 +00:00
|
|
|
void merge_trip(const QModelIndex &a, const int offset);
|
2013-11-08 22:30:17 +00:00
|
|
|
void setupUi();
|
2013-11-08 23:08:14 +00:00
|
|
|
void backupExpandedRows();
|
|
|
|
void restoreExpandedRows();
|
2013-11-13 18:59:56 +00:00
|
|
|
int lastVisibleColumn();
|
2014-02-28 04:09:57 +00:00
|
|
|
void selectTrip(dive_trip_t *trip);
|
|
|
|
void updateLastUsedImageDir(const QString &s);
|
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);
|
2013-04-12 07:24:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DIVELISTVIEW_H
|