Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_dlg_hlg_import.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2021 Wolthera van Hövell tot Westerflier <griffinvalley@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6#ifndef KIS_DLG_HDR_IMPORT_H
7#define KIS_DLG_HDR_IMPORT_H
8
9#include <KoDialog.h>
10
11#include "kritaui_export.h"
12
13namespace Ui
14{
15class DlgHeifImport;
16}
17
18class KRITAUI_EXPORT KisDlgHLGImport : public KoDialog
19{
20 Q_OBJECT
21
22public:
23 explicit KisDlgHLGImport(bool applyOOTF, float gamma, float brightness, QWidget *parent = nullptr);
24 bool applyOOTF();
25 float gamma();
26 float nominalPeakBrightness();
27private Q_SLOTS:
28 void toggleHLGOptions(bool toggle);
29
30private:
31 Ui::DlgHeifImport *ui;
32};
33
34#endif // KIS_DLG_HDR_IMPORT_H
Ui::DlgHeifImport * ui
A dialog base class with standard buttons and predefined layouts.
Definition KoDialog.h:116