diff options
| author | 2020-04-11 11:03:05 -0700 | |
|---|---|---|
| committer | 2020-04-11 11:03:05 -0700 | |
| commit | 6d187b5f4a3b51043fa3b53b6c73a7e0ec7f0b53 (patch) | |
| tree | 93b26b7381e565ecc0dc6d93e2d35b61a1cdaca9 /core/subsurface-qt/divelistnotifier.h | |
| parent | 2990010ccde56acec980e76ef5671137e87af488 (diff) | |
| parent | 7dc04b4437c7aa1788f7d85a513a246ce502dea4 (diff) | |
| download | subsurface-6d187b5f4a3b51043fa3b53b6c73a7e0ec7f0b53.tar.gz | |
Merge pull request #2643 from bstoeger/cylinder4
First steps of cylinder-editing undo
Diffstat (limited to 'core/subsurface-qt/divelistnotifier.h')
| -rw-r--r-- | core/subsurface-qt/divelistnotifier.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/subsurface-qt/divelistnotifier.h b/core/subsurface-qt/divelistnotifier.h index aafe29c0c..63355fbcc 100644 --- a/core/subsurface-qt/divelistnotifier.h +++ b/core/subsurface-qt/divelistnotifier.h @@ -87,6 +87,9 @@ signals: void divesTimeChanged(timestamp_t delta, const QVector<dive *> &dives); void cylindersReset(const QVector<dive *> &dives); + void cylinderAdded(dive *d, int pos); + void cylinderRemoved(dive *d, int pos); + void cylinderEdited(dive *d, int pos); void weightsystemsReset(const QVector<dive *> &dives); void weightAdded(dive *d, int pos); void weightRemoved(dive *d, int pos); @@ -110,6 +113,9 @@ signals: void numShownChanged(); void filterReset(); + // Event-related signals. Currently, we're very blunt: only one signal for any changes to the events. + void eventsChanged(dive *d); + // This signal is emited every time a command is executed. // This is used to hide an old multi-dives-edited warning message. // This is necessary, so that the user can't click on the "undo" button and undo |