summaryrefslogtreecommitdiffstats
path: root/qt-ui/maintab.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-27 20:09:57 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-27 20:09:57 -0800
commit76e6420f6b3503b76bd3eec00ab0e53d6ea17a20 (patch)
tree8b50298f41bd29d55bbd6f4301f36ad31dc0b008 /qt-ui/maintab.h
parent006265d7a088cff4fea665159dbb454956c2cd76 (diff)
downloadsubsurface-76e6420f6b3503b76bd3eec00ab0e53d6ea17a20.tar.gz
Massive automated whitespace cleanup
I know everyone will hate it. Go ahead. Complain. Call me names. At least now things are consistent and reproducible. If you want changes, have your complaint come with a patch to scripts/whitespace.pl so that we can automate it. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.h')
-rw-r--r--qt-ui/maintab.h43
1 files changed, 25 insertions, 18 deletions
diff --git a/qt-ui/maintab.h b/qt-ui/maintab.h
index a1e588f77..946b673b6 100644
--- a/qt-ui/maintab.h
+++ b/qt-ui/maintab.h
@@ -18,7 +18,7 @@
class QCompleter;
struct dive;
-struct NotesBackup{
+struct NotesBackup {
QString airtemp;
QString watertemp;
QString datetime;
@@ -34,10 +34,10 @@ struct NotesBackup{
QString divemaster;
QString tags;
cylinder_t cylinders[MAX_CYLINDERS];
- weightsystem_t weightsystem[MAX_WEIGHTSYSTEMS ];
+ weightsystem_t weightsystem[MAX_WEIGHTSYSTEMS];
};
-struct Completers{
+struct Completers {
QCompleter *location;
QCompleter *divemaster;
QCompleter *buddy;
@@ -45,11 +45,16 @@ struct Completers{
QCompleter *tags;
};
-class MainTab : public QTabWidget
-{
+class MainTab : public QTabWidget {
Q_OBJECT
public:
- enum EditMode { NONE, DIVE, TRIP, ADD, MANUALLY_ADDED_DIVE };
+ enum EditMode {
+ NONE,
+ DIVE,
+ TRIP,
+ ADD,
+ MANUALLY_ADDED_DIVE
+ };
MainTab(QWidget *parent);
~MainTab();
@@ -57,42 +62,44 @@ public:
void clearInfo();
void clearEquipment();
void reload();
- bool eventFilter(QObject* , QEvent*);
+ bool eventFilter(QObject *, QEvent *);
void initialUiSetup();
bool isEditing();
void updateCoordinatesText(qreal lat, qreal lon);
-public slots:
+public
+slots:
void addCylinder_clicked();
void addWeight_clicked();
void updateDiveInfo(int dive = selected_dive);
void acceptChanges();
void rejectChanges();
- void on_location_textChanged(const QString& text);
- void on_coordinates_textChanged(const QString& text);
+ void on_location_textChanged(const QString &text);
+ void on_coordinates_textChanged(const QString &text);
void on_divemaster_textChanged();
void on_buddy_textChanged();
- void on_suit_textChanged(const QString& text);
+ void on_suit_textChanged(const QString &text);
void on_notes_textChanged();
- void on_airtemp_textChanged(const QString& text);
- void on_watertemp_textChanged(const QString& text);
- void on_dateTimeEdit_dateTimeChanged(const QDateTime& datetime);
+ void on_airtemp_textChanged(const QString &text);
+ void on_watertemp_textChanged(const QString &text);
+ void on_dateTimeEdit_dateTimeChanged(const QDateTime &datetime);
void on_rating_valueChanged(int value);
void on_visibility_valueChanged(int value);
void on_tagWidget_textChanged();
- void editCylinderWidget(const QModelIndex& index);
- void editWeightWidget(const QModelIndex& index);
+ void editCylinderWidget(const QModelIndex &index);
+ void editWeightWidget(const QModelIndex &index);
void addDiveStarted();
- void addMessageAction(QAction* action);
+ void addMessageAction(QAction *action);
void hideMessage();
void closeMessage();
void displayMessage(QString str);
void enableEdition(EditMode newEditMode = NONE);
void toggleTriggeredColumn();
+
private:
Ui::MainTab ui;
WeightModel *weightModel;
CylindersModel *cylindersModel;
- QMap<dive*, NotesBackup> notesBackup;
+ QMap<dive *, NotesBackup> notesBackup;
EditMode editMode;
BuddyCompletionModel buddyModel;