aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/metadatadialog.h
blob: 0ed2f173d519d4aa2d4f7be9b6e0cb20ddc4a42e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef NEWDIALOG_H
#define NEWDIALOG_H

#include <QDialog>

namespace Ui {
class MetadataDialog;
}

class MetadataDialog : public QDialog
{
    Q_OBJECT

public:
    explicit MetadataDialog(QWidget *parent = 0);
    ~MetadataDialog();

    void setMetadata(const QString& title, const QString& author);
    QString title() const;
    QString author() const;

private:
    Ui::MetadataDialog *_ui;
};

#endif // NEWDIALOG_H