]> git.sesse.net Git - kdenlive/blob - src/recmonitor.h
Add free disk space in capture monitor:
[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 private slots:
89     void slotStartCapture(bool play = true);
90     void slotStopCapture();
91     void slotRecord();
92     void slotProcessStatus(QProcess::ProcessState status);
93     void slotVideoDeviceChanged(int ix);
94     void slotRewind();
95     void slotForward();
96     void slotDisconnect();
97     //void slotStartGrab(const QRect &rect);
98     void slotConfigure();
99
100 public slots:
101     void refreshRecMonitor(bool visible);
102     void stop();
103     void start();
104     void activateRecMonitor();
105     void slotPlay();
106     void slotUpdateCaptureFolder();
107
108 signals:
109     void renderPosition(int);
110     void durationChanged(int);
111     void addProjectClip(KUrl);
112     void showConfigDialog(int, int);
113 };
114
115 #endif