2003-08-23 00:17:00 +00:00
|
|
|
// -*- C++ -*-
|
2002-06-18 15:44:30 +00:00
|
|
|
/**
|
|
|
|
* \file LyXScreenFactory.h
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-06-18 15:44:30 +00:00
|
|
|
*
|
2002-12-01 22:59:25 +00:00
|
|
|
* \author John Levon
|
2002-09-05 14:10:50 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-06-18 15:44:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LYXSCREENFACTORY_H
|
|
|
|
#define LYXSCREENFACTORY_H
|
2002-12-01 22:59:25 +00:00
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
class WorkArea;
|
|
|
|
class LyXScreen;
|
|
|
|
|
|
|
|
namespace LyXScreenFactory {
|
|
|
|
/**
|
2002-12-01 22:59:25 +00:00
|
|
|
* Make a screen renderer. Used because we want to
|
2002-06-18 15:44:30 +00:00
|
|
|
* generate a toolkit-specific instance.
|
|
|
|
*/
|
|
|
|
LyXScreen * create(WorkArea & owner);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LYXSCREEN_FACTORY_H
|