]> git.sesse.net Git - kdenlive/blob - src/customruler.h
[PATCH 1/2] Kill a bunch of unused member variables
[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
44 protected:
45     virtual void paintEvent(QPaintEvent * /*e*/);
46     virtual void wheelEvent(QWheelEvent * e);
47     virtual void mousePressEvent(QMouseEvent * event);
48     virtual void mouseMoveEvent(QMouseEvent * event);
49
50 private:
51     Timecode m_timecode;
52     CustomTrackView *m_view;
53     int m_zoneStart;
54     int m_zoneEnd;
55     int m_duration;
56     QColor m_bgColor;
57     QColor m_zoneColor;
58     double m_textSpacing;
59     double m_factor;
60     double m_scale;
61     int m_offset;
62     RULER_MOVE m_moveCursor;
63     QMenu *m_contextMenu;
64
65 public slots:
66     void slotMoveRuler(int newPos);
67     void slotCursorMoved(int oldpos, int newpos);
68
69 signals:
70     void zoneMoved(int, int);
71 };
72
73 #endif