]> git.sesse.net Git - kdenlive/blob - src/headertrack.cpp
Add vertical timeline zoom:
[kdenlive] / src / headertrack.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 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 #include "headertrack.h"
22 #include "kdenlivesettings.h"
23
24 #include <KIcon>
25 #include <KLocale>
26 #include <KDebug>
27
28 #include <QMouseEvent>
29 #include <QWidget>
30 #include <QPainter>
31 #include <QAction>
32
33 HeaderTrack::HeaderTrack(int index, TrackInfo info, QWidget *parent) :
34         QWidget(parent),
35         m_index(index),
36         m_type(info.type)
37 {
38     setFixedHeight(KdenliveSettings::trackheight());
39     m_view.setupUi(this);
40     m_view.track_number->setText(QString::number(m_index));
41
42     m_view.buttonVideo->setChecked(!info.isBlind);
43     m_view.buttonVideo->setToolTip(i18n("Hide track"));
44     m_view.buttonAudio->setChecked(!info.isMute);
45     m_view.buttonAudio->setToolTip(i18n("Mute track"));
46     m_view.buttonLock->setChecked(info.isLocked);
47     m_view.buttonLock->setToolTip(i18n("Lock track"));
48
49     if (m_type == VIDEOTRACK) {
50         m_view.frame->setBackgroundRole(QPalette::AlternateBase);
51         m_view.frame->setAutoFillBackground(true);
52         if (!info.isBlind) m_view.buttonVideo->setIcon(KIcon("kdenlive-show-video"));
53         else m_view.buttonVideo->setIcon(KIcon("kdenlive-hide-video"));
54     } else {
55         m_view.buttonVideo->setHidden(true);
56     }
57     if (!info.isMute) m_view.buttonAudio->setIcon(KIcon("kdenlive-show-audio"));
58     else m_view.buttonAudio->setIcon(KIcon("kdenlive-hide-audio"));
59
60     if (!info.isLocked) m_view.buttonLock->setIcon(KIcon("kdenlive-unlock"));
61     else m_view.buttonLock->setIcon(KIcon("kdenlive-lock"));
62
63     connect(m_view.buttonVideo, SIGNAL(clicked()), this, SLOT(switchVideo()));
64     connect(m_view.buttonAudio, SIGNAL(clicked()), this, SLOT(switchAudio()));
65     connect(m_view.buttonLock, SIGNAL(clicked()), this, SLOT(switchLock()));
66
67     // Don't show track buttons if size is too small
68     if (KdenliveSettings::trackheight() < 40) {
69         m_view.buttonVideo->setHidden(true);
70         m_view.buttonAudio->setHidden(true);
71         m_view.buttonLock->setHidden(true);
72         //m_view.horizontalSpacer;
73     }
74
75     setContextMenuPolicy(Qt::ActionsContextMenu);
76     QAction *insertAction = new QAction(i18n("Insert Track"), this);
77     addAction(insertAction);
78     connect(insertAction, SIGNAL(triggered()), this, SLOT(slotAddTrack()));
79
80     QAction *removeAction = new QAction(KIcon("edit-delete"), i18n("Delete Track"), this);
81     addAction(removeAction);
82     connect(removeAction, SIGNAL(triggered()), this, SLOT(slotDeleteTrack()));
83
84     QAction *changeAction = new QAction(i18n("Change Track Type"), this);
85     addAction(changeAction);
86     connect(changeAction, SIGNAL(triggered()), this, SLOT(slotChangeTrack()));
87 }
88
89 HeaderTrack::~HeaderTrack()
90 {
91 }
92
93 void HeaderTrack::switchVideo()
94 {
95     if (m_view.buttonVideo->isChecked()) {
96         m_view.buttonVideo->setIcon(KIcon("kdenlive-show-video"));
97     } else {
98         m_view.buttonVideo->setIcon(KIcon("kdenlive-hide-video"));
99     }
100     emit switchTrackVideo(m_index);
101 }
102
103 void HeaderTrack::switchAudio()
104 {
105     if (m_view.buttonAudio->isChecked()) {
106         m_view.buttonAudio->setIcon(KIcon("kdenlive-show-audio"));
107     } else {
108         m_view.buttonAudio->setIcon(KIcon("kdenlive-hide-audio"));
109     }
110     emit switchTrackAudio(m_index);
111 }
112
113 void HeaderTrack::switchLock(bool emitSignal)
114 {
115     if (m_view.buttonLock->isChecked()) {
116         m_view.buttonLock->setIcon(KIcon("kdenlive-lock"));
117     } else {
118         m_view.buttonLock->setIcon(KIcon("kdenlive-unlock"));
119     }
120     if (emitSignal) emit switchTrackLock(m_index);
121 }
122
123
124 void HeaderTrack::setLock(bool lock)
125 {
126     m_view.buttonLock->setChecked(lock);
127     switchLock(false);
128 }
129
130 void HeaderTrack::slotDeleteTrack()
131 {
132     emit deleteTrack(m_index);
133 }
134
135 void HeaderTrack::slotAddTrack()
136 {
137     emit insertTrack(m_index);
138 }
139
140 void HeaderTrack::slotChangeTrack()
141 {
142     emit changeTrack(m_index);
143 }
144
145
146 // virtual
147 /*void HeaderTrack::paintEvent(QPaintEvent *e) {
148     QRect region = e->rect();
149     region.setTopLeft(QPoint(region.left() + 1, region.top() + 1));
150     region.setBottomRight(QPoint(region.right() - 1, region.bottom() - 1));
151     QPainter painter(this);
152     if (m_type == AUDIOTRACK) painter.fillRect(region, QBrush(QColor(240, 240, 255)));
153     else painter.fillRect(region, QBrush(QColor(255, 255, 255)));
154     painter.drawText(region, Qt::AlignCenter, m_label);
155 }*/
156
157
158 #include "headertrack.moc"