mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
03736c2193
to identify them.
186 lines
4.1 KiB
C++
186 lines
4.1 KiB
C++
/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.berlios.de>
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
#ifndef __CONFIG_HH_INCLUDED__
|
|
#define __CONFIG_HH_INCLUDED__
|
|
|
|
#include <vector>
|
|
#include <QString>
|
|
#include <QSize>
|
|
#include "ex.hh"
|
|
|
|
/// GoldenDict's configuration
|
|
namespace Config {
|
|
|
|
using std::vector;
|
|
|
|
/// A path where to search for the dictionaries
|
|
struct Path
|
|
{
|
|
QString path;
|
|
bool recursive;
|
|
|
|
Path(): recursive( false ) {}
|
|
Path( QString const & path_, bool recursive_ ):
|
|
path( path_ ), recursive( recursive_ ) {}
|
|
};
|
|
|
|
/// A list of paths where to search for the dictionaries
|
|
typedef vector< Path > Paths;
|
|
|
|
/// A directory holding bunches of audiofiles, which is indexed into a separate
|
|
/// dictionary.
|
|
struct SoundDir
|
|
{
|
|
QString path, name;
|
|
|
|
SoundDir()
|
|
{}
|
|
|
|
SoundDir( QString const & path_, QString const & name_ ):
|
|
path( path_ ), name( name_ )
|
|
{}
|
|
};
|
|
|
|
/// A list of SoundDirs
|
|
typedef vector< SoundDir > SoundDirs;
|
|
|
|
struct DictionaryRef
|
|
{
|
|
QString id; // Dictionrary id, which is usually an md5 hash
|
|
QString name; // Dictionary name, used to recover when its id changes
|
|
|
|
DictionaryRef()
|
|
{}
|
|
|
|
DictionaryRef( QString const & id_, QString const & name_ ):
|
|
id( id_ ), name( name_ ) {}
|
|
};
|
|
|
|
/// A dictionary group
|
|
struct Group
|
|
{
|
|
unsigned id;
|
|
QString name, icon;
|
|
vector< DictionaryRef > dictionaries;
|
|
|
|
Group(): id( 0 ) {}
|
|
};
|
|
|
|
/// All the groups
|
|
struct Groups: public vector< Group >
|
|
{
|
|
unsigned nextId; // Id to use to create the group next time
|
|
|
|
Groups(): nextId( 1 )
|
|
{}
|
|
};
|
|
|
|
/// Proxy server configuration
|
|
struct ProxyServer
|
|
{
|
|
bool enabled;
|
|
|
|
enum Type
|
|
{
|
|
Socks5 = 0,
|
|
HttpConnect,
|
|
HttpGet
|
|
} type;
|
|
|
|
QString host;
|
|
unsigned port;
|
|
QString user, password;
|
|
|
|
ProxyServer();
|
|
};
|
|
|
|
/// Various user preferences
|
|
struct Preferences
|
|
{
|
|
bool enableTrayIcon;
|
|
bool startToTray;
|
|
bool closeToTray;
|
|
bool enableScanPopup;
|
|
bool startWithScanPopupOn;
|
|
bool enableScanPopupModifiers;
|
|
unsigned long scanPopupModifiers; // Combination of KeyboardState::Modifier
|
|
|
|
ProxyServer proxyServer;
|
|
|
|
Preferences();
|
|
};
|
|
|
|
/// A MediaWiki network dictionary definition
|
|
struct MediaWiki
|
|
{
|
|
QString id, name, url;
|
|
bool enabled;
|
|
|
|
MediaWiki(): enabled( false )
|
|
{}
|
|
|
|
MediaWiki( QString const & id_, QString const & name_, QString const & url_,
|
|
bool enabled_ ):
|
|
id( id_ ), name( name_ ), url( url_ ), enabled( enabled_ ) {}
|
|
};
|
|
|
|
/// Hunspell configuration
|
|
struct Hunspell
|
|
{
|
|
QString dictionariesPath;
|
|
|
|
typedef vector< QString > Dictionaries;
|
|
|
|
Dictionaries enabledDictionaries;
|
|
};
|
|
|
|
/// All the MediaWikis
|
|
typedef vector< MediaWiki > MediaWikis;
|
|
|
|
struct Class
|
|
{
|
|
Paths paths;
|
|
SoundDirs soundDirs;
|
|
Groups groups;
|
|
Preferences preferences;
|
|
MediaWikis mediawikis;
|
|
Hunspell hunspell;
|
|
|
|
unsigned lastMainGroupId; // Last used group in main window
|
|
unsigned lastPopupGroupId; // Last used group in popup window
|
|
QSize lastPopupSize;
|
|
|
|
QByteArray mainWindowState; // Binary state saved by QMainWindow
|
|
QByteArray mainWindowGeometry; // Geometry saved by QMainWindow
|
|
|
|
Class(): lastMainGroupId( 0 ), lastPopupGroupId( 0 ) {}
|
|
};
|
|
|
|
DEF_EX( exError, "Error with the program's configuration", std::exception )
|
|
DEF_EX( exCantUseHomeDir, "Can't use home directory to store GoldenDict preferences", exError )
|
|
DEF_EX( exCantUseIndexDir, "Can't use index directory to store GoldenDict index files", exError )
|
|
DEF_EX( exCantReadConfigFile, "Can't read the configuration file", exError )
|
|
DEF_EX( exCantWriteConfigFile, "Can't write the configuration file", exError )
|
|
DEF_EX( exMalformedConfigFile, "The configuration file is malformed", exError )
|
|
|
|
/// Loads the configuration, or creates the default one if none is present
|
|
Class load() throw( exError );
|
|
|
|
/// Saves the configuration
|
|
void save( Class const & ) throw( exError );
|
|
|
|
/// Returns the index directory, where the indices are to be stored.
|
|
QString getIndexDir() throw( exError );
|
|
|
|
/// Returns the user .css file name.
|
|
QString getUserCssFileName() throw( exError );
|
|
|
|
/// Returns the user .css file name for the Qt interface customization.
|
|
QString getUserQtCssFileName() throw( exError );
|
|
|
|
}
|
|
|
|
#endif
|
|
|