2013-04-13 20:44:02 -07:00
|
|
|
/*
|
|
|
|
* maintab.h
|
|
|
|
*
|
|
|
|
* header file for the main tab of Subsurface
|
|
|
|
*
|
|
|
|
*/
|
2013-04-07 15:20:43 -07:00
|
|
|
#ifndef MAINTAB_H
|
|
|
|
#define MAINTAB_H
|
|
|
|
|
|
|
|
#include <QTabWidget>
|
2013-04-13 10:17:59 -03:00
|
|
|
#include <QDialog>
|
2013-08-16 13:31:52 -03:00
|
|
|
#include <QMap>
|
2013-04-13 10:17:59 -03:00
|
|
|
|
2013-10-03 11:54:24 -07:00
|
|
|
#include "ui_maintab.h"
|
2014-02-11 18:46:14 +01:00
|
|
|
#include "completionmodels.h"
|
2014-06-26 14:01:31 -03:00
|
|
|
#include "dive.h"
|
2013-04-07 15:20:43 -07:00
|
|
|
|
2014-06-26 14:01:31 -03:00
|
|
|
class WeightModel;
|
|
|
|
class CylindersModel;
|
2013-08-13 10:49:59 -03:00
|
|
|
class QCompleter;
|
2013-04-07 15:20:43 -07:00
|
|
|
|
2014-02-27 20:09:57 -08:00
|
|
|
struct Completers {
|
2013-08-13 10:49:59 -03:00
|
|
|
QCompleter *location;
|
|
|
|
QCompleter *divemaster;
|
|
|
|
QCompleter *buddy;
|
|
|
|
QCompleter *suit;
|
2013-11-02 02:20:02 +01:00
|
|
|
QCompleter *tags;
|
2013-08-13 10:49:59 -03:00
|
|
|
};
|
|
|
|
|
2014-02-27 20:09:57 -08:00
|
|
|
class MainTab : public QTabWidget {
|
2013-04-07 15:20:43 -07:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-27 20:09:57 -08:00
|
|
|
enum EditMode {
|
|
|
|
NONE,
|
|
|
|
DIVE,
|
|
|
|
TRIP,
|
|
|
|
ADD,
|
|
|
|
MANUALLY_ADDED_DIVE
|
|
|
|
};
|
2013-11-01 14:06:03 -04:00
|
|
|
|
2013-04-07 15:20:43 -07:00
|
|
|
MainTab(QWidget *parent);
|
2013-11-28 09:17:30 -02:00
|
|
|
~MainTab();
|
2013-04-13 10:17:59 -03:00
|
|
|
void clearStats();
|
|
|
|
void clearInfo();
|
|
|
|
void clearEquipment();
|
|
|
|
void reload();
|
2014-02-27 20:09:57 -08:00
|
|
|
bool eventFilter(QObject *, QEvent *);
|
2013-06-16 14:36:23 -03:00
|
|
|
void initialUiSetup();
|
2013-11-11 06:23:18 +09:00
|
|
|
bool isEditing();
|
2013-11-19 04:12:31 -08:00
|
|
|
void updateCoordinatesText(qreal lat, qreal lon);
|
2014-05-16 15:12:46 +09:00
|
|
|
void nextInputField(QKeyEvent *event);
|
2014-05-21 20:34:06 -03:00
|
|
|
signals:
|
|
|
|
void addDiveFinished();
|
|
|
|
|
2014-02-27 20:09:57 -08:00
|
|
|
public
|
|
|
|
slots:
|
2013-05-22 09:40:26 -03:00
|
|
|
void addCylinder_clicked();
|
|
|
|
void addWeight_clicked();
|
2013-11-19 23:08:20 -08:00
|
|
|
void updateDiveInfo(int dive = selected_dive);
|
2013-09-18 21:56:53 -03:00
|
|
|
void acceptChanges();
|
|
|
|
void rejectChanges();
|
2014-02-27 20:09:57 -08:00
|
|
|
void on_location_textChanged(const QString &text);
|
|
|
|
void on_coordinates_textChanged(const QString &text);
|
2014-01-19 19:30:47 +02:00
|
|
|
void on_divemaster_textChanged();
|
2014-01-15 22:35:14 +02:00
|
|
|
void on_buddy_textChanged();
|
2014-02-27 20:09:57 -08:00
|
|
|
void on_suit_textChanged(const QString &text);
|
2013-05-18 20:42:59 -03:00
|
|
|
void on_notes_textChanged();
|
2014-02-27 20:09:57 -08:00
|
|
|
void on_airtemp_textChanged(const QString &text);
|
|
|
|
void on_watertemp_textChanged(const QString &text);
|
2014-05-22 11:40:22 -07:00
|
|
|
void validate_temp_field(QLineEdit *tempField, const QString &text);
|
2014-06-26 14:57:25 -03:00
|
|
|
void on_dateEdit_dateChanged(const QDate &date);
|
2014-06-26 14:54:16 -03:00
|
|
|
void on_timeEdit_timeChanged(const QTime & time);
|
2013-05-18 20:42:59 -03:00
|
|
|
void on_rating_valueChanged(int value);
|
2013-05-20 06:25:16 -07:00
|
|
|
void on_visibility_valueChanged(int value);
|
2013-11-02 02:20:02 +01:00
|
|
|
void on_tagWidget_textChanged();
|
2014-02-27 20:09:57 -08:00
|
|
|
void editCylinderWidget(const QModelIndex &index);
|
|
|
|
void editWeightWidget(const QModelIndex &index);
|
2013-09-18 23:33:39 -05:00
|
|
|
void addDiveStarted();
|
2014-02-27 20:09:57 -08:00
|
|
|
void addMessageAction(QAction *action);
|
2013-12-03 21:44:48 +01:00
|
|
|
void hideMessage();
|
|
|
|
void closeMessage();
|
|
|
|
void displayMessage(QString str);
|
2013-11-01 11:48:34 -04:00
|
|
|
void enableEdition(EditMode newEditMode = NONE);
|
2013-11-28 09:17:30 -02:00
|
|
|
void toggleTriggeredColumn();
|
2014-04-05 11:03:45 -05:00
|
|
|
void updateTextLabels(bool showUnits = true);
|
2014-05-07 15:12:45 -07:00
|
|
|
QString trHemisphere(const char *orig);
|
2014-06-03 15:29:28 -07:00
|
|
|
void escDetected(void);
|
2014-06-27 16:17:33 +04:00
|
|
|
void photoDoubleClicked(const QString filePath);
|
2014-02-27 20:09:57 -08:00
|
|
|
|
2013-04-07 15:20:43 -07:00
|
|
|
private:
|
2013-10-03 11:54:25 -07:00
|
|
|
Ui::MainTab ui;
|
2013-04-13 10:17:59 -03:00
|
|
|
WeightModel *weightModel;
|
|
|
|
CylindersModel *cylindersModel;
|
2013-11-14 21:06:31 +09:00
|
|
|
EditMode editMode;
|
2014-02-11 18:46:14 +01:00
|
|
|
BuddyCompletionModel buddyModel;
|
|
|
|
DiveMasterCompletionModel diveMasterModel;
|
|
|
|
LocationCompletionModel locationModel;
|
|
|
|
SuitCompletionModel suitModel;
|
|
|
|
TagCompletionModel tagModel;
|
2014-06-02 19:50:42 -03:00
|
|
|
DivePictureModel *divePictureModel;
|
2014-06-02 18:13:50 -07:00
|
|
|
struct dive editedDive; // when editing we do all changes on a copy of the real data and only apply when saved
|
2013-08-13 10:49:59 -03:00
|
|
|
Completers completers;
|
2013-10-07 11:48:14 -07:00
|
|
|
void resetPallete();
|
2013-11-02 02:20:02 +01:00
|
|
|
void saveTags();
|
2014-06-02 18:13:50 -07:00
|
|
|
bool tagsChanged(struct dive *a, struct dive *b);
|
2013-11-12 00:21:45 +01:00
|
|
|
void updateGpsCoordinates(const struct dive *dive);
|
2013-04-07 15:20:43 -07:00
|
|
|
};
|
|
|
|
|
2014-02-11 19:14:46 +01:00
|
|
|
#endif // MAINTAB_H
|