aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/maintab.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2013-05-18 20:42:59 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-05-18 17:06:48 -0700
commitc5e7a025e4c1abcc1ad5d701991fc8f15ae82be6 (patch)
tree6c2e53fb064aecb53ddfd21296a353f86987c63b /qt-ui/maintab.h
parentde50f6625746928711d7fb7f0fa579d194931970 (diff)
downloadsubsurface-c5e7a025e4c1abcc1ad5d701991fc8f15ae82be6.tar.gz
Added option to edit the selected dive.
Added option to edit the selected dive. Now the user can click on 'Edit', and a nice box will appear stating that the dive is in edit mode, and the user can edit all of the 'Notes' tab fields, including the rating. When the edition is finished, the user needs to click on 'edit' again to mark as accepted, or in reset to reset the fields to it's original state Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.h')
-rw-r--r--qt-ui/maintab.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/qt-ui/maintab.h b/qt-ui/maintab.h
index e09781362..98da412ef 100644
--- a/qt-ui/maintab.h
+++ b/qt-ui/maintab.h
@@ -17,6 +17,15 @@ namespace Ui
class MainTab;
}
+struct NotesBackup{
+ QString location;
+ QString notes;
+ QString buddy;
+ QString suit;
+ int rating;
+ QString divemaster;
+};
+
class MainTab : public QTabWidget
{
Q_OBJECT
@@ -34,13 +43,22 @@ public Q_SLOTS:
void on_addWeight_clicked();
void on_editWeight_clicked();
void on_delWeight_clicked();
-
void updateDiveInfo(int dive);
+ void on_editNotes_clicked(bool edit);
+ void on_resetNotes_clicked();
+ void on_location_textChanged(const QString& text);
+ void on_divemaster_textChanged(const QString& text);
+ void on_buddy_textChanged(const QString& text);
+ void on_suit_textChanged(const QString& text);
+ void on_notes_textChanged();
+ void on_rating_valueChanged(int value);
private:
Ui::MainTab *ui;
WeightModel *weightModel;
CylindersModel *cylindersModel;
+ NotesBackup notesBackup;
+ struct dive* currentDive;
};
#endif