summaryrefslogtreecommitdiff
path: root/src/frontend/qtwidgets/addGroupForm.cpp
blob: c7d5faab85eb8e8d705048b60645d395f105e312 (plain)
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
#include <QMessageBox>

#include "addGroupForm.h"
#include "../../backend/db_sqlite.h"

AddGroupForm::AddGroupForm() {
	// load uic
	ui.setupUi(this);

	// set titles
	this->setWindowTitle("Add Group");
	ui.title->setText("Add Group");
}

void AddGroupForm::accept() {
	QString name_text = ui.group_name->text();
	Group::Column column_value = Group::Column(ui.group_column->currentIndex());
	QString link_text = ui.group_link->text();
	QMessageBox error_message;
	BackendDB database;
	int new_id;

	if(name_text.isEmpty()) {
		error_message.setIcon(QMessageBox::Warning);
		error_message.setWindowTitle("Error Message");
		error_message.setText("Name cannot be blank");
		error_message.exec();
		return;
	}

	new_id = database.insertGroup(Group(0, name_text, column_value, link_text));

	QDialog::accept();
}