blob: 5af38220951e256ab0ee719bd6d31e7125404cc8 [file] [log] [blame]
Olivier SOLDANO9b7e80d2017-05-04 16:06:01 -04001/***************************************************************************
Sébastien Blin68abac92019-01-02 17:41:31 -05002 * Copyright (C) 2015-2019 by Savoir-faire Linux *
Olivier SOLDANO9b7e80d2017-05-04 16:06:01 -04003 * Author: Olivier Soldano <olivier.soldano@savoirfairelinux.com> *
Isa Nanic6e4a39a2018-12-04 14:26:02 -05004 * Author: Isa Nanic <isa.nanic@savoirfairelinux.com> *
Olivier SOLDANO9b7e80d2017-05-04 16:06:01 -04005 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 3 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
18 **************************************************************************/
19
20#ifndef DELETEACCOUNTDIALOG_H
21#define DELETEACCOUNTDIALOG_H
22
23#include <QDialog>
Olivier SOLDANO9b7e80d2017-05-04 16:06:01 -040024
25namespace Ui {
26class DeleteAccountDialog;
27}
28
29class DeleteAccountDialog : public QDialog
30{
31 Q_OBJECT
32
33public:
Isa Nanic6e4a39a2018-12-04 14:26:02 -050034 DeleteAccountDialog(QWidget *parent = nullptr);
Olivier SOLDANO9b7e80d2017-05-04 16:06:01 -040035 ~DeleteAccountDialog();
36
Olivier SOLDANO9b7e80d2017-05-04 16:06:01 -040037private slots:
38 void on_deleteCancelBtn_clicked();
Olivier SOLDANO9b7e80d2017-05-04 16:06:01 -040039 void on_deleteAcceptBtn_clicked();
Isa Nanic6e4a39a2018-12-04 14:26:02 -050040signals:
41 void deleteAcceptClicked();
Olivier SOLDANO9b7e80d2017-05-04 16:06:01 -040042
43private:
44 Ui::DeleteAccountDialog *ui;
Olivier SOLDANO9b7e80d2017-05-04 16:06:01 -040045};
46
47#endif // DELETEACCOUNTDIALOG_H