summaryrefslogtreecommitdiff
path: root/src/group.cpp
blob: 7b8f63d9a5778c6de4e772a68c8bf88809ebb29c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <QLabel>
#include <QString>

#include "group.h"

Group::Group(int id, QString name, QString column, QString link, bool hidden) {
	this->id = id;
	this->name = name;
	this->column = column;
	this->link = link;
	this->hidden = hidden;

	this->setContentsMargins(0, 10, 0, 10);

	QLabel *name_label = new QLabel(this->name);
	name_label->setTextInteractionFlags(Qt::TextSelectableByMouse);
	
	QFont name_font = QFont("Arial", 13);
	name_font.setUnderline(true);

	name_label->setFont(name_font);
	this->addWidget(name_label);
}