2018-06-26 14:09:39 +02:00
|
|
|
#include "widgets/helper/SettingsDialogTab.hpp"
|
2018-06-26 15:11:45 +02:00
|
|
|
#include "widgets/dialogs/SettingsDialog.hpp"
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "widgets/settingspages/SettingsPage.hpp"
|
2017-01-18 21:30:23 +01:00
|
|
|
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QStyleOption>
|
|
|
|
|
|
|
|
namespace chatterino {
|
2017-01-01 18:43:52 +01:00
|
|
|
|
2018-08-06 21:17:03 +02:00
|
|
|
SettingsDialogTab::SettingsDialogTab(SettingsDialog *_dialog,
|
2020-02-21 01:59:58 +01:00
|
|
|
std::function<SettingsPage *()> _lazyPage,
|
|
|
|
const QString &name, QString imageFileName,
|
2020-02-21 01:17:22 +01:00
|
|
|
SettingsTabId id)
|
2018-01-27 21:51:08 +01:00
|
|
|
: BaseWidget(_dialog)
|
2018-07-06 19:23:47 +02:00
|
|
|
, dialog_(_dialog)
|
2020-02-21 01:59:58 +01:00
|
|
|
, lazyPage_(std::move(_lazyPage))
|
2020-02-21 01:17:22 +01:00
|
|
|
, id_(id)
|
2020-02-21 01:59:58 +01:00
|
|
|
, name_(name)
|
2017-01-01 18:43:52 +01:00
|
|
|
{
|
2020-02-21 01:59:58 +01:00
|
|
|
this->ui_.labelText = name;
|
2018-07-06 19:23:47 +02:00
|
|
|
this->ui_.icon.addFile(imageFileName);
|
2017-01-02 03:02:32 +01:00
|
|
|
|
2017-07-02 12:36:50 +02:00
|
|
|
this->setCursor(QCursor(Qt::PointingHandCursor));
|
|
|
|
|
|
|
|
this->setStyleSheet("color: #FFF");
|
2017-01-01 18:43:52 +01:00
|
|
|
}
|
|
|
|
|
2017-07-02 12:36:50 +02:00
|
|
|
void SettingsDialogTab::setSelected(bool _selected)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2018-10-21 13:43:02 +02:00
|
|
|
if (this->selected_ == _selected)
|
|
|
|
{
|
2017-04-12 17:46:44 +02:00
|
|
|
return;
|
2017-07-02 12:36:50 +02:00
|
|
|
}
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-12-18 00:54:17 +01:00
|
|
|
// height: <checkbox-size>px;
|
|
|
|
|
2018-07-06 19:23:47 +02:00
|
|
|
this->selected_ = _selected;
|
|
|
|
emit selectedChanged(selected_);
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
2020-02-21 00:46:19 +01:00
|
|
|
SettingsPage *SettingsDialogTab::page()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2020-02-21 01:59:58 +01:00
|
|
|
if (this->page_)
|
|
|
|
return this->page_;
|
|
|
|
|
|
|
|
this->page_ = this->lazyPage_();
|
|
|
|
this->page_->setTab(this);
|
2018-07-06 19:23:47 +02:00
|
|
|
return this->page_;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsDialogTab::paintEvent(QPaintEvent *)
|
2017-01-01 18:43:52 +01:00
|
|
|
{
|
|
|
|
QPainter painter(this);
|
|
|
|
|
2017-01-02 03:02:32 +01:00
|
|
|
QStyleOption opt;
|
|
|
|
opt.init(this);
|
|
|
|
|
2017-07-02 12:36:50 +02:00
|
|
|
this->style()->drawPrimitive(QStyle::PE_Widget, &opt, &painter, this);
|
2017-01-02 03:02:32 +01:00
|
|
|
|
2018-11-21 21:37:41 +01:00
|
|
|
int a = (this->height() - (20 * this->scale())) / 2;
|
2018-08-06 21:17:03 +02:00
|
|
|
QPixmap pixmap = this->ui_.icon.pixmap(
|
|
|
|
QSize(this->height() - a * 2, this->height() - a * 2));
|
2017-01-01 18:43:52 +01:00
|
|
|
|
2018-01-13 02:17:07 +01:00
|
|
|
painter.drawPixmap(a, a, pixmap);
|
2018-01-02 03:44:52 +01:00
|
|
|
|
2018-01-13 02:18:13 +01:00
|
|
|
a = a + a + 20 + a;
|
2017-01-01 18:43:52 +01:00
|
|
|
|
2018-07-06 19:23:47 +02:00
|
|
|
painter.drawText(QRect(a, 0, width() - a, height()), this->ui_.labelText,
|
2017-01-11 18:52:09 +01:00
|
|
|
QTextOption(Qt::AlignLeft | Qt::AlignVCenter));
|
2017-01-01 18:43:52 +01:00
|
|
|
}
|
2017-01-02 03:02:32 +01:00
|
|
|
|
2017-04-14 17:47:28 +02:00
|
|
|
void SettingsDialogTab::mousePressEvent(QMouseEvent *event)
|
2017-01-02 03:02:32 +01:00
|
|
|
{
|
2018-10-21 13:43:02 +02:00
|
|
|
if (event->button() != Qt::LeftButton)
|
|
|
|
{
|
2017-01-11 18:52:09 +01:00
|
|
|
return;
|
2017-04-14 17:47:28 +02:00
|
|
|
}
|
2017-01-02 03:02:32 +01:00
|
|
|
|
2018-07-06 19:23:47 +02:00
|
|
|
this->dialog_->selectTab(this);
|
2019-09-02 18:59:37 +02:00
|
|
|
|
|
|
|
this->setFocus();
|
2017-01-02 03:02:32 +01:00
|
|
|
}
|
2017-06-07 10:09:24 +02:00
|
|
|
|
2020-02-21 01:59:58 +01:00
|
|
|
const QString &SettingsDialogTab::name() const
|
|
|
|
{
|
|
|
|
return name_;
|
|
|
|
}
|
|
|
|
|
2020-02-21 01:17:22 +01:00
|
|
|
SettingsTabId SettingsDialogTab::id() const
|
|
|
|
{
|
|
|
|
return id_;
|
|
|
|
}
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace chatterino
|