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/cswordldkey.h

111 lines
2.7 KiB

/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2006 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License version 2.0.
*
**********/
#ifndef CSWORDLDKEY_H
#define CSWORDLDKEY_H
//own includes
#include "cswordkey.h"
#include "cswordmoduleinfo.h"
//TQt includes
#include <tqstring.h>
//Sword includes
#include <swkey.h>
/**
* This class is the implementation of CSwordKey used for dictionaries and lexicons.
*
* CSwordLDKey is the implementation of CKey for Lexicons and dictionaries.
* It provides a simple interface to set the current key,
* to get the text for the key and functions to get the next and previous items
* of the used module in comparision to the current key.<BR>
* Here's an example how to use this class:<BR>
* @code
* CSwordLexiconModuleInfo* m_module = backend()->findModuleByName("ISBE");
* CSwordLDKey ldKey(m_module);
* ldKey.key("Adam");
* ldKey.nextEntry();
* qDebug( TQString("The current key is: %1").tqarg(ldKey.key()));
* @endcode
*
* Please not, that the result will be invalid if use the operator const char*
* on the adress of the object, use something like this
*
* @code
* CSwordLDKey* key = new CSwordLDKey( lexicon_module );
* const TQString keyname = key->getKey();
* @endcode
*
* @author The BibleTime team
* @version $Id: cswordldkey.h,v 1.25 2007/10/26 18:26:23 jerickson314 Exp $
*/
class CSwordLDKey : public CSwordKey, public sword::SWKey {
public:
/**
* Constructor of CSwordLDKey
*/
CSwordLDKey( CSwordModuleInfo* module );
/**
* Copy constructor for this key class.
*/
CSwordLDKey( const CSwordLDKey &k );
/**
* Copy constructor for this key class.
*/
CSwordLDKey( const sword::SWKey *k, CSwordModuleInfo* module);
/**
* Clones this object by copying the members.
*/
virtual CSwordLDKey* copy() const;
/**
* Uses the parameter to returns the next entry afer this key.
*/
CSwordLDKey* NextEntry( void );
/**
* Uses the parameter to returns the previous entry afer this key.
*/
CSwordLDKey* PreviousEntry( void );
/**
* Sets the module of this key.
*/
virtual CSwordModuleInfo* const module( CSwordModuleInfo* const module = 0 );
/**
* Returns the current key as a TQString
*/
virtual const TQString key() const;
/**
* Set the current key
*/
virtual const bool key( const TQString& newKey );
/**
* Returns the current key as a TQString
*/
virtual const bool key( const char* );
/**
* Assignment operator for more ease of use of this class.
*/
virtual CSwordLDKey& operator = (const TQString& keyname );
protected:
/**
* The raw key for direct use with Sword.
*/
virtual const char * rawKey() const;
};
#endif