blob: 7e1919bae1307a8e14a3ec5a36ad89ecb5dddd3b [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>
22
23namespace Ui {
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040024class InviteButtonsWidget;
Nicolas Jager97a21b42015-12-03 16:55:45 -050025}
26
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040027class InviteButtonsWidget : public QWidget
Nicolas Jager97a21b42015-12-03 16:55:45 -050028{
29 Q_OBJECT
30public:
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040031 explicit InviteButtonsWidget(QWidget* parent = 0);
32 ~InviteButtonsWidget();
Nicolas Jager97a21b42015-12-03 16:55:45 -050033
Nicolas Jager97a21b42015-12-03 16:55:45 -050034private:
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040035 Ui::InviteButtonsWidget* ui;
Nicolas Jager41e4fcf2016-01-28 11:37:03 -050036
37signals:
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040038 void btnAcceptInviteClicked() const;
39 void btnIgnoreInviteClicked() const;
40 void btnBlockInviteClicked() const;
Nicolas Jager41e4fcf2016-01-28 11:37:03 -050041
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040042};