show property changes in main list
This commit is contained in:
@@ -15,6 +15,8 @@
|
||||
#include <QString>
|
||||
#include <QObject>
|
||||
|
||||
#include <QStandardItem>
|
||||
|
||||
|
||||
/*!
|
||||
\brief
|
||||
@@ -110,20 +112,35 @@ public:
|
||||
*/
|
||||
QList<cImageDescription*> images();
|
||||
|
||||
/*!
|
||||
\brief
|
||||
|
||||
\fn setItem
|
||||
\param itemList
|
||||
*/
|
||||
void setItem(QList<QStandardItem*> itemList);
|
||||
/*!
|
||||
\brief
|
||||
|
||||
\fn item
|
||||
\return QList<QStandardItem*>
|
||||
*/
|
||||
QList<QStandardItem*> item();
|
||||
|
||||
/*!
|
||||
\brief
|
||||
|
||||
\fn setDeleted
|
||||
\param bDeleted
|
||||
*/
|
||||
void setDeleted(bool bDeleted);
|
||||
void setDeleted(bool bDeleted);
|
||||
/*!
|
||||
\brief
|
||||
|
||||
\fn deleted
|
||||
\return bool
|
||||
*/
|
||||
bool deleted();
|
||||
bool deleted();
|
||||
|
||||
private:
|
||||
qint32 m_iID; /*!< TODO: describe */
|
||||
@@ -131,6 +148,7 @@ private:
|
||||
QString m_szType; /*!< TODO: describe */
|
||||
cTextDocument* m_lpDescription; /*!< TODO: describe */
|
||||
QList<cImageDescription*> m_imageList; /*!< TODO: describe */
|
||||
QList<QStandardItem*> m_itemList; /*!< TODO: describe */
|
||||
bool m_bDeleted; /*!< TODO: describe */
|
||||
|
||||
signals:
|
||||
|
||||
Reference in New Issue
Block a user