Including commit ID into the executable
[skype-call-recorder.git] / recorder.h
blob4f43b04286c44d4bf0cd58f05622b15173eabcaf
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 RECORDER_H
25 #define RECORDER_H
27 #include <QApplication>
28 #include <QStringList>
30 class TrayIcon;
31 class QTextEdit;
32 class QString;
33 class PreferencesDialog;
34 class Skype;
35 class CallHandler;
37 class Recorder : public QApplication {
38 Q_OBJECT
39 public:
40 Recorder(int, char **);
41 virtual ~Recorder();
43 void debugMessage(const QString &);
45 public slots:
46 void about();
47 void openPreferences();
48 void closePreferences();
49 void browseCalls();
50 void quitConfirmation();
51 void skypeNotify(const QString &);
52 void skypeConnected(bool);
53 void skypeConnectionFailed(const QString &);
54 void savePreferences();
56 private:
57 void loadPreferences();
58 void setupGUI();
59 void setupSkype();
60 void setupCallHandler();
62 QString getConfigFile() const;
64 private:
65 Skype *skype;
66 CallHandler *callHandler;
67 PreferencesDialog *preferencesDialog;
68 TrayIcon *trayIcon;
70 private:
71 // disabled
72 Recorder(const Recorder &);
73 Recorder &operator=(const Recorder &);
76 #endif