]> git.sesse.net Git - kdenlive/blob - src/recmonitor.h
Fix compile on KDE < 4.2, based on patch from Mikko Rapeli
[kdenlive] / src / recmonitor.h
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #ifndef RECMONITOR_H
22 #define RECMONITOR_H
23
24 #include <QToolBar>
25 #include <QTimer>
26 #include <QProcess>
27 #include <QImage>
28
29 #include <KIcon>
30 #include <KAction>
31 #include <KRestrictedLine>
32 #include <KDateTime>
33 #include <kdeversion.h>
34
35 #if KDE_IS_VERSION(4,2,0)
36 #include <kcapacitybar.h>
37 #endif
38
39 #include "ui_recmonitor_ui.h"
40
41 class RecMonitor : public QWidget
42 {
43     Q_OBJECT
44
45 public:
46     explicit RecMonitor(QString name, QWidget *parent = 0);
47     virtual ~RecMonitor();
48
49     QString name() const;
50
51     enum CAPTUREDEVICE {FIREWIRE = 0, VIDEO4LINUX = 1, SCREENGRAB = 2};
52
53 protected:
54     virtual void mousePressEvent(QMouseEvent * event);
55
56 private:
57     Ui::RecMonitor_UI m_ui;
58     QString m_name;
59     bool m_isActive;
60     KDateTime m_captureTime;
61     
62 #if KDE_IS_VERSION(4,2,0)
63     KCapacityBar *m_freeSpace;
64 #endif
65
66     KUrl m_captureFile;
67     KIcon m_playIcon;
68     KIcon m_pauseIcon;
69
70     QProcess *m_captureProcess;
71     QProcess *m_displayProcess;
72     bool m_isCapturing;
73     /** did the user capture something ? */
74     bool m_didCapture;
75     bool m_isPlaying;
76     QStringList m_captureArgs;
77     QStringList m_displayArgs;
78     QAction *m_recAction;
79     QAction *m_playAction;
80     QAction *m_fwdAction;
81     QAction *m_rewAction;
82     QAction *m_stopAction;
83     QAction *m_discAction;
84     void checkDeviceAvailability();
85     QPixmap mergeSideBySide(const QPixmap& pix, const QString txt);
86     void manageCapturedFiles();
87     
88 #if KDE_IS_VERSION(4,2,0)
89     void updatedFreeSpace();
90 #endif
91
92 private slots:
93     void slotStartCapture(bool play = true);
94     void slotStopCapture();
95     void slotRecord();
96     void slotProcessStatus(QProcess::ProcessState status);
97     void slotVideoDeviceChanged(int ix);
98     void slotRewind();
99     void slotForward();
100     void slotDisconnect();
101     //void slotStartGrab(const QRect &rect);
102     void slotConfigure();
103
104 public slots:
105     void refreshRecMonitor(bool visible);
106     void stop();
107     void start();
108     void activateRecMonitor();
109     void slotPlay();
110     void slotUpdateCaptureFolder();
111
112 signals:
113     void renderPosition(int);
114     void durationChanged(int);
115     void addProjectClip(KUrl);
116     void showConfigDialog(int, int);
117 };
118
119 #endif