Mercurial > retraceit
comparison src/metadataview.h @ 37:0c05958d254c
(issue 13, 6) Add constant index number column to data and view
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 06 May 2015 17:17:13 +0200 |
parents | f10d4e035eec |
children | 73e6b6b12412 |
comparison
equal
deleted
inserted
replaced
36:92bb9687d716 | 37:0c05958d254c |
---|---|
30 * @returns a localized error message in case of parsing errors. Or | 30 * @returns a localized error message in case of parsing errors. Or |
31 * an empty string on success. */ | 31 * an empty string on success. */ |
32 QString parseMetaData(const QString& fileName); | 32 QString parseMetaData(const QString& fileName); |
33 | 33 |
34 Q_SIGNALS: | 34 Q_SIGNALS: |
35 /**@brief emited when the selection changed. | 35 /**@brief emited when the selection changed. */ |
36 * | |
37 * @param pictureFile: The file that is now selected. | |
38 * @param info: Additional info to show with the file.*/ | |
39 void selectionChanged(const QString& pictureFile, int current, int max, | 36 void selectionChanged(const QString& pictureFile, int current, int max, |
40 const QDateTime& timestamp); | 37 const QDateTime& timestamp, int number); |
41 | 38 |
42 protected slots: | 39 protected slots: |
43 /** @brief internal slot to handle table view selection changes */ | 40 /** @brief internal slot to handle table view selection changes */ |
44 void viewSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected); | 41 void viewSelectionChanged(const QItemSelection& selected, const QItemSelection& deselected); |
45 | 42 |