]> git.sesse.net Git - kdenlive/blob - src/monitor.h
refresh video_frame again, but now only if needed (no cpu usage anymore, if not needed)
[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 #include <KAction>
26 #include <KRestrictedLine>
27
28 #include "ui_monitor_ui.h"
29 #include "renderer.h"
30 #include "monitormanager.h"
31 #include "smallruler.h"
32
33 class MonitorManager;
34
35 class MonitorRefresh : public QWidget {
36     Q_OBJECT
37 public:
38     MonitorRefresh(QWidget* parent);
39     virtual void paintEvent(QPaintEvent * event);
40     void setRenderer(Render* render);
41 private:
42     Render *m_renderer;
43 };
44
45 class Monitor : public QWidget {
46     Q_OBJECT
47
48 public:
49     Monitor(QString name, MonitorManager *manager, QWidget *parent = 0);
50     Render *render;
51     void resetProfile(QString prof);
52     QString name() const;
53
54
55 protected:
56     virtual void mousePressEvent(QMouseEvent * event);
57     virtual void wheelEvent(QWheelEvent * event);
58     virtual void resizeEvent(QResizeEvent * event);
59 //    virtual void paintEvent(QPaintEvent * event);
60
61 private:
62     Ui::Monitor_UI ui;
63     MonitorManager *m_monitorManager;
64     MonitorRefresh *m_monitorRefresh;
65     QString m_name;
66     double m_scale;
67     int m_length;
68     int m_position;
69     SmallRuler *m_ruler;
70     KIcon m_playIcon;
71     KIcon m_pauseIcon;
72     bool m_isActive;
73     KRestrictedLine *m_timePos;
74     QAction *m_playAction;
75
76 private slots:
77     void adjustRulerSize(int length);
78     void seekCursor(int pos);
79     void rendererStopped(int pos);
80
81
82 public slots:
83     void slotOpenFile(const QString &);
84     void slotSetXml(const QDomElement &e);
85     void initMonitor();
86     void refreshMonitor(bool visible);
87     void slotSeek(int pos);
88     void stop();
89     void start();
90     void activateMonitor();
91     void slotPlay();
92     void slotForward();
93     void slotRewind();
94     void slotRewindOneFrame();
95     void slotForwardOneFrame();
96     void saveSceneList(QString path, QDomElement e = QDomElement());
97
98 signals:
99     void renderPosition(int);
100     void durationChanged(int);
101 };
102
103 #endif