diff options
Diffstat (limited to 'src/projects/k3bvcdlistview.h')
-rw-r--r-- | src/projects/k3bvcdlistview.h | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/src/projects/k3bvcdlistview.h b/src/projects/k3bvcdlistview.h new file mode 100644 index 0000000..71d22d7 --- /dev/null +++ b/src/projects/k3bvcdlistview.h @@ -0,0 +1,90 @@ +/* +* +* $Id: k3bvcdlistview.h 619556 2007-01-03 17:38:12Z trueg $ +* Copyright (C) 2003-2004 Christian Kvasny <chris@k3b.org> +* +* This file is part of the K3b project. +* Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.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. +* See the file "COPYING" for the exact licensing terms. +*/ + +#ifndef K3BVCDLISTVIEW_H +#define K3BVCDLISTVIEW_H + + +#include <k3blistview.h> + +#include <qmap.h> + +class QDragEnterEvent; +class QDragObject; +class QDropEvent; +class QTimer; +class KPopupMenu; +class KAction; +class K3bVcdDoc; +class K3bView; +class K3bVcdTrack; +class KActionCollection; +class K3bVcdListViewItem; +class QPainter; + + +class K3bVcdListView : public K3bListView +{ + Q_OBJECT + + public: + K3bVcdListView( K3bView*, K3bVcdDoc*, QWidget *parent = 0, const char *name = 0 ); + ~K3bVcdListView(); + + /** + * reimplemented from KListView + */ + void insertItem( QListViewItem* ); + + KActionCollection* actionCollection() const + { + return m_actionCollection; + } + + QPtrList<K3bVcdTrack> selectedTracks(); + + signals: + void lengthReady(); + + private: + void setupColumns(); + void setupPopupMenu(); + void setupActions(); + + K3bVcdDoc* m_doc; + K3bView* m_view; + + KAction* m_actionProperties; + KAction* m_actionRemove; + KActionCollection* m_actionCollection; + + KPopupMenu* m_popupMenu; + + QMap<K3bVcdTrack*, K3bVcdListViewItem*> m_itemMap; + + private slots: + void slotDropped( KListView*, QDropEvent* e, QListViewItem* after ); + void slotUpdateItems(); + void showPopupMenu( KListView*, QListViewItem* item, const QPoint& ); + void showPropertiesDialog(); + void slotRemoveTracks(); + void slotTrackRemoved( K3bVcdTrack* ); + + protected: + bool acceptDrag( QDropEvent* e ) const; + QDragObject* dragObject(); +}; + +#endif |