]> git.lyx.org Git - lyx.git/blob - src/frontends/qt/DialogFactory.h
Properly scale some icons for HiDPI (#12695)
[lyx.git] / src / frontends / qt / DialogFactory.h
1 // -*- C++ -*-
2 /**
3  * \file DialogFactory.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Yuriy Skalko
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef DIALOG_FACTORY_H
13 #define DIALOG_FACTORY_H
14
15 #include <string>
16
17 namespace lyx {
18 namespace frontend {
19
20 class Dialog;
21 class GuiView;
22
23
24 Dialog * createDialog(GuiView & gv, std::string const & name);
25
26
27 } // namespace frontend
28 } // namespace lyx
29
30 #endif // DIALOG_FACTORY_H