You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bibletime/bibletime/frontend/crossrefrendering.h

37 lines
852 B

//
// C++ Interface: crossrefrendering
//
// Description:
//
//
// Author: The BibleTime team <info@bibletime.info>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef INFODISPLAYCROSSREFRENDERING_H
#define INFODISPLAYCROSSREFRENDERING_H
//Backend includes
#include "backend/chtmlexportrendering.h"
namespace InfoDisplay {
class CrossRefRendering : public Rendering::CHTMLExportRendering {
protected:
friend class CInfoDisplay;
CrossRefRendering(
CSwordBackend::DisplayOptions displayOptions = CBTConfig::getDisplayOptionDefaults(),
CSwordBackend::FilterOptions filterOptions = CBTConfig::getFilterOptionDefaults()
);
virtual const TQString entryLink( const KeyTreeItem& item, CSwordModuleInfo* module );
virtual const TQString finishText( const TQString&, KeyTree& tree );
};
};
#endif