diff options
-rw-r--r-- | qrtclient/tickethistory.hxx | 159 |
1 files changed, 79 insertions, 80 deletions
diff --git a/qrtclient/tickethistory.hxx b/qrtclient/tickethistory.hxx index 2d766f6..effe9f1 100644 --- a/qrtclient/tickethistory.hxx +++ b/qrtclient/tickethistory.hxx @@ -9,103 +9,102 @@ struct rtclient_ticket_history_list; namespace RTClient { - class TicketHistory - { - public: - TicketHistory(struct rtclient_ticket_history* history) - : m_id{history->id} - , m_ticket{history->ticket} - , m_timeTaken{history->time_taken} - , m_type{history->type} - , m_description{history->description} - , m_content{history->content} - , m_creator{history->creator} - { - if (history->field) - m_field = QString{history->field}; - if (history->old_value) - m_oldValue = QString{history->old_value}; - if (history->new_value) - m_newValue = QString{history->new_value}; - if (history->data) - m_data = QString{history->data}; - } - unsigned int id() const { return m_id; } - unsigned int ticket() const { return m_ticket; } - unsigned int timeTaken() const { return m_timeTaken; } -// Q_ENUM(rtclient_ticket_history_type) - rtclient_ticket_history_type type() const { return m_type; } - QString const& field() const { return m_field; } - QString const& oldValue() const { return m_oldValue; } - QString const& newValue() const { return m_newValue; } - QString const& data() const { return m_data; } - QString const& description() const { return m_description; } - QString const& content() const { return m_content; } - QString const& creator() const { return m_creator; } - QDateTime const& created() const { return m_created; } +class TicketHistory +{ + public: + TicketHistory(struct rtclient_ticket_history* history) : + m_id{history->id}, + m_ticket{history->ticket}, + m_timeTaken{history->time_taken}, + m_type{history->type}, + m_description{history->description}, + m_content{history->content}, + m_creator{history->creator} + { + if (history->field) + m_field = QString{history->field}; + if (history->old_value) + m_oldValue = QString{history->old_value}; + if (history->new_value) + m_newValue = QString{history->new_value}; + if (history->data) + m_data = QString{history->data}; + } + unsigned int id() const { return m_id; } + unsigned int ticket() const { return m_ticket; } + unsigned int timeTaken() const { return m_timeTaken; } + //Q_ENUM(rtclient_ticket_history_type) + rtclient_ticket_history_type type() const { return m_type; } + QString const& field() const { return m_field; } + QString const& oldValue() const { return m_oldValue; } + QString const& newValue() const { return m_newValue; } + QString const& data() const { return m_data; } + QString const& description() const { return m_description; } + QString const& content() const { return m_content; } + QString const& creator() const { return m_creator; } + QDateTime const& created() const { return m_created; } - private: - unsigned int m_id; - unsigned int m_ticket; - unsigned int m_timeTaken; - rtclient_ticket_history_type m_type; - QString m_field; - QString m_oldValue; - QString m_newValue; - QString m_data; - QString m_description; - QString m_content; - QString m_creator; - QDateTime m_created; -// QList<TicketHistoryAttachment>* m_attachments; - }; + private: + unsigned int m_id; + unsigned int m_ticket; + unsigned int m_timeTaken; + rtclient_ticket_history_type m_type; + QString m_field; + QString m_oldValue; + QString m_newValue; + QString m_data; + QString m_description; + QString m_content; + QString m_creator; + QDateTime m_created; + //QList<TicketHistoryAttachment>* m_attachments; +}; - class TicketHistoryList : public QAbstractListModel - { - Q_OBJECT +class TicketHistoryList : public QAbstractListModel +{ + Q_OBJECT Q_PROPERTY(int rowCount READ rowCount NOTIFY rowCountChanged) - public: - enum TicketHistoryRoles { - IdRole = Qt::UserRole + 1, - TicketRole, - TimeTakenRole, - TypeRole, - FieldRole, - OldValueRole, - NewValueRole, - DataRole, - DescriptionRole, - ContentRole, - CreatorRole, - CreatedRole/*, - AttachmentsRole*/ - }; + public: + enum TicketHistoryRoles { + IdRole = Qt::UserRole + 1, + TicketRole, + TimeTakenRole, + TypeRole, + FieldRole, + OldValueRole, + NewValueRole, + DataRole, + DescriptionRole, + ContentRole, + CreatorRole, + CreatedRole/*, + AttachmentsRole*/ + }; explicit TicketHistoryList(QObject* parent = nullptr) : QAbstractListModel{parent} {} - int rowCount(QModelIndex const& parent - = QModelIndex()) const Q_DECL_OVERRIDE; - QVariant data(const QModelIndex& index - , int role = Qt::DisplayRole - ) const Q_DECL_OVERRIDE; + int rowCount(QModelIndex const& parent + = QModelIndex()) const Q_DECL_OVERRIDE; + QVariant data(const QModelIndex& index, + int role = Qt::DisplayRole + ) const Q_DECL_OVERRIDE; public slots: void update(rtclient_ticket_history_list* list); - protected: - QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE; + protected: + QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE; signals: void rowCountChanged(); void updated(); - private: - QList<TicketHistory> histories; - void addTicketHistory(TicketHistory const& history); - }; + private: + QList<TicketHistory> histories; +}; } -#endif // QRTCLIENT_TICKET_HISTORY_HXX +#endif |