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/backend/cchapterdisplay.h

40 lines
926 B

//
// C++ Interface: cchapterdisplay
//
// Description:
//
//
// Author: The BibleTime team <info@bibletime.info>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef RENDERINGCCHAPTERDISPLAY_H
#define RENDERINGCCHAPTERDISPLAY_H
#include "centrydisplay.h"
namespace Rendering {
/** Chapter rendering.
* A CEntryDisplay implementation mde for Bibles to display whole chapters
* at once.
* @author The BibleTime team
*/
class CChapterDisplay : public CEntryDisplay {
public: // Public methods
virtual ~CChapterDisplay() {}
/**
* Returns the rendered text using the modules in the list and using the key parameter.
* The displayoptions and filter options are used, too.
*/
virtual const TQString text( const ListCSwordModuleInfo& modules, const TQString& key, const CSwordBackend::DisplayOptions displayOptions, const CSwordBackend::FilterOptions filterOptions);
};
};
#endif