From 1af3b165c9377702ca62a64112bc089a6f575c30 Mon Sep 17 00:00:00 2001 From: "Roberto C. Sanchez" Date: Tue, 21 Oct 2014 22:48:19 -0400 Subject: Imported Upstream version 2.0~beta2 --- bibletime/backend/chtmlexportrendering.h | 60 -------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 bibletime/backend/chtmlexportrendering.h (limited to 'bibletime/backend/chtmlexportrendering.h') diff --git a/bibletime/backend/chtmlexportrendering.h b/bibletime/backend/chtmlexportrendering.h deleted file mode 100644 index 0526df9..0000000 --- a/bibletime/backend/chtmlexportrendering.h +++ /dev/null @@ -1,60 +0,0 @@ -// -// C++ Interface: chtmlexportrendering -// -// Description: -// -// -// Author: The BibleTime team , (C) 2004 -// -// Copyright: See COPYING file that comes with this distribution -// -// -#ifndef RENDERINGCHTMLEXPORTRENDERING_H -#define RENDERINGCHTMLEXPORTRENDERING_H - -#include "cswordbackend.h" -#include "ctextrendering.h" - -#include "frontend/cbtconfig.h" - -namespace Rendering { - - /** - * This CTextRenerding implementation - * creates HTML specially made for export as HTML files. - * @short HTML rendering for export. - * @author The BibleTime team - */ - -class CHTMLExportRendering : public CTextRendering { - -public: - struct Settings { - Settings(const bool text = true) { - addText = text; - }; - - bool addText; - }; - - CHTMLExportRendering( - const Settings& settings, - CSwordBackend::DisplayOptions displayOptions = CBTConfig::getDisplayOptionDefaults(), - CSwordBackend::FilterOptions filterOptions = CBTConfig::getFilterOptionDefaults() - ); - virtual ~CHTMLExportRendering(); - -protected: - virtual const QString renderEntry( const KeyTreeItem&, CSwordKey* = 0 ); - virtual const QString finishText( const QString&, KeyTree& tree ); - virtual const QString entryLink( const KeyTreeItem& item, CSwordModuleInfo* module ); - virtual void initRendering(); - - CSwordBackend::DisplayOptions m_displayOptions; - CSwordBackend::FilterOptions m_filterOptions; - Settings m_settings; -}; - -} - -#endif -- cgit v1.2.3