]> git.cworth.org Git - vogl/blob - src/vogleditor/vogleditor_qtimelineview.h
Initial vogl checkin
[vogl] / src / vogleditor / vogleditor_qtimelineview.h
1 /**************************************************************************
2  *
3  * Copyright 2013-2014 RAD Game Tools and Valve Software
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 #ifndef VOGLEDITOR_QTIMELINEVIEW_H
27 #define VOGLEDITOR_QTIMELINEVIEW_H
28
29 #include <QWidget>
30
31 QT_BEGIN_NAMESPACE
32 class QPainter;
33 class QPaintEvent;
34 QT_END_NAMESPACE
35
36 #include <QBrush>
37 #include <QFont>
38 #include <QPen>
39
40 #include "vogleditor_timelinemodel.h"
41
42 class vogleditor_QTimelineView : public QWidget
43 {
44    Q_OBJECT
45 public:
46    explicit vogleditor_QTimelineView(QWidget* parent = 0);
47    virtual ~vogleditor_QTimelineView();
48
49    void paint(QPainter* painter, QPaintEvent* event);
50
51     inline void setModel(vogleditor_timelineModel* pModel)
52     {
53         m_pModel = pModel;
54         if (m_pModel == NULL)
55         {
56            deletePixmap();
57         }
58         else
59         {
60             m_maxItemDuration = m_pModel->get_root_item()->getMaxChildDuration();
61         }
62    }
63
64    inline vogleditor_timelineModel* model()
65    {
66       return m_pModel;
67    }
68
69    inline void setCurrentFrame(unsigned long long frameNumber)
70    {
71       m_curFrame = frameNumber;
72    }
73
74    inline void setCurrentApiCall(unsigned long long apiCallNumber)
75    {
76       m_curApiCallNumber = apiCallNumber;
77    }
78
79    void deletePixmap()
80    {
81        if (m_pPixmap != NULL)
82        {
83            delete m_pPixmap;
84            m_pPixmap = NULL;
85        }
86    }
87
88 private:
89    QBrush m_background;
90    QBrush m_triangleBrush;
91    QPen m_trianglePen;
92    QPen m_textPen;
93    QFont m_textFont;
94    float m_horizontalScale;
95    int m_lineLength;
96    unsigned long long m_curFrame;
97    unsigned long long m_curApiCallNumber;
98    float m_maxItemDuration;
99
100    vogleditor_timelineModel* m_pModel;
101    QPixmap* m_pPixmap;
102
103    void drawBaseTimeline(QPainter* painter, const QRect& rect, int gap);
104    void drawTimelineItem(QPainter* painter, vogleditor_timelineItem* pItem, int height);
105
106    float scaleDurationHorizontally(float value);
107    float scalePositionHorizontally(float value);
108
109 protected:
110     void paintEvent(QPaintEvent* event);
111
112 signals:
113
114 public slots:
115
116 };
117
118 #endif // VOGLEDITOR_QTIMELINEVIEW_H