blob: c1dba8cc77c450869be7c26311c291dff59f1d7a [file] [log] [blame]
/***************************************************************************
* Copyright (C) 2019-2019 by Savoir-faire Linux *
* Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
**************************************************************************/
#include "ui_invitebuttonswidget.h"
#include "invitebuttonswidget.h"
InviteButtonsWidget::InviteButtonsWidget(QWidget* parent) :
QWidget(parent),
ui(new Ui::InviteButtonsWidget)
{
ui->setupUi(this);
connect(ui->btnAcceptInvite, &QPushButton::clicked, this,
[=]() {
emit btnAcceptInviteClicked();
});
connect(ui->btnIgnoreInvite, &QPushButton::clicked, this,
[=]() {
emit btnIgnoreInviteClicked();
});
connect(ui->btnBlockInvite, &QPushButton::clicked, this,
[=]() {
emit btnBlockInviteClicked();
});
}
InviteButtonsWidget::~InviteButtonsWidget()
{
disconnect(this);
delete ui;
}