Make sure missed calls are removed
[skype-call-recorder.git] / trayicon.h
blobb1bba505ad0cd01a06cfad1ed85b3e170793ca7a
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 TRAYICON_H
25 #define TRAYICON_H
27 #include <QSystemTrayIcon>
29 class QAction;
30 class QMenu;
32 class TrayIcon : public QSystemTrayIcon {
33 Q_OBJECT
34 public:
35 TrayIcon(QObject *);
36 ~TrayIcon();
38 signals:
39 void requestQuit();
40 void requestQuitNoConfirmation();
41 void requestAbout();
42 void requestOpenPreferences();
43 void requestBrowseCalls();
45 signals:
46 void startRecording();
47 void stopRecordingAndDelete();
48 void stopRecording();
50 public slots:
51 void startedCall(const QString &);
52 void stoppedCall();
53 void startedRecording();
54 void stoppedRecording();
56 private slots:
57 void activate(QSystemTrayIcon::ActivationReason);
59 private:
60 QAction *currentCallAction;
61 QAction *startAction;
62 QAction *stopAction;
63 QAction *stopAndDeleteAction;
64 QMenu *menu;
65 QMenu *subMenu;
67 private:
68 // disabled
69 TrayIcon(const TrayIcon &);
70 TrayIcon &operator=(const TrayIcon &);
73 #endif