mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add a DiveListNotifer::eventsChanged signal, which is emitted when the events changed. This is very coarse, at it doesn't differentiate between signal addition / editing / deletion. We might want to be finer in the future. Catch the signal in the profile-widget to replot the dive if this is the currently displayed dive. Reuse the cylindersChanged() slot, but rename it to the now more appropriate profileChanged(). Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include "command_event.h"
|
|
#include "core/dive.h"
|
|
#include "core/subsurface-qt/divelistnotifier.h"
|
|
#include "core/libdivecomputer.h"
|
|
|
|
namespace Command {
|
|
|
|
AddEventBase::AddEventBase(struct dive *dIn, int dcNrIn, struct event *ev) :
|
|
d(dIn), dcNr(dcNrIn), eventToAdd(ev)
|
|
{
|
|
}
|
|
|
|
bool AddEventBase::workToBeDone()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void AddEventBase::redo()
|
|
{
|
|
struct divecomputer *dc = get_dive_dc(d, dcNr);
|
|
eventToRemove = eventToAdd.get();
|
|
add_event_to_dc(dc, eventToAdd.release()); // return ownership to backend
|
|
invalidate_dive_cache(d);
|
|
emit diveListNotifier.eventsChanged(d);
|
|
}
|
|
|
|
void AddEventBase::undo()
|
|
{
|
|
struct divecomputer *dc = get_dive_dc(d, dcNr);
|
|
remove_event_from_dc(dc, eventToRemove);
|
|
eventToAdd.reset(eventToRemove); // take ownership of event
|
|
eventToRemove = nullptr;
|
|
invalidate_dive_cache(d);
|
|
emit diveListNotifier.eventsChanged(d);
|
|
}
|
|
|
|
AddEventBookmark::AddEventBookmark(struct dive *d, int dcNr, int seconds) :
|
|
AddEventBase(d, dcNr, create_event(seconds, SAMPLE_EVENT_BOOKMARK, 0, 0, "bookmark"))
|
|
{
|
|
setText(tr("Add bookmark"));
|
|
}
|
|
|
|
} // namespace Command
|