]> git.lyx.org Git - lyx.git/blob - src/frontends/LyXScreenFactory.h
Handle Qt-style file filters like
[lyx.git] / src / frontends / LyXScreenFactory.h
1 // -*- C++ -*-
2 /**
3  * \file LyXScreenFactory.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYXSCREENFACTORY_H
13 #define LYXSCREENFACTORY_H
14
15 class WorkArea;
16 class LyXScreen;
17
18 namespace LyXScreenFactory {
19         /**
20          * Make a screen renderer. Used because we want to
21          * generate a toolkit-specific instance.
22          */
23         LyXScreen * create(WorkArea & owner);
24 }
25
26 #endif // LYXSCREEN_FACTORY_H