2003-09-02 10:29:05 +00:00
|
|
|
/**
|
|
|
|
* \file gtk/WorkAreaFactory.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Huang Ying
|
|
|
|
*
|
2003-09-02 17:02:32 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-09-02 10:29:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <gtkmm.h>
|
|
|
|
|
|
|
|
#include "frontends/WorkAreaFactory.h"
|
|
|
|
|
|
|
|
#include "GWorkArea.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace WorkAreaFactory {
|
|
|
|
|
|
|
|
|
2004-04-28 11:33:27 +00:00
|
|
|
WorkArea * create(LyXView & owner, int /*x*/, int /*y*/, int w, int h)
|
2003-09-02 10:29:05 +00:00
|
|
|
{
|
2004-04-28 11:33:27 +00:00
|
|
|
return new GWorkArea(owner, w, h);
|
2003-09-02 10:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|