]> git.sesse.net Git - kdenlive/blob - src/customruler.h
[PATCH by Ray Lehtiniemi] Fix up &&/& confusion
[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     Q_OBJECT
32
33 public:
34     CustomRuler(Timecode tc, CustomTrackView *parent);
35     void setPixelPerMark(double rate);
36     static const int comboScale[];
37     int outPoint() const;
38     int inPoint() const;
39     void setDuration(int d);
40     void setZone(QPoint p);
41     int offset() const;
42
43 protected:
44     virtual void paintEvent(QPaintEvent * /*e*/);
45     virtual void wheelEvent(QWheelEvent * e);
46     virtual void mousePressEvent(QMouseEvent * event);
47     virtual void mouseMoveEvent(QMouseEvent * event);
48
49 private:
50     int m_cursorPosition;
51     Timecode m_timecode;
52     CustomTrackView *m_view;
53     int m_zoneStart;
54     int m_zoneEnd;
55     int m_duration;
56     double m_textSpacing;
57     double m_factor;
58     double m_scale;
59     int m_offset;
60     RULER_MOVE m_moveCursor;
61     QMenu *m_contextMenu;
62
63 public slots:
64     void slotMoveRuler(int newPos);
65     void slotCursorMoved(int oldpos, int newpos);
66
67 signals:
68     void zoneMoved(int, int);
69 };
70
71 #endif