]> git.sesse.net Git - kdenlive/blob - src/monitor.h
Looks like I finally got the profile switching work!
[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     Q_OBJECT
35
36 public:
37     Monitor(QString name, MonitorManager *manager, QWidget *parent = 0);
38     Render *render;
39     void resetProfile(QString prof);
40     QString name() const;
41
42     virtual void resizeEvent(QResizeEvent * event);
43 protected:
44     virtual void mousePressEvent(QMouseEvent * event);
45     virtual void wheelEvent(QWheelEvent * event);
46     virtual void paintEvent(QPaintEvent * event);
47 private:
48     Ui::Monitor_UI ui;
49     MonitorManager *m_monitorManager;
50     QString m_name;
51     double m_scale;
52     int m_length;
53     int m_position;
54     SmallRuler *m_ruler;
55     KIcon m_playIcon;
56     KIcon m_pauseIcon;
57     bool m_isActive;
58
59 private slots:
60     void adjustRulerSize(int length);
61     void seekCursor(int pos);
62     void rendererStopped(int pos);
63     void slotRewindOneFrame();
64     void slotForwardOneFrame();
65     void slotForward();
66     void slotRewind();
67
68 public slots:
69     void slotOpenFile(const QString &);
70     void slotSetXml(const QDomElement &e);
71     void initMonitor();
72     void refreshMonitor(bool visible);
73     void slotSeek(int pos);
74     void stop();
75     void start();
76     void activateMonitor();
77     void slotPlay();
78     void saveSceneList(QString path, QDomElement e = QDomElement());
79
80 signals:
81     void renderPosition(int);
82     void durationChanged(int);
83 };
84
85 #endif