]> git.sesse.net Git - kdenlive/blobdiff - src/subprojectitem.h
Add subclips (dragging a zone from clip monitor to project tree)
[kdenlive] / src / subprojectitem.h
diff --git a/src/subprojectitem.h b/src/subprojectitem.h
new file mode 100644 (file)
index 0000000..fc8e4a4
--- /dev/null
@@ -0,0 +1,53 @@
+/***************************************************************************
+ *   Copyright (C) 2007 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 SUBPROJECTITEM_H
+#define SUBPROJECTITEM_H
+
+#include <QTreeWidgetItem>
+#include <QTreeWidget>
+#include <QDomElement>
+
+#include <KUrl>
+
+#include "gentime.h"
+#include "definitions.h"
+
+class DocClipBase;
+
+/** \brief Represents a clip or a folder in the projecttree
+ *
+ * This class represents a clip or folder in the projecttree and in the document(?) */
+class SubProjectItem : public QTreeWidgetItem
+{
+public:
+    SubProjectItem(QTreeWidgetItem * parent, int in, int out);
+    virtual ~SubProjectItem();
+    QDomElement toXml() const;
+    int numReferences() const;
+    DocClipBase *referencedClip();
+    QPoint zone() const;
+
+private:
+    int m_in;
+    int m_out;
+};
+
+#endif