X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fheadertrack.h;h=4264b0737ec083a662d6e427b334e95929025bbb;hb=010c83463c93a1cbf2658cced5d93b6d49a38bbc;hp=f933dc6e514ca92379a310a9c7de61e2a4964386;hpb=86930a8503d9ea42a4df2f58cf687d6f1d922bf6;p=kdenlive diff --git a/src/headertrack.h b/src/headertrack.h index f933dc6e..4264b073 100644 --- a/src/headertrack.h +++ b/src/headertrack.h @@ -1,23 +1,60 @@ +/*************************************************************************** + * 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 +#include +#include "definitions.h" +#include "ui_trackheader_ui.h" class HeaderTrack : public QWidget { Q_OBJECT public: - HeaderTrack(int index, QWidget *parent = 0); + HeaderTrack(int index, TrackInfo info, QWidget *parent = 0); protected: - virtual void paintEvent(QPaintEvent * /*e*/); + //virtual void paintEvent(QPaintEvent * /*e*/); + virtual void contextMenuEvent(QContextMenuEvent * event); private: int m_index; - QString m_label; - -public slots: - + TRACKTYPE m_type; + Ui::TrackHeader_UI view; + QMenu *m_contextMenu; + +private slots: + void switchAudio(); + void switchVideo(); + void slotDeleteTrack(); + void slotAddTrack(); + void slotChangeTrack(); + +signals: + void switchTrackAudio(int); + void switchTrackVideo(int); + void insertTrack(int); + void deleteTrack(int); + void changeTrack(int); }; #endif