Move pruning of Call objects to own function
[skype-call-recorder.git] / callgui.h
bloba87524929396025da3d849bddd20ad46dd2f91ba
1 /*
2 Skype Call Recorder
3 Copyright (C) 2008 jlh (jlh at gmx dot ch)
5 This program is free software; you can redistribute it and/or modify it
6 under the terms of the GNU General Public License as published by the
7 Free Software Foundation; either version 2 of the License, version 3 of
8 the License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 The GNU General Public License version 2 is included with the source of
20 this program under the file name COPYING. You can also get a copy on
21 http://www.fsf.org/
24 #ifndef CALLGUI_H
25 #define CALLGUI_H
27 #include <QDialog>
28 #include <QList>
30 class QWidget;
31 class QString;
32 class QCheckBox;
34 class RecordConfirmationDialog : public QDialog {
35 Q_OBJECT
36 public:
37 RecordConfirmationDialog(const QString &, const QString &);
39 signals:
40 void yes();
41 void no();
43 private slots:
44 void yesClicked();
45 void noClicked();
46 void enableWidgets();
48 private:
49 QString skypeName;
50 QList<QWidget *> widgets;
51 QCheckBox *remember;
53 private:
54 // disabled
55 RecordConfirmationDialog(const RecordConfirmationDialog &);
56 RecordConfirmationDialog &operator=(const RecordConfirmationDialog &);
59 #endif