1 /***************************************************************************
2 * Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
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. *
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. *
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 ***************************************************************************/
31 #include <KRestrictedLine>
34 #include "ui_recmonitor_ui.h"
36 class RecMonitor : public QWidget
41 explicit RecMonitor(QString name, QWidget *parent = 0);
42 virtual ~RecMonitor();
46 enum CAPTUREDEVICE {FIREWIRE = 0, VIDEO4LINUX = 1, SCREENGRAB = 2};
49 virtual void mousePressEvent(QMouseEvent * event);
52 Ui::RecMonitor_UI m_ui;
55 KDateTime m_captureTime;
61 QProcess *m_captureProcess;
62 QProcess *m_displayProcess;
64 /** did the user capture something ? */
67 QStringList m_captureArgs;
68 QStringList m_displayArgs;
70 QAction *m_playAction;
73 QAction *m_stopAction;
74 QAction *m_discAction;
75 void checkDeviceAvailability();
76 QPixmap mergeSideBySide(const QPixmap& pix, const QString txt);
77 void manageCapturedFiles();
80 void slotStartCapture(bool play = true);
81 void slotStopCapture();
83 void slotProcessStatus(QProcess::ProcessState status);
84 void slotVideoDeviceChanged(int ix);
87 void slotDisconnect();
88 //void slotStartGrab(const QRect &rect);
92 void refreshRecMonitor(bool visible);
95 void activateRecMonitor();
97 void slotUpdateCaptureFolder();
100 void renderPosition(int);
101 void durationChanged(int);
102 void addProjectClip(KUrl);
103 void showConfigDialog(int, int);