2012-02-20 21:47:14 +00:00
|
|
|
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
|
2009-01-28 20:55:45 +00:00
|
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
|
|
|
|
#ifndef __CONFIG_HH_INCLUDED__
|
|
|
|
#define __CONFIG_HH_INCLUDED__
|
|
|
|
|
2014-12-12 14:04:27 +00:00
|
|
|
#include <QObject>
|
2012-12-10 12:49:45 +00:00
|
|
|
#include <QVector>
|
2009-01-28 20:55:45 +00:00
|
|
|
#include <QString>
|
2009-02-06 17:16:33 +00:00
|
|
|
#include <QSize>
|
2009-04-20 19:54:34 +00:00
|
|
|
#include <QDateTime>
|
2009-04-21 18:27:26 +00:00
|
|
|
#include <QKeySequence>
|
2009-09-21 17:50:03 +00:00
|
|
|
#include <QSet>
|
2021-06-10 16:13:11 +00:00
|
|
|
#include <QMetaType>
|
2018-05-21 15:32:04 +00:00
|
|
|
#include "cpp_features.hh"
|
2009-01-28 20:55:45 +00:00
|
|
|
#include "ex.hh"
|
|
|
|
|
2013-02-04 14:10:37 +00:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
#include <QRect>
|
|
|
|
#endif
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
/// GoldenDict's configuration
|
|
|
|
namespace Config {
|
|
|
|
|
2012-09-26 13:13:47 +00:00
|
|
|
/// Dictionaries which are temporarily disabled via the dictionary bar.
|
|
|
|
typedef QSet< QString > MutedDictionaries;
|
|
|
|
|
2012-12-07 11:59:29 +00:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
#pragma pack(push,4)
|
|
|
|
#endif
|
|
|
|
|
2009-04-04 16:06:06 +00:00
|
|
|
/// A path where to search for the dictionaries
|
2009-03-28 22:37:03 +00:00
|
|
|
struct Path
|
|
|
|
{
|
|
|
|
QString path;
|
|
|
|
bool recursive;
|
|
|
|
|
|
|
|
Path(): recursive( false ) {}
|
|
|
|
Path( QString const & path_, bool recursive_ ):
|
|
|
|
path( path_ ), recursive( recursive_ ) {}
|
2009-04-30 15:29:03 +00:00
|
|
|
|
|
|
|
bool operator == ( Path const & other ) const
|
|
|
|
{ return path == other.path && recursive == other.recursive; }
|
2009-03-28 22:37:03 +00:00
|
|
|
};
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
/// A list of paths where to search for the dictionaries
|
2012-12-10 12:49:45 +00:00
|
|
|
typedef QVector< Path > Paths;
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-04-04 16:06:06 +00:00
|
|
|
/// A directory holding bunches of audiofiles, which is indexed into a separate
|
|
|
|
/// dictionary.
|
|
|
|
struct SoundDir
|
|
|
|
{
|
|
|
|
QString path, name;
|
2013-02-02 18:25:24 +00:00
|
|
|
QString iconFilename;
|
2009-04-04 16:06:06 +00:00
|
|
|
|
|
|
|
SoundDir()
|
|
|
|
{}
|
|
|
|
|
2013-02-02 22:00:19 +00:00
|
|
|
SoundDir( QString const & path_, QString const & name_, QString iconFilename_ = "" ):
|
2013-02-02 18:25:24 +00:00
|
|
|
path( path_ ), name( name_ ), iconFilename( iconFilename_ )
|
2009-04-04 16:06:06 +00:00
|
|
|
{}
|
2009-04-30 15:29:03 +00:00
|
|
|
|
|
|
|
bool operator == ( SoundDir const & other ) const
|
2013-02-02 18:25:24 +00:00
|
|
|
{ return path == other.path && name == other.name && iconFilename == other.iconFilename; }
|
2009-04-04 16:06:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// A list of SoundDirs
|
2012-12-10 12:49:45 +00:00
|
|
|
typedef QVector< SoundDir > SoundDirs;
|
2009-04-04 16:06:06 +00:00
|
|
|
|
2009-04-01 12:00:28 +00:00
|
|
|
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_ ) {}
|
2009-04-30 15:29:03 +00:00
|
|
|
|
|
|
|
bool operator == ( DictionaryRef const & other ) const
|
|
|
|
{ return id == other.id && name == other.name; }
|
2009-04-01 12:00:28 +00:00
|
|
|
};
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
/// A dictionary group
|
|
|
|
struct Group
|
|
|
|
{
|
2009-04-10 12:48:40 +00:00
|
|
|
unsigned id;
|
2009-01-28 20:55:45 +00:00
|
|
|
QString name, icon;
|
2010-07-05 18:36:03 +00:00
|
|
|
QByteArray iconData;
|
2010-07-05 14:13:29 +00:00
|
|
|
QKeySequence shortcut;
|
2017-05-05 14:39:51 +00:00
|
|
|
QString favoritesFolder;
|
2012-12-10 12:49:45 +00:00
|
|
|
QVector< DictionaryRef > dictionaries;
|
2012-09-26 13:13:47 +00:00
|
|
|
Config::MutedDictionaries mutedDictionaries; // Disabled via dictionary bar
|
|
|
|
Config::MutedDictionaries popupMutedDictionaries; // Disabled via dictionary bar in popup
|
2009-04-10 12:48:40 +00:00
|
|
|
|
|
|
|
Group(): id( 0 ) {}
|
2009-04-30 15:29:03 +00:00
|
|
|
|
|
|
|
bool operator == ( Group const & other ) const
|
2009-05-01 11:52:10 +00:00
|
|
|
{ return id == other.id && name == other.name && icon == other.icon &&
|
2017-05-05 14:39:51 +00:00
|
|
|
favoritesFolder == other.favoritesFolder &&
|
2010-07-05 18:36:03 +00:00
|
|
|
dictionaries == other.dictionaries && shortcut == other.shortcut &&
|
2012-09-26 13:59:48 +00:00
|
|
|
mutedDictionaries == other.mutedDictionaries &&
|
|
|
|
popupMutedDictionaries == other.popupMutedDictionaries &&
|
2012-10-31 13:58:35 +00:00
|
|
|
iconData == other.iconData; }
|
2009-05-18 18:01:50 +00:00
|
|
|
|
|
|
|
bool operator != ( Group const & other ) const
|
|
|
|
{ return ! operator == ( other ); }
|
2009-01-28 20:55:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// All the groups
|
2012-12-10 12:49:45 +00:00
|
|
|
struct Groups: public QVector< Group >
|
2009-04-10 12:48:40 +00:00
|
|
|
{
|
|
|
|
unsigned nextId; // Id to use to create the group next time
|
|
|
|
|
|
|
|
Groups(): nextId( 1 )
|
|
|
|
{}
|
|
|
|
};
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-04-03 17:10:27 +00:00
|
|
|
/// Proxy server configuration
|
|
|
|
struct ProxyServer
|
|
|
|
{
|
|
|
|
bool enabled;
|
2014-04-01 17:00:13 +00:00
|
|
|
bool useSystemProxy;
|
2009-04-03 17:10:27 +00:00
|
|
|
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
Socks5 = 0,
|
|
|
|
HttpConnect,
|
|
|
|
HttpGet
|
|
|
|
} type;
|
|
|
|
|
|
|
|
QString host;
|
|
|
|
unsigned port;
|
|
|
|
QString user, password;
|
2014-04-03 14:21:02 +00:00
|
|
|
QString systemProxyUser, systemProxyPassword;
|
2009-04-03 17:10:27 +00:00
|
|
|
|
|
|
|
ProxyServer();
|
|
|
|
};
|
|
|
|
|
2009-04-21 18:27:26 +00:00
|
|
|
// A hotkey -- currently qt modifiers plus one or two keys
|
|
|
|
struct HotKey
|
|
|
|
{
|
|
|
|
Qt::KeyboardModifiers modifiers;
|
|
|
|
int key1, key2;
|
|
|
|
|
|
|
|
HotKey();
|
|
|
|
|
|
|
|
/// We use the first two keys of QKeySequence, with modifiers being stored
|
|
|
|
/// in the first one.
|
|
|
|
HotKey( QKeySequence const & );
|
|
|
|
|
|
|
|
QKeySequence toKeySequence() const;
|
|
|
|
};
|
|
|
|
|
2014-04-17 14:31:51 +00:00
|
|
|
struct FullTextSearch
|
|
|
|
{
|
|
|
|
int searchMode;
|
|
|
|
bool matchCase;
|
|
|
|
int maxArticlesPerDictionary;
|
|
|
|
int maxDistanceBetweenWords;
|
|
|
|
bool useMaxDistanceBetweenWords;
|
|
|
|
bool useMaxArticlesPerDictionary;
|
|
|
|
bool enabled;
|
2017-07-25 15:28:29 +00:00
|
|
|
bool ignoreWordsOrder;
|
2018-04-10 14:49:52 +00:00
|
|
|
bool ignoreDiacritics;
|
2014-04-17 14:31:51 +00:00
|
|
|
quint32 maxDictionarySize;
|
|
|
|
QByteArray dialogGeometry;
|
|
|
|
QString disabledTypes;
|
|
|
|
|
|
|
|
FullTextSearch() :
|
|
|
|
searchMode( 0 ), matchCase( false ),
|
|
|
|
maxArticlesPerDictionary( 100 ),
|
|
|
|
maxDistanceBetweenWords( 2 ),
|
|
|
|
useMaxDistanceBetweenWords( true ),
|
|
|
|
useMaxArticlesPerDictionary( false ),
|
|
|
|
enabled( true ),
|
2017-07-25 15:28:29 +00:00
|
|
|
ignoreWordsOrder( false ),
|
2018-04-10 14:49:52 +00:00
|
|
|
ignoreDiacritics( false ),
|
2014-04-17 14:31:51 +00:00
|
|
|
maxDictionarySize( 0 )
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2018-03-29 17:00:53 +00:00
|
|
|
/// This class encapsulates supported backend preprocessor logic,
|
|
|
|
/// discourages duplicating backend names in code, which is error-prone.
|
|
|
|
class InternalPlayerBackend
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/// Returns true if at least one backend is available.
|
|
|
|
static bool anyAvailable();
|
|
|
|
/// Returns the default backend or null backend if none is available.
|
|
|
|
static InternalPlayerBackend defaultBackend();
|
|
|
|
/// Returns the name list of supported backends.
|
|
|
|
static QStringList nameList();
|
|
|
|
|
|
|
|
/// Returns true if built with FFmpeg player support and the name matches.
|
|
|
|
bool isFfmpeg() const;
|
|
|
|
/// Returns true if built with Qt Multimedia player support and the name matches.
|
|
|
|
bool isQtmultimedia() const;
|
|
|
|
|
|
|
|
QString const & uiName() const
|
|
|
|
{ return name; }
|
|
|
|
|
|
|
|
void setUiName( QString const & name_ )
|
|
|
|
{ name = name_; }
|
|
|
|
|
|
|
|
bool operator == ( InternalPlayerBackend const & other ) const
|
|
|
|
{ return name == other.name; }
|
|
|
|
|
|
|
|
bool operator != ( InternalPlayerBackend const & other ) const
|
|
|
|
{ return ! operator == ( other ); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
#ifdef MAKE_FFMPEG_PLAYER
|
|
|
|
static InternalPlayerBackend ffmpeg()
|
|
|
|
{ return InternalPlayerBackend( "FFmpeg+libao" ); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MAKE_QTMULTIMEDIA_PLAYER
|
|
|
|
static InternalPlayerBackend qtmultimedia()
|
|
|
|
{ return InternalPlayerBackend( "Qt Multimedia" ); }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
explicit InternalPlayerBackend( QString const & name_ ) : name( name_ )
|
|
|
|
{}
|
|
|
|
|
|
|
|
QString name;
|
|
|
|
};
|
|
|
|
|
2021-11-26 09:24:59 +00:00
|
|
|
#if defined( HAVE_X11 )
|
Allow customizing unpinned scan popup window flags on X11 with Qt5
My tests in many desktop environments and window managers indicate that
no single configuration works perfectly in all environments. There are
also behavior differences between Qt::Popup and Qt::Tool flags, which
are not exactly bugs, so I suppose users might subjectively prefer
different options.
Customizing the flags allows the user to prevent unpinned scan popup
window flickering with Qt5 on Linux. In a way adding these options fixes
issue #645, which is: the scan popup window blinks rapidly, barely
noticeably in some applications, such as Calibre ebook-viewer
and Chromium. In this case the scan popup window usually ends up hidden
when selection ends, unless it was finished with a jerk.
I have tested the new options in 9 desktop environments and window
managers: at least one configuration for each eliminates #645 and makes
the scan popup window work the same as with Qt4 in this regard:
the popup window remains visible, text in the popup's translation line
keeps up with the text selection in the external application,
and the selected text is being translated on the fly.
Moreover, for each tested DE/WM, at least one configuration makes
the scan popup window work perfectly as far as I am concerned.
This issue was partially worked around with a 200ms scan popup delay
timer in the recent commit 58e41fe3ceb769cab37608e36637044e597ba1f8
for the duplicate issue #854. However the timer solution is incomplete
because it requires the user to select text quickly and without delays.
If global mouse selection does not change for 200ms while the left mouse
button is held down, the user will likely not see the scan popup when
(s)he finishes selection, and will have to try selecting again -
hopefully faster this time.
The 200ms delay is no longer critically important after this commit,
but it is still beneficial: the lookup query changes less often,
which in turn reduces article definition update frequency.
So the delay improves the UI (perhaps subjectively) and performance.
2018-04-09 17:50:23 +00:00
|
|
|
// The ScanPopup window flags customization code has been tested
|
|
|
|
// only in X11 desktop environments and window managers.
|
|
|
|
// None of the window flags configurations I have tried works perfectly well
|
|
|
|
// in XFCE with Qt4. Let us enable customization code for Qt5 exclusively to
|
|
|
|
// avoid regressions with Qt4.
|
|
|
|
#define ENABLE_SPWF_CUSTOMIZATION
|
|
|
|
#endif
|
|
|
|
|
|
|
|
enum ScanPopupWindowFlags
|
|
|
|
{
|
|
|
|
SPWF_default = 0,
|
|
|
|
SPWF_Popup,
|
|
|
|
SPWF_Tool
|
|
|
|
};
|
|
|
|
ScanPopupWindowFlags spwfFromInt( int id );
|
|
|
|
|
2021-06-10 16:13:11 +00:00
|
|
|
struct InputPhrase
|
|
|
|
{
|
2021-06-18 18:33:24 +00:00
|
|
|
InputPhrase()
|
|
|
|
{}
|
|
|
|
|
|
|
|
InputPhrase( QString const & _phrase, QString const & _suffix ) :
|
|
|
|
phrase( _phrase ),
|
|
|
|
punctuationSuffix( _suffix )
|
|
|
|
{}
|
|
|
|
|
2021-06-10 16:13:11 +00:00
|
|
|
static InputPhrase fromPhrase( QString const & phrase )
|
|
|
|
{
|
2021-06-18 18:33:24 +00:00
|
|
|
return InputPhrase( phrase, QString() );
|
2021-06-10 16:13:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isValid() const { return !phrase.isEmpty(); }
|
|
|
|
|
|
|
|
QString phraseWithSuffix() const { return phrase + punctuationSuffix; }
|
|
|
|
|
|
|
|
QString phrase;
|
|
|
|
QString punctuationSuffix;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline bool operator == ( InputPhrase const & a, InputPhrase const & b )
|
|
|
|
{
|
|
|
|
return a.phrase == b.phrase && a.punctuationSuffix == b.punctuationSuffix;
|
|
|
|
}
|
|
|
|
inline bool operator != ( InputPhrase const & a, InputPhrase const & b )
|
|
|
|
{
|
|
|
|
return !( a == b );
|
|
|
|
}
|
|
|
|
|
2009-02-05 20:55:00 +00:00
|
|
|
/// Various user preferences
|
|
|
|
struct Preferences
|
|
|
|
{
|
2009-04-12 20:46:25 +00:00
|
|
|
QString interfaceLanguage; // Empty value corresponds to system default
|
2014-06-25 14:01:11 +00:00
|
|
|
QString helpLanguage; // Empty value corresponds to interface language
|
2009-05-11 11:03:36 +00:00
|
|
|
QString displayStyle; // Empty value corresponds to the default one
|
2009-04-13 12:51:25 +00:00
|
|
|
bool newTabsOpenAfterCurrentOne;
|
|
|
|
bool newTabsOpenInBackground;
|
2011-06-23 14:17:09 +00:00
|
|
|
bool hideSingleTab;
|
2011-11-02 23:37:50 +00:00
|
|
|
bool mruTabOrder;
|
2011-06-26 11:53:28 +00:00
|
|
|
bool hideMenubar;
|
2009-02-05 20:55:00 +00:00
|
|
|
bool enableTrayIcon;
|
|
|
|
bool startToTray;
|
|
|
|
bool closeToTray;
|
2009-04-18 18:16:04 +00:00
|
|
|
bool autoStart;
|
2010-04-08 20:37:59 +00:00
|
|
|
bool doubleClickTranslates;
|
2012-09-26 13:59:48 +00:00
|
|
|
bool selectWordBySingleClick;
|
2011-05-07 13:42:49 +00:00
|
|
|
bool escKeyHidesMainWindow;
|
2012-12-29 11:19:49 +00:00
|
|
|
bool alwaysOnTop;
|
2009-04-21 18:27:26 +00:00
|
|
|
|
2013-01-05 11:26:55 +00:00
|
|
|
/// An old UI mode when tranlateLine and wordList
|
|
|
|
/// are in the dockable side panel, not on the toolbar.
|
|
|
|
bool searchInDock;
|
|
|
|
|
2009-04-21 18:27:26 +00:00
|
|
|
bool enableMainWindowHotkey;
|
|
|
|
HotKey mainWindowHotkey;
|
|
|
|
bool enableClipboardHotkey;
|
|
|
|
HotKey clipboardHotkey;
|
|
|
|
|
2009-02-05 20:55:00 +00:00
|
|
|
bool enableScanPopup;
|
2009-02-08 20:20:02 +00:00
|
|
|
bool startWithScanPopupOn;
|
2009-02-05 20:55:00 +00:00
|
|
|
bool enableScanPopupModifiers;
|
|
|
|
unsigned long scanPopupModifiers; // Combination of KeyboardState::Modifier
|
2009-04-11 16:44:14 +00:00
|
|
|
bool scanPopupAltMode; // When you press modifier shortly after the selection
|
|
|
|
unsigned scanPopupAltModeSecs;
|
2018-04-16 12:23:22 +00:00
|
|
|
bool ignoreOwnClipboardChanges;
|
2011-07-09 19:26:30 +00:00
|
|
|
bool scanPopupUseUIAutomation;
|
|
|
|
bool scanPopupUseIAccessibleEx;
|
|
|
|
bool scanPopupUseGDMessage;
|
Allow customizing unpinned scan popup window flags on X11 with Qt5
My tests in many desktop environments and window managers indicate that
no single configuration works perfectly in all environments. There are
also behavior differences between Qt::Popup and Qt::Tool flags, which
are not exactly bugs, so I suppose users might subjectively prefer
different options.
Customizing the flags allows the user to prevent unpinned scan popup
window flickering with Qt5 on Linux. In a way adding these options fixes
issue #645, which is: the scan popup window blinks rapidly, barely
noticeably in some applications, such as Calibre ebook-viewer
and Chromium. In this case the scan popup window usually ends up hidden
when selection ends, unless it was finished with a jerk.
I have tested the new options in 9 desktop environments and window
managers: at least one configuration for each eliminates #645 and makes
the scan popup window work the same as with Qt4 in this regard:
the popup window remains visible, text in the popup's translation line
keeps up with the text selection in the external application,
and the selected text is being translated on the fly.
Moreover, for each tested DE/WM, at least one configuration makes
the scan popup window work perfectly as far as I am concerned.
This issue was partially worked around with a 200ms scan popup delay
timer in the recent commit 58e41fe3ceb769cab37608e36637044e597ba1f8
for the duplicate issue #854. However the timer solution is incomplete
because it requires the user to select text quickly and without delays.
If global mouse selection does not change for 200ms while the left mouse
button is held down, the user will likely not see the scan popup when
(s)he finishes selection, and will have to try selecting again -
hopefully faster this time.
The 200ms delay is no longer critically important after this commit,
but it is still beneficial: the lookup query changes less often,
which in turn reduces article definition update frequency.
So the delay improves the UI (perhaps subjectively) and performance.
2018-04-09 17:50:23 +00:00
|
|
|
ScanPopupWindowFlags scanPopupUnpinnedWindowFlags;
|
|
|
|
bool scanPopupUnpinnedBypassWMHint;
|
2011-11-16 12:52:25 +00:00
|
|
|
bool scanToMainWindow;
|
2018-06-13 16:00:42 +00:00
|
|
|
bool ignoreDiacritics;
|
2017-06-05 13:15:38 +00:00
|
|
|
#ifdef HAVE_X11
|
|
|
|
bool showScanFlag;
|
|
|
|
#endif
|
2009-02-05 20:55:00 +00:00
|
|
|
|
2009-04-10 21:07:03 +00:00
|
|
|
// Whether the word should be pronounced on page load, in main window/popup
|
|
|
|
bool pronounceOnLoadMain, pronounceOnLoadPopup;
|
2013-05-05 10:22:12 +00:00
|
|
|
bool useInternalPlayer;
|
2018-03-29 17:00:53 +00:00
|
|
|
InternalPlayerBackend internalPlayerBackend;
|
|
|
|
QString audioPlaybackProgram;
|
2009-04-10 21:07:03 +00:00
|
|
|
|
2009-04-03 17:10:27 +00:00
|
|
|
ProxyServer proxyServer;
|
|
|
|
|
2009-04-20 19:54:34 +00:00
|
|
|
bool checkForNewReleases;
|
2009-08-31 12:18:08 +00:00
|
|
|
bool disallowContentFromOtherSites;
|
2011-05-08 21:19:08 +00:00
|
|
|
bool enableWebPlugins;
|
2013-04-08 12:20:12 +00:00
|
|
|
bool hideGoldenDictHeader;
|
2020-11-12 15:57:10 +00:00
|
|
|
int maxNetworkCacheSize;
|
|
|
|
bool clearNetworkCacheOnExit;
|
2009-04-20 19:54:34 +00:00
|
|
|
|
2009-04-30 19:57:25 +00:00
|
|
|
qreal zoomFactor;
|
2014-06-23 15:11:15 +00:00
|
|
|
qreal helpZoomFactor;
|
2010-07-02 11:19:02 +00:00
|
|
|
int wordsZoomLevel;
|
2009-04-30 19:57:25 +00:00
|
|
|
|
2012-02-16 14:56:25 +00:00
|
|
|
unsigned maxStringsInHistory;
|
2012-09-11 13:03:10 +00:00
|
|
|
unsigned storeHistory;
|
2012-09-16 10:19:47 +00:00
|
|
|
bool alwaysExpandOptionalParts;
|
2012-02-16 14:56:25 +00:00
|
|
|
|
2013-02-05 12:51:23 +00:00
|
|
|
unsigned historyStoreInterval;
|
2017-05-13 10:18:25 +00:00
|
|
|
unsigned favoritesStoreInterval;
|
2013-02-05 12:51:23 +00:00
|
|
|
|
2017-05-17 15:26:32 +00:00
|
|
|
bool confirmFavoritesDeletion;
|
|
|
|
|
2013-06-02 11:20:33 +00:00
|
|
|
bool collapseBigArticles;
|
|
|
|
int articleSizeLimit;
|
|
|
|
|
2020-11-06 19:51:30 +00:00
|
|
|
bool limitInputPhraseLength;
|
|
|
|
int inputPhraseLengthLimit;
|
2021-06-10 16:13:11 +00:00
|
|
|
InputPhrase sanitizeInputPhrase( QString const & inputPhrase ) const;
|
2020-11-06 19:51:30 +00:00
|
|
|
|
2013-06-11 18:31:01 +00:00
|
|
|
unsigned short maxDictionaryRefsInContextMenu;
|
2014-01-09 14:17:50 +00:00
|
|
|
#ifndef Q_WS_X11
|
|
|
|
bool trackClipboardChanges;
|
|
|
|
#endif
|
2013-06-11 18:31:01 +00:00
|
|
|
|
2017-03-09 16:11:17 +00:00
|
|
|
bool synonymSearchEnabled;
|
|
|
|
|
2012-12-10 14:14:13 +00:00
|
|
|
QString addonStyle;
|
|
|
|
|
2014-04-17 14:31:51 +00:00
|
|
|
FullTextSearch fts;
|
|
|
|
|
2009-02-05 20:55:00 +00:00
|
|
|
Preferences();
|
|
|
|
};
|
|
|
|
|
2009-03-26 19:00:08 +00:00
|
|
|
/// A MediaWiki network dictionary definition
|
|
|
|
struct MediaWiki
|
|
|
|
{
|
2012-11-17 17:03:58 +00:00
|
|
|
QString id, name, url;
|
2009-03-26 19:00:08 +00:00
|
|
|
bool enabled;
|
2012-11-17 17:03:58 +00:00
|
|
|
QString icon;
|
2009-03-26 19:00:08 +00:00
|
|
|
|
|
|
|
MediaWiki(): enabled( false )
|
|
|
|
{}
|
|
|
|
|
|
|
|
MediaWiki( QString const & id_, QString const & name_, QString const & url_,
|
2012-11-17 17:03:58 +00:00
|
|
|
bool enabled_, QString const & icon_ ):
|
2012-06-21 09:43:28 +00:00
|
|
|
id( id_ ), name( name_ ), url( url_ ), enabled( enabled_ ), icon( icon_ ) {}
|
2009-04-30 15:29:03 +00:00
|
|
|
|
|
|
|
bool operator == ( MediaWiki const & other ) const
|
|
|
|
{ return id == other.id && name == other.name && url == other.url &&
|
2012-06-21 09:43:28 +00:00
|
|
|
enabled == other.enabled && icon == other.icon ; }
|
2009-03-26 19:00:08 +00:00
|
|
|
};
|
|
|
|
|
2009-05-16 18:04:21 +00:00
|
|
|
/// Any website which can be queried though a simple template substitution
|
|
|
|
struct WebSite
|
|
|
|
{
|
|
|
|
QString id, name, url;
|
|
|
|
bool enabled;
|
2012-12-03 12:48:31 +00:00
|
|
|
QString iconFilename;
|
2016-06-17 14:27:48 +00:00
|
|
|
bool inside_iframe;
|
2009-05-16 18:04:21 +00:00
|
|
|
|
|
|
|
WebSite(): enabled( false )
|
|
|
|
{}
|
|
|
|
|
|
|
|
WebSite( QString const & id_, QString const & name_, QString const & url_,
|
2016-06-17 14:27:48 +00:00
|
|
|
bool enabled_, QString const & iconFilename_, bool inside_iframe_ ):
|
|
|
|
id( id_ ), name( name_ ), url( url_ ), enabled( enabled_ ), iconFilename( iconFilename_ ),
|
|
|
|
inside_iframe( inside_iframe_ ) {}
|
2009-05-16 18:04:21 +00:00
|
|
|
|
|
|
|
bool operator == ( WebSite const & other ) const
|
|
|
|
{ return id == other.id && name == other.name && url == other.url &&
|
2016-06-17 14:27:48 +00:00
|
|
|
enabled == other.enabled && iconFilename == other.iconFilename &&
|
|
|
|
inside_iframe == other.inside_iframe; }
|
2009-05-16 18:04:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/// All the WebSites
|
2012-12-10 12:49:45 +00:00
|
|
|
typedef QVector< WebSite > WebSites;
|
2009-05-16 18:04:21 +00:00
|
|
|
|
2014-04-30 12:55:53 +00:00
|
|
|
/// Any DICT server
|
|
|
|
struct DictServer
|
|
|
|
{
|
|
|
|
QString id, name, url;
|
|
|
|
bool enabled;
|
|
|
|
QString databases;
|
2014-05-03 17:41:16 +00:00
|
|
|
QString strategies;
|
2014-04-30 12:55:53 +00:00
|
|
|
QString iconFilename;
|
|
|
|
|
|
|
|
DictServer(): enabled( false )
|
|
|
|
{}
|
|
|
|
|
|
|
|
DictServer( QString const & id_, QString const & name_, QString const & url_,
|
2014-05-03 17:41:16 +00:00
|
|
|
bool enabled_, QString const & databases_, QString const & strategies_,
|
|
|
|
QString const & iconFilename_ ):
|
2014-04-30 12:55:53 +00:00
|
|
|
id( id_ ), name( name_ ), url( url_ ), enabled( enabled_ ), databases( databases_ ),
|
2014-05-03 17:41:16 +00:00
|
|
|
strategies( strategies_ ), iconFilename( iconFilename_ ) {}
|
2014-04-30 12:55:53 +00:00
|
|
|
|
|
|
|
bool operator == ( DictServer const & other ) const
|
|
|
|
{ return id == other.id && name == other.name && url == other.url
|
|
|
|
&& enabled == other.enabled && databases == other.databases
|
2014-05-03 17:41:16 +00:00
|
|
|
&& strategies == other.strategies
|
2014-04-30 12:55:53 +00:00
|
|
|
&& iconFilename == other.iconFilename; }
|
|
|
|
};
|
|
|
|
|
|
|
|
/// All the DictServers
|
|
|
|
typedef QVector< DictServer > DictServers;
|
|
|
|
|
2009-04-09 14:15:01 +00:00
|
|
|
/// Hunspell configuration
|
|
|
|
struct Hunspell
|
|
|
|
{
|
|
|
|
QString dictionariesPath;
|
|
|
|
|
2012-12-10 12:49:45 +00:00
|
|
|
typedef QVector< QString > Dictionaries;
|
2009-04-09 14:15:01 +00:00
|
|
|
|
|
|
|
Dictionaries enabledDictionaries;
|
2009-04-30 15:29:03 +00:00
|
|
|
|
|
|
|
bool operator == ( Hunspell const & other ) const
|
|
|
|
{ return dictionariesPath == other.dictionariesPath &&
|
|
|
|
enabledDictionaries == other.enabledDictionaries; }
|
|
|
|
|
|
|
|
bool operator != ( Hunspell const & other ) const
|
|
|
|
{ return ! operator == ( other ); }
|
2009-04-09 14:15:01 +00:00
|
|
|
};
|
|
|
|
|
2009-03-26 19:00:08 +00:00
|
|
|
/// All the MediaWikis
|
2012-12-10 12:49:45 +00:00
|
|
|
typedef QVector< MediaWiki > MediaWikis;
|
2009-03-26 19:00:08 +00:00
|
|
|
|
2015-10-25 13:54:38 +00:00
|
|
|
#ifdef MAKE_CHINESE_CONVERSION_SUPPORT
|
2015-10-19 13:52:23 +00:00
|
|
|
/// Chinese transliteration configuration
|
|
|
|
struct Chinese
|
|
|
|
{
|
|
|
|
bool enable;
|
|
|
|
|
2015-10-20 03:37:50 +00:00
|
|
|
bool enableSCToTWConversion;
|
|
|
|
bool enableSCToHKConversion;
|
|
|
|
bool enableTCToSCConversion;
|
2015-10-19 13:52:23 +00:00
|
|
|
|
|
|
|
Chinese();
|
|
|
|
|
|
|
|
bool operator == ( Chinese const & other ) const
|
|
|
|
{ return enable == other.enable &&
|
2015-10-20 03:37:50 +00:00
|
|
|
enableSCToTWConversion == other.enableSCToTWConversion &&
|
|
|
|
enableSCToHKConversion == other.enableSCToHKConversion &&
|
|
|
|
enableTCToSCConversion == other.enableTCToSCConversion; }
|
2015-10-19 13:52:23 +00:00
|
|
|
|
|
|
|
bool operator != ( Chinese const & other ) const
|
|
|
|
{ return ! operator == ( other ); }
|
|
|
|
|
|
|
|
};
|
2015-10-25 13:54:38 +00:00
|
|
|
#endif
|
2015-10-19 13:52:23 +00:00
|
|
|
|
2009-05-06 14:39:08 +00:00
|
|
|
/// Romaji transliteration configuration
|
|
|
|
struct Romaji
|
|
|
|
{
|
|
|
|
bool enable;
|
|
|
|
|
|
|
|
bool enableHepburn;
|
|
|
|
bool enableNihonShiki;
|
|
|
|
bool enableKunreiShiki;
|
|
|
|
bool enableHiragana;
|
|
|
|
bool enableKatakana;
|
|
|
|
|
|
|
|
Romaji();
|
|
|
|
|
|
|
|
bool operator == ( Romaji const & other ) const
|
|
|
|
{ return enable == other.enable &&
|
|
|
|
enableHepburn == other.enableHepburn &&
|
|
|
|
enableNihonShiki == other.enableNihonShiki &&
|
|
|
|
enableKunreiShiki == other.enableKunreiShiki &&
|
|
|
|
enableHiragana == other.enableHiragana &&
|
|
|
|
enableKatakana == other.enableKatakana; }
|
|
|
|
|
|
|
|
bool operator != ( Romaji const & other ) const
|
|
|
|
{ return ! operator == ( other ); }
|
2009-05-11 23:37:18 +00:00
|
|
|
|
2009-05-06 14:39:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Transliteration
|
|
|
|
{
|
|
|
|
bool enableRussianTransliteration;
|
2009-05-11 23:37:18 +00:00
|
|
|
bool enableGermanTransliteration;
|
2010-05-29 09:22:08 +00:00
|
|
|
bool enableGreekTransliteration;
|
2013-01-18 19:21:56 +00:00
|
|
|
bool enableBelarusianTransliteration;
|
2015-10-25 13:54:38 +00:00
|
|
|
#ifdef MAKE_CHINESE_CONVERSION_SUPPORT
|
2015-10-19 13:52:23 +00:00
|
|
|
Chinese chinese;
|
2015-10-25 13:54:38 +00:00
|
|
|
#endif
|
2009-05-06 14:39:08 +00:00
|
|
|
Romaji romaji;
|
|
|
|
|
|
|
|
bool operator == ( Transliteration const & other ) const
|
|
|
|
{ return enableRussianTransliteration == other.enableRussianTransliteration &&
|
2010-05-29 09:22:08 +00:00
|
|
|
enableGermanTransliteration == other.enableGermanTransliteration &&
|
2013-01-18 19:21:56 +00:00
|
|
|
enableGreekTransliteration == other.enableGreekTransliteration &&
|
2015-10-19 13:52:23 +00:00
|
|
|
enableBelarusianTransliteration == other.enableBelarusianTransliteration &&
|
2015-10-25 13:54:38 +00:00
|
|
|
#ifdef MAKE_CHINESE_CONVERSION_SUPPORT
|
|
|
|
chinese == other.chinese &&
|
|
|
|
#endif
|
|
|
|
romaji == other.romaji;
|
2009-05-11 23:37:18 +00:00
|
|
|
}
|
2009-05-06 14:39:08 +00:00
|
|
|
|
|
|
|
bool operator != ( Transliteration const & other ) const
|
|
|
|
{ return ! operator == ( other ); }
|
|
|
|
|
2009-05-11 23:37:18 +00:00
|
|
|
Transliteration():
|
|
|
|
enableRussianTransliteration( false ),
|
2010-05-29 09:22:08 +00:00
|
|
|
enableGermanTransliteration( false ),
|
2013-01-18 19:21:56 +00:00
|
|
|
enableGreekTransliteration( false ),
|
|
|
|
enableBelarusianTransliteration( false )
|
2009-05-06 14:39:08 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2010-06-12 20:16:35 +00:00
|
|
|
struct Forvo
|
|
|
|
{
|
|
|
|
bool enable;
|
|
|
|
QString apiKey;
|
|
|
|
QString languageCodes;
|
|
|
|
|
|
|
|
Forvo(): enable( false )
|
|
|
|
{}
|
|
|
|
|
|
|
|
bool operator == ( Forvo const & other ) const
|
|
|
|
{ return enable == other.enable &&
|
|
|
|
apiKey == other.apiKey &&
|
|
|
|
languageCodes == other.languageCodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator != ( Forvo const & other ) const
|
|
|
|
{ return ! operator == ( other ); }
|
|
|
|
};
|
|
|
|
|
2011-05-29 05:08:37 +00:00
|
|
|
struct Program
|
|
|
|
{
|
|
|
|
bool enabled;
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
Audio,
|
|
|
|
PlainText,
|
|
|
|
Html,
|
2011-06-04 21:35:09 +00:00
|
|
|
PrefixMatch,
|
2011-05-29 05:08:37 +00:00
|
|
|
MaxTypeValue
|
|
|
|
} type;
|
|
|
|
QString id, name, commandLine;
|
2012-12-07 11:59:59 +00:00
|
|
|
QString iconFilename;
|
2011-05-29 05:08:37 +00:00
|
|
|
|
|
|
|
Program(): enabled( false )
|
|
|
|
{}
|
|
|
|
|
|
|
|
Program( bool enabled_, Type type_, QString const & id_,
|
2012-12-09 17:29:27 +00:00
|
|
|
QString const & name_, QString const & commandLine_, QString const & iconFilename_ ):
|
2011-05-29 05:08:37 +00:00
|
|
|
enabled( enabled_ ), type( type_ ), id( id_ ), name( name_ ),
|
2012-12-07 11:59:59 +00:00
|
|
|
commandLine( commandLine_ ), iconFilename( iconFilename_ ) {}
|
2011-05-29 05:08:37 +00:00
|
|
|
|
|
|
|
bool operator == ( Program const & other ) const
|
|
|
|
{ return enabled == other.enabled &&
|
|
|
|
type == other.type &&
|
|
|
|
name == other.name &&
|
2012-12-07 11:59:59 +00:00
|
|
|
commandLine == other.commandLine &&
|
|
|
|
iconFilename == other.iconFilename;
|
2011-05-29 05:08:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator != ( Program const & other ) const
|
|
|
|
{ return ! operator == ( other ); }
|
|
|
|
};
|
|
|
|
|
2012-12-10 12:49:45 +00:00
|
|
|
typedef QVector< Program > Programs;
|
2011-05-29 05:08:37 +00:00
|
|
|
|
2013-04-24 14:52:04 +00:00
|
|
|
struct VoiceEngine
|
|
|
|
{
|
2013-04-26 13:41:39 +00:00
|
|
|
bool enabled;
|
|
|
|
QString id;
|
|
|
|
QString name;
|
2013-04-24 14:52:04 +00:00
|
|
|
QString iconFilename;
|
2013-04-26 13:41:39 +00:00
|
|
|
int volume; // 0-100 allowed
|
|
|
|
int rate; // 0-100 allowed
|
2013-04-24 14:52:04 +00:00
|
|
|
|
2013-04-26 13:41:39 +00:00
|
|
|
VoiceEngine(): enabled( false )
|
|
|
|
, volume( 50 )
|
|
|
|
, rate( 50 )
|
|
|
|
{}
|
|
|
|
VoiceEngine( QString id_, QString name_, int volume_, int rate_ ):
|
|
|
|
enabled( false )
|
|
|
|
, id( id_ )
|
|
|
|
, name( name_ )
|
|
|
|
, volume( volume_ )
|
|
|
|
, rate( rate_ )
|
|
|
|
{}
|
2013-04-24 14:52:04 +00:00
|
|
|
|
2013-04-26 13:41:39 +00:00
|
|
|
bool operator == ( VoiceEngine const & other ) const
|
|
|
|
{
|
|
|
|
return enabled == other.enabled &&
|
2013-04-24 14:52:04 +00:00
|
|
|
id == other.id &&
|
|
|
|
name == other.name &&
|
2013-04-26 13:41:39 +00:00
|
|
|
iconFilename == other.iconFilename &&
|
|
|
|
volume == other.volume &&
|
|
|
|
rate == other.rate;
|
|
|
|
}
|
2013-04-24 14:52:04 +00:00
|
|
|
|
2013-04-26 13:41:39 +00:00
|
|
|
bool operator != ( VoiceEngine const & other ) const
|
|
|
|
{ return ! operator == ( other ); }
|
2013-04-24 14:52:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef QVector< VoiceEngine> VoiceEngines;
|
|
|
|
|
2014-02-28 12:36:28 +00:00
|
|
|
struct HeadwordsDialog
|
|
|
|
{
|
|
|
|
int searchMode;
|
|
|
|
bool matchCase;
|
|
|
|
bool autoApply;
|
|
|
|
QString headwordsExportPath;
|
|
|
|
QByteArray headwordsDialogGeometry;
|
|
|
|
|
|
|
|
HeadwordsDialog() :
|
|
|
|
searchMode( 0 ), matchCase( false )
|
|
|
|
, autoApply( false )
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
struct Class
|
|
|
|
{
|
|
|
|
Paths paths;
|
2009-04-04 16:06:06 +00:00
|
|
|
SoundDirs soundDirs;
|
2009-05-16 15:22:02 +00:00
|
|
|
Group dictionaryOrder;
|
|
|
|
Group inactiveDictionaries;
|
2009-01-28 20:55:45 +00:00
|
|
|
Groups groups;
|
2009-02-05 20:55:00 +00:00
|
|
|
Preferences preferences;
|
2009-03-26 19:00:08 +00:00
|
|
|
MediaWikis mediawikis;
|
2009-05-16 18:04:21 +00:00
|
|
|
WebSites webSites;
|
2014-04-30 12:55:53 +00:00
|
|
|
DictServers dictServers;
|
2009-04-09 14:15:01 +00:00
|
|
|
Hunspell hunspell;
|
2009-05-06 14:39:08 +00:00
|
|
|
Transliteration transliteration;
|
2010-06-12 20:16:35 +00:00
|
|
|
Forvo forvo;
|
2011-05-29 05:08:37 +00:00
|
|
|
Programs programs;
|
2013-04-24 14:52:04 +00:00
|
|
|
VoiceEngines voiceEngines;
|
2009-02-06 17:04:11 +00:00
|
|
|
|
2009-04-10 12:48:40 +00:00
|
|
|
unsigned lastMainGroupId; // Last used group in main window
|
|
|
|
unsigned lastPopupGroupId; // Last used group in popup window
|
2012-12-07 11:59:59 +00:00
|
|
|
|
2010-03-30 20:15:55 +00:00
|
|
|
QByteArray popupWindowState; // Binary state saved by QMainWindow
|
|
|
|
QByteArray popupWindowGeometry; // Geometry saved by QMainWindow
|
2012-09-27 13:00:40 +00:00
|
|
|
QByteArray dictInfoGeometry; // Geometry of "Dictionary info" window
|
2013-05-30 02:18:28 +00:00
|
|
|
QByteArray inspectorGeometry; // Geometry of WebKit inspector window
|
2021-06-22 15:30:13 +00:00
|
|
|
QByteArray dictionariesDialogGeometry; // Geometry of Dictionaries dialog
|
2014-06-23 15:11:15 +00:00
|
|
|
QByteArray helpWindowGeometry; // Geometry of help window
|
|
|
|
QByteArray helpSplitterState; // Geometry of help splitter
|
2009-04-03 21:24:07 +00:00
|
|
|
|
2012-09-12 17:19:21 +00:00
|
|
|
QString historyExportPath; // Path for export/import history
|
2013-04-12 06:57:41 +00:00
|
|
|
QString resourceSavePath; // Path to save images/audio
|
|
|
|
QString articleSavePath; // Path to save articles
|
2012-09-12 17:19:21 +00:00
|
|
|
|
2011-05-07 13:42:49 +00:00
|
|
|
bool pinPopupWindow; // Last pin status
|
2017-07-13 15:00:19 +00:00
|
|
|
bool popupWindowAlwaysOnTop; // Last status of pinned popup window
|
2011-05-01 23:52:11 +00:00
|
|
|
|
2009-04-03 21:24:07 +00:00
|
|
|
QByteArray mainWindowState; // Binary state saved by QMainWindow
|
|
|
|
QByteArray mainWindowGeometry; // Geometry saved by QMainWindow
|
2009-04-10 12:48:40 +00:00
|
|
|
|
2009-09-21 17:50:03 +00:00
|
|
|
MutedDictionaries mutedDictionaries; // Disabled via dictionary bar
|
2010-03-30 20:15:55 +00:00
|
|
|
MutedDictionaries popupMutedDictionaries; // Disabled via dictionary bar in popup
|
2009-09-21 17:50:03 +00:00
|
|
|
|
2009-04-20 19:54:34 +00:00
|
|
|
QDateTime timeForNewReleaseCheck; // Only effective if
|
|
|
|
// preferences.checkForNewReleases is set
|
2009-05-14 17:59:49 +00:00
|
|
|
QString skippedRelease; // Empty by default
|
2009-04-20 19:54:34 +00:00
|
|
|
|
2009-10-12 12:41:20 +00:00
|
|
|
bool showingDictBarNames;
|
|
|
|
|
2011-05-22 02:42:05 +00:00
|
|
|
bool usingSmallIconsInToolbars;
|
|
|
|
|
2012-12-07 11:59:29 +00:00
|
|
|
int maxPictureWidth; // Maximum picture width
|
|
|
|
|
2013-01-11 09:58:14 +00:00
|
|
|
/// Maximum size for the headwords.
|
|
|
|
/// Bigger headwords won't be indexed. For now, only in DSL.
|
|
|
|
unsigned int maxHeadwordSize;
|
|
|
|
|
2017-10-25 14:37:39 +00:00
|
|
|
unsigned int maxHeadwordsToExpand;
|
|
|
|
|
2014-02-28 12:36:28 +00:00
|
|
|
HeadwordsDialog headwordsDialog;
|
|
|
|
|
2013-02-04 14:10:37 +00:00
|
|
|
#ifdef Q_OS_WIN
|
2013-01-29 19:20:53 +00:00
|
|
|
QRect maximizedMainWindowGeometry;
|
2013-12-20 14:25:33 +00:00
|
|
|
QRect normalMainWindowGeometry;
|
2013-02-04 14:10:37 +00:00
|
|
|
#endif
|
2013-01-29 19:20:53 +00:00
|
|
|
|
2012-11-28 19:32:37 +00:00
|
|
|
QString editDictionaryCommandLine; // Command line to call external editor for dictionary
|
|
|
|
|
2009-10-12 12:41:20 +00:00
|
|
|
Class(): lastMainGroupId( 0 ), lastPopupGroupId( 0 ),
|
2011-06-09 19:45:04 +00:00
|
|
|
pinPopupWindow( false ), showingDictBarNames( false ),
|
2013-06-11 18:31:01 +00:00
|
|
|
usingSmallIconsInToolbars( false ),
|
2017-10-25 14:37:39 +00:00
|
|
|
maxPictureWidth( 0 ), maxHeadwordSize ( 256U ),
|
|
|
|
maxHeadwordsToExpand( 0 )
|
2009-04-10 21:07:03 +00:00
|
|
|
{}
|
2012-09-26 13:13:47 +00:00
|
|
|
Group * getGroup( unsigned id );
|
|
|
|
Group const * getGroup( unsigned id ) const;
|
2009-01-28 20:55:45 +00:00
|
|
|
};
|
|
|
|
|
2012-12-07 11:59:29 +00:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
#pragma pack(pop)
|
|
|
|
#endif
|
|
|
|
|
2009-09-21 17:50:03 +00:00
|
|
|
/// Configuration-specific events. Some parts of the program need to react
|
|
|
|
/// to specific changes in configuration. The object of this class is used
|
|
|
|
/// to emit signals when such events happen -- and the listeners connect to
|
|
|
|
/// them to be notified of them.
|
|
|
|
/// This class is separate from the main Class since QObjects can't be copied.
|
|
|
|
class Events: public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2009-09-23 18:44:38 +00:00
|
|
|
/// Signals that the value of the mutedDictionaries has changed.
|
|
|
|
/// This emits mutedDictionariesChanged() signal, so the subscribers will
|
|
|
|
/// be notified.
|
|
|
|
void signalMutedDictionariesChanged();
|
2009-09-21 17:50:03 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
|
2009-09-23 18:44:38 +00:00
|
|
|
/// THe value of the mutedDictionaries has changed.
|
|
|
|
void mutedDictionariesChanged();
|
2009-09-21 17:50:03 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
DEF_EX( exError, "Error with the program's configuration", std::exception )
|
2021-10-31 20:49:38 +00:00
|
|
|
DEF_EX( exCantUseDataDir, "Can't use XDG_DATA_HOME directory to store GoldenDict data", exError )
|
2009-01-28 20:55:45 +00:00
|
|
|
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
|
2018-05-21 15:32:04 +00:00
|
|
|
Class load() THROW_SPEC( exError );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
/// Saves the configuration
|
2018-05-21 15:32:04 +00:00
|
|
|
void save( Class const & ) THROW_SPEC( exError );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2013-05-08 16:50:06 +00:00
|
|
|
/// Returns the configuration file name.
|
|
|
|
QString getConfigFileName();
|
|
|
|
|
2011-07-10 07:36:43 +00:00
|
|
|
/// Returns the main configuration directory.
|
2018-05-21 15:32:04 +00:00
|
|
|
QString getConfigDir() THROW_SPEC( exError );
|
2011-07-10 07:36:43 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
/// Returns the index directory, where the indices are to be stored.
|
2018-05-21 15:32:04 +00:00
|
|
|
QString getIndexDir() THROW_SPEC( exError );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-05-12 19:13:20 +00:00
|
|
|
/// Returns the filename of a .pid file which should store current pid of
|
|
|
|
/// the process.
|
2018-05-21 15:32:04 +00:00
|
|
|
QString getPidFileName() THROW_SPEC( exError );
|
2009-05-12 19:13:20 +00:00
|
|
|
|
2009-10-21 19:30:14 +00:00
|
|
|
/// Returns the filename of a history file which stores search history.
|
2018-05-21 15:32:04 +00:00
|
|
|
QString getHistoryFileName() THROW_SPEC( exError );
|
2009-10-21 19:30:14 +00:00
|
|
|
|
2017-05-05 14:39:51 +00:00
|
|
|
/// Returns the filename of a favorities file.
|
2018-05-21 15:32:04 +00:00
|
|
|
QString getFavoritiesFileName() THROW_SPEC( exError );
|
2017-05-05 14:39:51 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
/// Returns the user .css file name.
|
2018-05-21 15:32:04 +00:00
|
|
|
QString getUserCssFileName() THROW_SPEC( exError );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-05-01 12:20:33 +00:00
|
|
|
/// Returns the user .css file name used for printing only.
|
2018-05-21 15:32:04 +00:00
|
|
|
QString getUserCssPrintFileName() THROW_SPEC( exError );
|
2009-05-01 12:20:33 +00:00
|
|
|
|
2009-02-01 00:08:08 +00:00
|
|
|
/// Returns the user .css file name for the Qt interface customization.
|
2018-05-21 15:32:04 +00:00
|
|
|
QString getUserQtCssFileName() THROW_SPEC( exError );
|
2009-02-01 00:08:08 +00:00
|
|
|
|
2009-04-12 19:41:58 +00:00
|
|
|
/// Returns the program's data dir. Under Linux that would be something like
|
|
|
|
/// /usr/share/apps/goldendict, under Windows C:/Program Files/GoldenDict.
|
|
|
|
QString getProgramDataDir() throw();
|
|
|
|
|
2009-07-29 16:39:27 +00:00
|
|
|
/// Returns the directory storing program localizized files (.qm).
|
|
|
|
QString getLocDir() throw();
|
2010-05-28 16:50:54 +00:00
|
|
|
|
2014-06-24 13:55:06 +00:00
|
|
|
/// Returns the directory storing program help files (.qch).
|
|
|
|
QString getHelpDir() throw();
|
|
|
|
|
2015-10-26 03:56:39 +00:00
|
|
|
#ifdef MAKE_CHINESE_CONVERSION_SUPPORT
|
|
|
|
/// Returns the directory storing OpenCC configuration and dictionary files (.json and .ocd).
|
|
|
|
QString getOpenCCDir() throw();
|
|
|
|
#endif
|
|
|
|
|
2010-05-28 16:50:54 +00:00
|
|
|
/// Returns true if the program is configured as a portable version. In that
|
|
|
|
/// mode, all the settings and indices are kept in the program's directory.
|
|
|
|
bool isPortableVersion() throw();
|
|
|
|
|
|
|
|
/// Returns directory with dictionaries for portable version. It is content/
|
|
|
|
/// in the application's directory.
|
|
|
|
QString getPortableVersionDictionaryDir() throw();
|
|
|
|
|
|
|
|
/// Returns directory with morpgologies for portable version. It is
|
|
|
|
/// content/morphology in the application's directory.
|
|
|
|
QString getPortableVersionMorphoDir() throw();
|
|
|
|
|
2012-12-10 14:14:13 +00:00
|
|
|
/// Returns the add-on styles directory.
|
|
|
|
QString getStylesDir() throw();
|
|
|
|
|
2020-11-12 15:57:10 +00:00
|
|
|
/// Returns the directory where user-specific non-essential (cached) data should be written.
|
|
|
|
QString getCacheDir() throw();
|
|
|
|
|
|
|
|
/// Returns the article network disk cache directory.
|
|
|
|
QString getNetworkCacheDir() throw();
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
|
2021-06-10 16:13:11 +00:00
|
|
|
Q_DECLARE_METATYPE( Config::InputPhrase )
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2021-06-10 16:13:11 +00:00
|
|
|
#endif
|