aboutsummaryrefslogtreecommitdiffstats
path: root/commands/command_device.cpp
blob: afd368b554401beb8e7e8bfeee9f2950588d0b8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// SPDX-License-Identifier: GPL-2.0

#include "command_device.h"
#include "core/subsurface-qt/divelistnotifier.h"

namespace Command {

RemoveDevice::RemoveDevice(int indexIn) : index(indexIn)
{
	const device *dev = get_device(&device_table, index);
	if (!dev)
		return;

	setText(Command::Base::tr("Delete device %1 (0x%2)").arg(QString::fromStdString(dev->model),
								 QString::number(dev->deviceId)));
}

bool RemoveDevice::workToBeDone()
{
	return get_device(&device_table, index) != nullptr;
}

void RemoveDevice::redo()
{
	dev = *get_device(&device_table, index);
	remove_from_device_table(&device_table, index);
	emit diveListNotifier.deviceDeleted(index);
}

void RemoveDevice::undo()
{
	index = add_to_device_table(&device_table, &dev);
	emit diveListNotifier.deviceAdded(index);
}

EditDeviceNickname::EditDeviceNickname(int indexIn, const QString &nicknameIn) :
	index(indexIn), nickname(nicknameIn.toStdString())
{
	const device *dev = get_device(&device_table, index);
	if (!dev)
		return;

	setText(Command::Base::tr("Set nickname of device %1 (0x%2) to %3").arg(QString::fromStdString(dev->model),
										QString::number(dev->deviceId,1 ,16), nicknameIn));
}

bool EditDeviceNickname::workToBeDone()
{
	return get_device(&device_table, index) != nullptr;
}

void EditDeviceNickname::redo()
{
	device *dev = get_device_mutable(&device_table, index);
	if (!dev)
		return;
	std::swap(dev->nickName, nickname);
	emit diveListNotifier.deviceEdited(index);
}

void EditDeviceNickname::undo()
{
	redo(); // undo() and redo() do the same thing
}

} // namespace Command