]> git.sesse.net Git - kdenlive/blob - src/customruler.h
b7ac39782f7b61913efa6d47ec278dc256708f10
[kdenlive] / src / customruler.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 #ifndef CUSTOMRULER_H
21 #define CUSTOMRULER_H
22
23 #include <QWidget>
24
25 #include "customtrackview.h"
26 #include "timecode.h"
27
28 enum RULER_MOVE { RULER_CURSOR = 0, RULER_START = 1, RULER_MIDDLE = 2, RULER_END = 3 };
29
30 class CustomRuler : public QWidget
31 {
32     Q_OBJECT
33
34 public:
35     CustomRuler(Timecode tc, CustomTrackView *parent);
36     void setPixelPerMark(double rate);
37     static const int comboScale[];
38     int outPoint() const;
39     int inPoint() const;
40     void setDuration(int d);
41     void setZone(QPoint p);
42     int offset() const;
43     void updateProjectFps(Timecode t);
44
45 protected:
46     virtual void paintEvent(QPaintEvent * /*e*/);
47     virtual void wheelEvent(QWheelEvent * e);
48     virtual void mousePressEvent(QMouseEvent * event);
49     virtual void mouseMoveEvent(QMouseEvent * event);
50
51 private:
52     Timecode m_timecode;
53     CustomTrackView *m_view;
54     int m_zoneStart;
55     int m_zoneEnd;
56     int m_duration;
57     QColor m_bgColor;
58     QColor m_cursorColor;
59     QColor m_zoneColor;
60     double m_textSpacing;
61     double m_factor;
62     double m_scale;
63     int m_offset;
64     RULER_MOVE m_moveCursor;
65     QMenu *m_contextMenu;
66     QAction *m_editGuide;
67     QAction *m_deleteGuide;
68     int m_clickedGuide;
69
70 public slots:
71     void slotMoveRuler(int newPos);
72     void slotCursorMoved(int oldpos, int newpos);
73
74 private slots:
75     void slotEditGuide();
76     void slotDeleteGuide();
77
78 signals:
79     void zoneMoved(int, int);
80 };
81
82 #endif