X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fsubprojectitem.h;h=5332e1db9f56ff8d8095c702a45a6ce652456038;hb=56aee6aedeeed3efd10ada8fe3c229eddc01ef05;hp=e38846f58ef02a19e0fcb1ce91cf8d46c3685729;hpb=89ad56a57ca4cb7b92de22d3c7d443325eff4e5b;p=kdenlive diff --git a/src/subprojectitem.h b/src/subprojectitem.h index e38846f5..5332e1db 100644 --- a/src/subprojectitem.h +++ b/src/subprojectitem.h @@ -38,24 +38,29 @@ class DocClipBase; class SubProjectItem : public QTreeWidgetItem { public: - SubProjectItem(QTreeWidgetItem * parent, int in, int out); + SubProjectItem(double display_ratio, QTreeWidgetItem * parent, int in, int out, const QString& description = QString()); virtual ~SubProjectItem(); QDomElement toXml() const; int numReferences() const; DocClipBase *referencedClip(); QPoint zone() const; + void setZone(const QPoint &p); + QString description() const; + void setDescription(const QString& desc); + static int itemDefaultHeight(); /** Make sure folders appear on top of the tree widget */ virtual bool operator<(const QTreeWidgetItem &other)const { - int column = treeWidget()->sortColumn(); - if (other.type() != PROJECTFOLDERTYPE) - return text(column).toLower() < other.text(column).toLower(); - else return false; + int column = treeWidget()->sortColumn(); + if (other.type() != ProjectFoldeType) + return text(column).toLower() < other.text(column).toLower(); + else return false; } private: int m_in; int m_out; + QString m_description; }; #endif