Fix creation of output file name
[skype-call-recorder.git] / recorder.h
blob19001aeff9fc8d182fb543620ba2c69c72f293a2
1 /*
2 Skype Call Recorder
3 Copyright 2008 - 2009 by 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 <QPointer>
29 #include <QString>
31 #include "common.h"
32 #include "utils.h"
34 class TrayIcon;
35 class PreferencesDialog;
36 class Skype;
37 class CallHandler;
38 class AboutDialog;
40 class Recorder : public QApplication {
41 Q_OBJECT
42 public:
43 Recorder(int &, char **);
44 virtual ~Recorder();
46 void debugMessage(const QString &);
48 public slots:
49 void about();
50 void openWebsite();
51 void openPreferences();
52 void closePerCallerDialog();
53 void browseCalls();
54 void quitConfirmation();
55 void skypeNotify(const QString &);
56 void skypeConnected(bool);
57 void skypeConnectionFailed(const QString &);
58 void savePreferences();
60 private:
61 void loadPreferences();
62 void setupGUI();
63 void setupSkype();
64 void setupCallHandler();
65 void sanatizePreferences();
66 bool convertSettingsToV2();
67 bool sanatizePreferencesGeneric();
69 QString getConfigFile() const;
71 private:
72 QPointer<Skype> skype;
73 QPointer<CallHandler> callHandler;
74 QPointer<PreferencesDialog> preferencesDialog;
75 QPointer<TrayIcon> trayIcon;
76 QPointer<AboutDialog> aboutDialog;
77 LockFile lockFile;
79 DISABLE_COPY_AND_ASSIGNMENT(Recorder);
82 #endif