X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fheadertrack.h;h=4950051efca68b1e14e9db6625f366569c053497;hb=2bb3e6b046c0ecd26ced536bd2bfd0487bc7fb06;hp=9012055d6019679fe17ade88c1d6982c53bf34d7;hpb=2a223cff6e45c560c28857b72c0cb7e584f9a4ef;p=kdenlive diff --git a/src/headertrack.h b/src/headertrack.h index 9012055d..4950051e 100644 --- a/src/headertrack.h +++ b/src/headertrack.h @@ -1,21 +1,64 @@ +/*************************************************************************** + * 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(QWidget *parent = 0); + HeaderTrack(int index, TrackInfo info, QWidget *parent = 0); + ~HeaderTrack(); + void setLock(bool lock); protected: - virtual void paintEvent(QPaintEvent * /*e*/); + //virtual void paintEvent(QPaintEvent * /*e*/); + virtual void contextMenuEvent(QContextMenuEvent * event); private: + int m_index; + TRACKTYPE m_type; + Ui::TrackHeader_UI view; + QMenu *m_contextMenu; -public slots: +private slots: + void switchAudio(); + void switchVideo(); + void slotDeleteTrack(); + void slotAddTrack(); + void slotChangeTrack(); + void switchLock(bool emitSignal = true); +signals: + void switchTrackAudio(int); + void switchTrackVideo(int); + void switchTrackLock(int); + void insertTrack(int); + void deleteTrack(int); + void changeTrack(int); }; #endif