1 /**
2  * This file is a part of Luminance HDR package.
3  * ----------------------------------------------------------------------
4  * Copyright (C) 2018 Franco Comida
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  * ----------------------------------------------------------------------
20  *
21  * @author Franco Comida <fcomida@users.sourceforge.net>
22  */
23 
24 #ifndef HDRPREVIEW_H
25 #define HDRPREVIEW_H
26 
27 #include <QDialog>
28 
29 #include "Viewers/HdrViewer.h"
30 
31 namespace Ui {
32 class HdrPreview;
33 }
34 
35 class HdrPreview : public QDialog {
36     Q_OBJECT
37 
38    public:
39     HdrPreview(QDialog *parent = 0, Qt::WindowFlags f = 0);
40     ~HdrPreview();
41 
setFrame(std::shared_ptr<pfs::Frame> frame)42     void setFrame(std::shared_ptr<pfs::Frame> frame) {m_viewer->setFrameShared(frame); }
43 
44     protected:
45     QScopedPointer<Ui::HdrPreview> m_Ui;
46     QSharedPointer<HdrViewer> m_viewer;
47 
48     void showEvent(QShowEvent *);
49 
50    private slots:
51     void reject();
52 };
53 
54 #endif
55