]> git.sesse.net Git - kdenlive/blobdiff - src/headertrack.h
Const'ref
[kdenlive] / src / headertrack.h
index a163b77df7d1ddb917dbe144ac78a3e13ae0810b..6d2089826367af45172943f6ce5603724e2f3177 100644 (file)
@@ -1,22 +1,73 @@
+/***************************************************************************
+ *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
+ ***************************************************************************/
+
 #ifndef HEADERTRACK_H
 #define HEADERTRACK_H
 
+#include <QContextMenuEvent>
+#include <QMenu>
+#include <QDomElement>
 
+#include "definitions.h"
+#include "ui_trackheader_ui.h"
 
-class HeaderTrack : public QWidget
+class HeaderTrack : public QWidget, public Ui::TrackHeader_UI
 {
-  Q_OBJECT
-  
-  public:
-    HeaderTrack(QWidget *parent=0);
+    Q_OBJECT
+
+public:
+    HeaderTrack(int index, TrackInfo info, int height, const QList <QAction *>& actions, QWidget *parent = 0);
+    //virtual ~HeaderTrack();
+    void setLock(bool lock);
+    void adjustSize(int height);
+    void setSelectedIndex(int ix);
+    /** @brief Update the track label to show if current track has effects or not.*/
+    void updateEffectLabel(const QStringList &effects);
 
-  protected:
-    virtual void paintEvent(QPaintEvent * /*e*/);
+protected:
+    void mousePressEvent(QMouseEvent * event);
+    void mouseDoubleClickEvent(QMouseEvent * event);
+    void dropEvent(QDropEvent * event);
+    void dragEnterEvent(QDragEnterEvent *event);
 
-  private:
+private:
+    int m_index;
+    TRACKTYPE m_type;
+    bool m_isSelected;
+    QString m_name;
 
-  public slots:
+private slots:
+    void switchAudio();
+    void switchVideo();
+    void slotDeleteTrack();
+    void slotRenameTrack();
+    void switchLock(bool emitSignal = true);
 
+signals:
+    void switchTrackAudio(int);
+    void switchTrackVideo(int);
+    void switchTrackLock(int);
+    void renameTrack(int, const QString&);
+    void selectTrack(int);
+    void configTrack(int);
+    void addTrackEffect(const QDomElement &, int);
+    void showTrackEffects(int);
 };
 
 #endif