change title, date and HDR

display EXIF data if more thumbs are selected
This commit is contained in:
2019-03-07 17:36:47 +01:00
parent d48e1e7331
commit 8b5339b037
16 changed files with 1013 additions and 258 deletions
+75
View File
@@ -0,0 +1,75 @@
/*!
\file cdatepicker.h
*/
#ifndef CDATEPICKER_H
#define CDATEPICKER_H
#include <QDialog>
#include <QImage>
namespace Ui {
class cDatePicker;
}
/*!
\brief
\class cDatePicker cdatepicker.h "cdatepicker.h"
*/
class cDatePicker : public QDialog
{
Q_OBJECT
public:
/*!
\brief
\fn cDatePicker
\param parent
*/
explicit cDatePicker(QWidget *parent = nullptr);
/*!
\brief
\fn ~cDatePicker
*/
~cDatePicker();
/*!
\brief
\fn setText
\param szText
*/
void setText(const QString& szText);
/*!
\brief
\fn setImage
\param image
*/
void setImage(const QImage& image);
/*!
\brief
\fn setDate
\param date
*/
void setDate(const QDate date);
/*!
\brief
\fn date
\return QDate
*/
QDate date();
private:
Ui::cDatePicker *ui; /*!< TODO: describe */
};
#endif // CDATEPICKER_H