mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
116 lines
2.5 KiB
C++
116 lines
2.5 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 */
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QList>
|
|
#include <QString>
|
|
|
|
constexpr unsigned DEFAULT_MAX_HISTORY_ITEM_LENGTH = 256;
|
|
|
|
|
|
/// Search history
|
|
///
|
|
/// To work with the original GD's history file,
|
|
/// every entry starts with a number like "123 word"
|
|
///
|
|
class History: public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/// An item in history
|
|
struct Item
|
|
{
|
|
QString word;
|
|
|
|
// For assisting QList::contains & QList::removeOne
|
|
bool operator==( Item const & other ) const
|
|
{
|
|
return QString::compare( word, other.word, Qt::CaseInsensitive ) == 0;
|
|
}
|
|
};
|
|
|
|
/// Loads history from its file. If the loading fails, the result would be an empty history.
|
|
explicit History( unsigned size = 256, 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 * );
|
|
};
|