summaryrefslogtreecommitdiff
path: root/src/frontend/displaywindow/cdisplaywindowfactory.h
blob: 4bc4372cd197e18a50681e5ec533ed22a7648c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// C++ Interface: cdisplaywindowfactory
//
// Description: 
//
//
// Author: The BibleTime team <info@bibletime.info>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef CDISPLAYWINDOWFACTORY_H
#define CDISPLAYWINDOWFACTORY_H

#include "cdisplaywindow.h"

class CSwordModuleInfo;


class CReadWindow;
class CWriteWindow;
class CMDIArea;

class CDisplayWindowFactory
{
public:
	static CReadWindow* createReadInstance(QList<CSwordModuleInfo*> modules, CMDIArea* parent);
	static CWriteWindow* createWriteInstance(QList<CSwordModuleInfo*> modules, CMDIArea* parent, const CDisplayWindow::WriteWindowType type = CDisplayWindow::HTMLWindow);

private:
	CDisplayWindowFactory();
};

#endif