]> git.sesse.net Git - kdenlive/blob - src/recmonitor.h
Update free space info every 30 seconds when capturing
[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     QLabel m_dvinfo;
62
63 #if KDE_IS_VERSION(4,2,0)
64     KCapacityBar *m_freeSpace;
65     QTimer m_spaceTimer;
66 #endif
67
68     KUrl m_captureFile;
69     KIcon m_playIcon;
70     KIcon m_pauseIcon;
71
72     QProcess *m_captureProcess;
73     QProcess *m_displayProcess;
74     bool m_isCapturing;
75     /** did the user capture something ? */
76     bool m_didCapture;
77     bool m_isPlaying;
78     QStringList m_captureArgs;
79     QStringList m_displayArgs;
80     QAction *m_recAction;
81     QAction *m_playAction;
82     QAction *m_fwdAction;
83     QAction *m_rewAction;
84     QAction *m_stopAction;
85     QAction *m_discAction;
86     void checkDeviceAvailability();
87     QPixmap mergeSideBySide(const QPixmap& pix, const QString txt);
88     void manageCapturedFiles();
89
90 private slots:
91     void slotStartCapture(bool play = true);
92     void slotStopCapture();
93     void slotRecord();
94     void slotProcessStatus(QProcess::ProcessState status);
95     void slotVideoDeviceChanged(int ix);
96     void slotRewind();
97     void slotForward();
98     void slotDisconnect();
99     //void slotStartGrab(const QRect &rect);
100     void slotConfigure();
101     void slotReadDvgrabInfo();
102
103 #if KDE_IS_VERSION(4,2,0)
104     void slotUpdatedFreeSpace();
105 #endif
106
107 public slots:
108     void refreshRecMonitor(bool visible);
109     void stop();
110     void start();
111     void activateRecMonitor();
112     void slotPlay();
113     void slotUpdateCaptureFolder();
114
115 signals:
116     void renderPosition(int);
117     void durationChanged(int);
118     void addProjectClip(KUrl);
119     void showConfigDialog(int, int);
120 };
121
122 #endif