]> git.sesse.net Git - kdenlive/blob - src/monitor.h
fix seeking issue
[kdenlive] / src / monitor.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 MONITOR_H
22 #define MONITOR_H
23
24 #include <KIcon>
25
26 #include "ui_monitor_ui.h"
27 #include "renderer.h"
28 #include "monitormanager.h"
29 #include "smallruler.h"
30
31 class MonitorManager;
32
33 class Monitor : public QWidget
34 {
35   Q_OBJECT
36   
37   public:
38     Monitor(QString name, MonitorManager *manager, QWidget *parent=0);
39     Render *render;
40     virtual void resizeEvent ( QResizeEvent * event );
41   protected:
42     virtual void mousePressEvent ( QMouseEvent * event );
43     virtual void wheelEvent ( QWheelEvent * event );
44
45   private:
46     Ui::Monitor_UI ui;
47     MonitorManager *m_monitorManager;
48     QString m_name;
49     double m_scale;
50     int m_length;
51     int m_position;
52     SmallRuler *m_ruler;
53     KIcon m_playIcon;
54     KIcon m_pauseIcon;
55     bool m_isActive;
56
57   private slots:
58     void slotPlay();
59     void adjustRulerSize(int length);
60     void seekCursor(int pos);
61     void rendererStopped(int pos);
62     void slotRewindOneFrame();
63     void slotForwardOneFrame();
64     void slotForward();
65     void slotRewind();
66
67   public slots:
68     void slotOpenFile(const QString &);
69     void slotSetXml(const QDomElement &e);
70     void initMonitor();
71     void refreshMonitor(bool visible);
72     void slotSeek(int pos);
73     void stop();
74     void start();
75     void activateMonitor();
76
77   signals:
78     void renderPosition(int);
79 };
80
81 #endif