goldendict-ng/src/history.hh

140 lines
3.1 KiB
C++

/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef __HISTORY_HH_INCLUDED__
#define __HISTORY_HH_INCLUDED__
#include <QObject>
#include <QList>
#include <QString>
#define DEFAULT_MAX_HISTORY_ITEM_LENGTH 256
/// Search history
class History: public QObject
{
Q_OBJECT
public:
/// An item in history
struct Item
{
/// Group the search was performed in
unsigned groupId;
/// The word that was searched
QString word;
Item():
groupId( 0 )
{
}
Item( unsigned groupId_, QString const & word_ ):
groupId( groupId_ ),
word( word_ )
{
}
bool operator==( Item const & other ) const
{
return QString::compare( word, other.word, Qt::CaseInsensitive ) == 0 && groupId == other.groupId;
}
bool operator!=( Item const & other ) const
{
return !operator==( other );
}
};
/// Indicates an intention to load -- see the relevant History constructor.
struct Load
{};
/// Constructs an empty history which can hold at most "size" items.
History( unsigned size = 20, unsigned maxItemLength = DEFAULT_MAX_HISTORY_ITEM_LENGTH );
/// Loads history from its file. If load fails, the result would be an empty
/// history. The size parameter is same as in other constructor.
explicit History( Load, unsigned size = 20, unsigned maxItemLength = DEFAULT_MAX_HISTORY_ITEM_LENGTH );
/// Adds new item. The item is always added at the beginning of the list.
/// If there was such an item already somewhere on the list, it gets removed
/// from there. If otherwise the resulting list gets too large, the oldest
/// item gets removed from the end of the list.
void addItem( Item const & );
Item getItem( int index );
/// Remove item with given index from list
void removeItem( int index )
{
items.removeAt( index );
dirty = true;
emit itemsChanged();
}
/// Attempts saving history. Returns true if succeeded - false otherwise.
/// Since history isn't really that valuable, failures can be ignored.
bool save();
/// Clears history.
void clear();
/// History size.
int size() const;
/// Gets the current items. The first one is the newest one on the list.
QList< Item > const & getItems() const
{
return items;
}
/// Enable/disable add words to hystory
void enableAdd( bool enable )
{
addingEnabled = enable;
}
bool enabled()
{
return addingEnabled;
}
void setMaxSize( unsigned maxSize_ );
void setSaveInterval( unsigned interval );
unsigned getMaxSize()
{
return maxSize;
}
unsigned getMaxItemLength() const
{
return maxItemLength;
}
signals:
/// Signals the changes in items in response to addItem() or clear().
void itemsChanged();
private:
/// Returns true if the items list has been modified
/// in order to fit into the constraints.
bool ensureSizeConstraints();
QList< Item > items;
unsigned maxSize;
unsigned maxItemLength;
bool addingEnabled;
bool dirty;
int timerId;
protected:
virtual void timerEvent( QTimerEvent * );
};
#endif