blob: 7f53a571247536ffdb599fd92867b3b012548538 [file] [log] [blame]
Nicolas Jager97a21b42015-12-03 16:55:45 -05001/***************************************************************************
Andreas Traczykb8b13ba2018-08-21 16:30:16 -04002 * Copyright (C) 2018 by Savoir-faire Linux *
3 * Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com> *
Nicolas Jager97a21b42015-12-03 16:55:45 -05004 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
19#pragma once
20
21#include <QWidget>
Andreas Traczyk43c08232018-10-31 13:42:09 -040022#include <QItemDelegate>
Nicolas Jager97a21b42015-12-03 16:55:45 -050023
24namespace Ui {
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040025class InviteButtonsWidget;
Nicolas Jager97a21b42015-12-03 16:55:45 -050026}
27
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040028class InviteButtonsWidget : public QWidget
Nicolas Jager97a21b42015-12-03 16:55:45 -050029{
30 Q_OBJECT
31public:
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040032 explicit InviteButtonsWidget(QWidget* parent = 0);
33 ~InviteButtonsWidget();
Nicolas Jager97a21b42015-12-03 16:55:45 -050034
Nicolas Jager97a21b42015-12-03 16:55:45 -050035private:
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040036 Ui::InviteButtonsWidget* ui;
Nicolas Jager41e4fcf2016-01-28 11:37:03 -050037
38signals:
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040039 void btnAcceptInviteClicked() const;
40 void btnIgnoreInviteClicked() const;
41 void btnBlockInviteClicked() const;
Nicolas Jager41e4fcf2016-01-28 11:37:03 -050042
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040043};