]> git.sesse.net Git - kdenlive/blob - src/headertrack.h
Cleaning code style of Definitions.
[kdenlive] / src / headertrack.h
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 #ifndef HEADERTRACK_H
21 #define HEADERTRACK_H
22
23 #include <QContextMenuEvent>
24 #include <QMenu>
25 #include <QDomElement>
26
27 #include "definitions.h"
28 #include "ui_trackheader_ui.h"
29
30 class HeaderTrack : public QWidget, public Ui::TrackHeader_UI
31 {
32     Q_OBJECT
33
34 public:
35     HeaderTrack(int index, TrackInfo info, int height, const QList <QAction *>& actions, QWidget *parent = 0);
36     //virtual ~HeaderTrack();
37     void setLock(bool lock);
38     void adjustSize(int height);
39     void setSelectedIndex(int ix);
40     /** @brief Update the track label to show if current track has effects or not.*/
41     void updateEffectLabel(const QStringList &effects);
42
43 protected:
44     void mousePressEvent(QMouseEvent * event);
45     void mouseDoubleClickEvent(QMouseEvent * event);
46     void dropEvent(QDropEvent * event);
47     void dragEnterEvent(QDragEnterEvent *event);
48
49 private:
50     int m_index;
51     TrackType m_type;
52     bool m_isSelected;
53     QString m_name;
54
55 private slots:
56     void switchAudio();
57     void switchVideo();
58     void slotDeleteTrack();
59     void slotRenameTrack();
60     void switchLock(bool emitSignal = true);
61
62 signals:
63     void switchTrackAudio(int);
64     void switchTrackVideo(int);
65     void switchTrackLock(int);
66     void renameTrack(int, const QString&);
67     void selectTrack(int);
68     void configTrack(int);
69     void addTrackEffect(const QDomElement &, int);
70     void showTrackEffects(int);
71 };
72
73 #endif