2009-02-05 14:21:47 +00:00
|
|
|
/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.berlios.de>
|
2009-01-28 20:55:45 +00:00
|
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
|
|
|
|
#include "config.hh"
|
|
|
|
#include <QDir>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QtXml>
|
|
|
|
|
|
|
|
namespace Config {
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
QDir getHomeDir()
|
|
|
|
{
|
|
|
|
QDir result = QDir::home();
|
|
|
|
|
|
|
|
char const * pathInHome =
|
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
"Application Data/GoldenDict"
|
|
|
|
#else
|
|
|
|
".goldendict"
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
|
|
|
result.mkpath( pathInHome );
|
|
|
|
|
|
|
|
if ( !result.cd( pathInHome ) )
|
|
|
|
throw exCantUseHomeDir();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString getConfigFileName()
|
|
|
|
{
|
|
|
|
return getHomeDir().absoluteFilePath( "config" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-03 17:10:27 +00:00
|
|
|
ProxyServer::ProxyServer(): enabled( false ), type( Socks5 ), port( 3128 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-02-05 20:55:00 +00:00
|
|
|
Preferences::Preferences():
|
2009-03-29 13:43:37 +00:00
|
|
|
enableTrayIcon( true ),
|
2009-02-05 20:55:00 +00:00
|
|
|
startToTray( false ),
|
2009-03-29 13:43:37 +00:00
|
|
|
closeToTray( true ),
|
|
|
|
enableScanPopup( true ),
|
2009-02-08 20:20:02 +00:00
|
|
|
startWithScanPopupOn( false ),
|
2009-02-05 20:55:00 +00:00
|
|
|
enableScanPopupModifiers( false ),
|
|
|
|
scanPopupModifiers( 0 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-03-27 10:48:44 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
MediaWikis makeDefaultMediaWikis( bool enable )
|
|
|
|
{
|
|
|
|
MediaWikis mw;
|
|
|
|
|
|
|
|
mw.push_back( MediaWiki( "ae6f89aac7151829681b85f035d54e48", "English Wikipedia", "http://en.wikipedia.org/w", enable ) );
|
|
|
|
mw.push_back( MediaWiki( "affcf9678e7bfe701c9b071f97eccba3", "English Wiktionary", "http://en.wiktionary.org/w", false ) );
|
|
|
|
mw.push_back( MediaWiki( "8e0c1c2b6821dab8bdba8eb869ca7176", "Russian Wikipedia", "http://ru.wikipedia.org/w", false ) );
|
|
|
|
mw.push_back( MediaWiki( "b09947600ae3902654f8ad4567ae8567", "Russain Wiktionary", "http://ru.wiktionary.org/w", false ) );
|
|
|
|
mw.push_back( MediaWiki( "a8a66331a1242ca2aeb0b4aed361c41d", "German Wikipedia", "http://de.wikipedia.org/w", false ) );
|
|
|
|
mw.push_back( MediaWiki( "21c64bca5ec10ba17ff19f3066bc962a", "German Wiktionary", "http://de.wiktionary.org/w", false ) );
|
|
|
|
mw.push_back( MediaWiki( "96957cb2ad73a20c7a1d561fc83c253a", "Portuguese Wikipedia", "http://pt.wikipedia.org/w", false ) );
|
|
|
|
mw.push_back( MediaWiki( "ed4c3929196afdd93cc08b9a903aad6a", "Portuguese Wiktionary", "http://pt.wiktionary.org/w", false ) );
|
|
|
|
|
|
|
|
return mw;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2009-02-05 20:55:00 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
Class load() throw( exError )
|
|
|
|
{
|
|
|
|
QString configName = getConfigFileName();
|
|
|
|
|
|
|
|
if ( !QFile::exists( configName ) )
|
|
|
|
{
|
|
|
|
// Make the default config, save it and return it
|
|
|
|
Class c;
|
|
|
|
|
|
|
|
#ifdef Q_OS_LINUX
|
2009-03-28 22:37:03 +00:00
|
|
|
if ( QDir( "/usr/share/stardict/dic" ).exists() )
|
|
|
|
c.paths.push_back( Path( "/usr/share/stardict/dic", true ) );
|
2009-04-03 23:40:39 +00:00
|
|
|
#endif
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-04-03 23:40:39 +00:00
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
if ( QDir( "C:/Program Files/StarDict/dic" ).exists() )
|
|
|
|
c.paths.push_back( Path( "C:/Program Files/StarDict/dic", true ) );
|
2009-01-28 20:55:45 +00:00
|
|
|
#endif
|
|
|
|
|
2009-03-27 10:48:44 +00:00
|
|
|
c.mediawikis = makeDefaultMediaWikis( true );
|
2009-03-26 19:00:08 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
save( c );
|
|
|
|
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile configFile( configName );
|
|
|
|
|
|
|
|
if ( !configFile.open( QFile::ReadOnly ) )
|
|
|
|
throw exCantReadConfigFile();
|
|
|
|
|
|
|
|
QDomDocument dd;
|
|
|
|
|
|
|
|
QString errorStr;
|
|
|
|
int errorLine, errorColumn;
|
|
|
|
|
|
|
|
if ( !dd.setContent( &configFile, false, &errorStr, &errorLine, &errorColumn ) )
|
|
|
|
{
|
|
|
|
printf( "Error: %s at %d,%d\n", errorStr.toLocal8Bit().constData(), errorLine, errorColumn );
|
|
|
|
throw exMalformedConfigFile();
|
|
|
|
}
|
|
|
|
|
|
|
|
configFile.close();
|
|
|
|
|
|
|
|
QDomNode root = dd.namedItem( "config" );
|
|
|
|
|
|
|
|
Class c;
|
|
|
|
|
|
|
|
QDomNode paths = root.namedItem( "paths" );
|
|
|
|
|
|
|
|
if ( !paths.isNull() )
|
|
|
|
{
|
|
|
|
QDomNodeList nl = paths.toElement().elementsByTagName( "path" );
|
|
|
|
|
|
|
|
for( unsigned x = 0; x < nl.length(); ++x )
|
2009-03-28 22:37:03 +00:00
|
|
|
c.paths.push_back(
|
|
|
|
Path( nl.item( x ).toElement().text(),
|
|
|
|
nl.item( x ).toElement().attribute( "recursive" ) == "1" ) );
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QDomNode groups = root.namedItem( "groups" );
|
|
|
|
|
|
|
|
if ( !groups.isNull() )
|
|
|
|
{
|
|
|
|
QDomNodeList nl = groups.toElement().elementsByTagName( "group" );
|
|
|
|
|
|
|
|
for( unsigned x = 0; x < nl.length(); ++x )
|
|
|
|
{
|
|
|
|
QDomElement grp = nl.item( x ).toElement();
|
|
|
|
|
|
|
|
Group g;
|
|
|
|
|
|
|
|
g.name = grp.attribute( "name" );
|
|
|
|
g.icon = grp.attribute( "icon" );
|
|
|
|
|
|
|
|
QDomNodeList dicts = grp.elementsByTagName( "dictionary" );
|
|
|
|
|
|
|
|
for( unsigned y = 0; y < dicts.length(); ++y )
|
2009-04-01 12:00:28 +00:00
|
|
|
g.dictionaries.push_back( DictionaryRef( dicts.item( y ).toElement().text(),
|
|
|
|
dicts.item( y ).toElement().attribute( "name" ) ) );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
c.groups.push_back( g );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-26 19:00:08 +00:00
|
|
|
QDomNode mws = root.namedItem( "mediawikis" );
|
|
|
|
|
|
|
|
if ( !mws.isNull() )
|
|
|
|
{
|
|
|
|
QDomNodeList nl = mws.toElement().elementsByTagName( "mediawiki" );
|
|
|
|
|
|
|
|
for( unsigned x = 0; x < nl.length(); ++x )
|
|
|
|
{
|
|
|
|
QDomElement mw = nl.item( x ).toElement();
|
|
|
|
|
|
|
|
MediaWiki w;
|
|
|
|
|
|
|
|
w.id = mw.attribute( "id" );
|
|
|
|
w.name = mw.attribute( "name" );
|
|
|
|
w.url = mw.attribute( "url" );
|
|
|
|
w.enabled = ( mw.attribute( "enabled" ) == "1" );
|
|
|
|
|
|
|
|
c.mediawikis.push_back( w );
|
|
|
|
}
|
|
|
|
}
|
2009-03-27 10:48:44 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// When upgrading, populate the list with some choices, but don't enable
|
|
|
|
// anything.
|
|
|
|
c.mediawikis = makeDefaultMediaWikis( false );
|
|
|
|
}
|
2009-03-26 19:00:08 +00:00
|
|
|
|
2009-02-05 20:55:00 +00:00
|
|
|
QDomNode preferences = root.namedItem( "preferences" );
|
|
|
|
|
|
|
|
if ( !preferences.isNull() )
|
|
|
|
{
|
|
|
|
c.preferences.enableTrayIcon = ( preferences.namedItem( "enableTrayIcon" ).toElement().text() == "1" );
|
|
|
|
c.preferences.startToTray = ( preferences.namedItem( "startToTray" ).toElement().text() == "1" );
|
|
|
|
c.preferences.closeToTray = ( preferences.namedItem( "closeToTray" ).toElement().text() == "1" );
|
|
|
|
c.preferences.enableScanPopup = ( preferences.namedItem( "enableScanPopup" ).toElement().text() == "1" );
|
2009-02-08 20:20:02 +00:00
|
|
|
c.preferences.startWithScanPopupOn = ( preferences.namedItem( "startWithScanPopupOn" ).toElement().text() == "1" );
|
2009-02-05 20:55:00 +00:00
|
|
|
c.preferences.enableScanPopupModifiers = ( preferences.namedItem( "enableScanPopupModifiers" ).toElement().text() == "1" );
|
2009-04-03 17:10:27 +00:00
|
|
|
c.preferences.scanPopupModifiers = ( preferences.namedItem( "scanPopupModifiers" ).toElement().text().toULong() );
|
|
|
|
|
|
|
|
QDomNode proxy = preferences.namedItem( "proxyserver" );
|
|
|
|
|
|
|
|
if ( !proxy.isNull() )
|
|
|
|
{
|
|
|
|
c.preferences.proxyServer.enabled = ( proxy.toElement().attribute( "enabled" ) == "1" );
|
|
|
|
c.preferences.proxyServer.type = ( ProxyServer::Type ) proxy.namedItem( "type" ).toElement().text().toULong();
|
|
|
|
c.preferences.proxyServer.host = proxy.namedItem( "host" ).toElement().text();
|
|
|
|
c.preferences.proxyServer.port = proxy.namedItem( "port" ).toElement().text().toULong();
|
|
|
|
c.preferences.proxyServer.user = proxy.namedItem( "user" ).toElement().text();
|
|
|
|
c.preferences.proxyServer.password = proxy.namedItem( "password" ).toElement().text();
|
|
|
|
}
|
2009-02-05 20:55:00 +00:00
|
|
|
}
|
|
|
|
|
2009-02-06 17:04:11 +00:00
|
|
|
c.lastMainGroup = root.namedItem( "lastMainGroup" ).toElement().text();
|
|
|
|
c.lastPopupGroup = root.namedItem( "lastPopupGroup" ).toElement().text();
|
|
|
|
|
2009-02-06 17:16:33 +00:00
|
|
|
QDomNode lastPopupWidth = root.namedItem( "lastPopupWidth" );
|
|
|
|
QDomNode lastPopupHeight = root.namedItem( "lastPopupHeight" );
|
|
|
|
|
|
|
|
if ( !lastPopupWidth.isNull() && !lastPopupHeight.isNull() )
|
|
|
|
{
|
|
|
|
c.lastPopupSize = QSize( lastPopupWidth.toElement().text().toULong(),
|
|
|
|
lastPopupHeight.toElement().text().toULong() );
|
|
|
|
}
|
|
|
|
|
2009-04-03 21:24:07 +00:00
|
|
|
QDomNode mainWindowState = root.namedItem( "mainWindowState" );
|
|
|
|
|
|
|
|
if ( !mainWindowState.isNull() )
|
|
|
|
c.mainWindowState = QByteArray::fromBase64( mainWindowState.toElement().text().toLatin1() );
|
|
|
|
|
|
|
|
QDomNode mainWindowGeometry = root.namedItem( "mainWindowGeometry" );
|
|
|
|
|
|
|
|
if ( !mainWindowGeometry.isNull() )
|
|
|
|
c.mainWindowGeometry = QByteArray::fromBase64( mainWindowGeometry.toElement().text().toLatin1() );
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
void save( Class const & c ) throw( exError )
|
|
|
|
{
|
|
|
|
QFile configFile( getConfigFileName() );
|
|
|
|
|
|
|
|
if ( !configFile.open( QFile::WriteOnly ) )
|
|
|
|
throw exCantWriteConfigFile();
|
|
|
|
|
|
|
|
QDomDocument dd;
|
|
|
|
|
|
|
|
QDomElement root = dd.createElement( "config" );
|
|
|
|
dd.appendChild( root );
|
|
|
|
|
|
|
|
{
|
|
|
|
QDomElement paths = dd.createElement( "paths" );
|
|
|
|
root.appendChild( paths );
|
|
|
|
|
|
|
|
for( Paths::const_iterator i = c.paths.begin(); i != c.paths.end(); ++i )
|
|
|
|
{
|
|
|
|
QDomElement path = dd.createElement( "path" );
|
|
|
|
paths.appendChild( path );
|
2009-03-28 22:37:03 +00:00
|
|
|
|
|
|
|
QDomAttr recursive = dd.createAttribute( "recursive" );
|
|
|
|
recursive.setValue( i->recursive ? "1" : "0" );
|
|
|
|
path.setAttributeNode( recursive );
|
|
|
|
|
|
|
|
QDomText value = dd.createTextNode( i->path );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
path.appendChild( value );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
QDomElement groups = dd.createElement( "groups" );
|
|
|
|
root.appendChild( groups );
|
|
|
|
|
|
|
|
for( Groups::const_iterator i = c.groups.begin(); i != c.groups.end(); ++i )
|
|
|
|
{
|
|
|
|
QDomElement group = dd.createElement( "group" );
|
|
|
|
groups.appendChild( group );
|
|
|
|
|
|
|
|
QDomAttr name = dd.createAttribute( "name" );
|
|
|
|
|
|
|
|
name.setValue( i->name );
|
|
|
|
|
|
|
|
group.setAttributeNode( name );
|
|
|
|
|
|
|
|
if ( i->icon.size() )
|
|
|
|
{
|
|
|
|
QDomAttr icon = dd.createAttribute( "icon" );
|
|
|
|
|
|
|
|
icon.setValue( i->icon );
|
|
|
|
|
|
|
|
group.setAttributeNode( icon );
|
|
|
|
}
|
|
|
|
|
2009-04-01 12:00:28 +00:00
|
|
|
for( vector< DictionaryRef >::const_iterator j = i->dictionaries.begin(); j != i->dictionaries.end(); ++j )
|
2009-01-28 20:55:45 +00:00
|
|
|
{
|
|
|
|
QDomElement dictionary = dd.createElement( "dictionary" );
|
|
|
|
|
|
|
|
group.appendChild( dictionary );
|
|
|
|
|
2009-04-01 12:00:28 +00:00
|
|
|
QDomText value = dd.createTextNode( j->id );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
dictionary.appendChild( value );
|
2009-04-01 12:00:28 +00:00
|
|
|
|
|
|
|
QDomAttr name = dd.createAttribute( "name" );
|
|
|
|
|
|
|
|
name.setValue( j->name );
|
|
|
|
|
|
|
|
dictionary.setAttributeNode( name );
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-26 19:00:08 +00:00
|
|
|
{
|
|
|
|
QDomElement mws = dd.createElement( "mediawikis" );
|
|
|
|
root.appendChild( mws );
|
|
|
|
|
|
|
|
for( MediaWikis::const_iterator i = c.mediawikis.begin(); i != c.mediawikis.end(); ++i )
|
|
|
|
{
|
|
|
|
QDomElement mw = dd.createElement( "mediawiki" );
|
|
|
|
mws.appendChild( mw );
|
|
|
|
|
|
|
|
QDomAttr id = dd.createAttribute( "id" );
|
|
|
|
id.setValue( i->id );
|
|
|
|
mw.setAttributeNode( id );
|
|
|
|
|
|
|
|
QDomAttr name = dd.createAttribute( "name" );
|
|
|
|
name.setValue( i->name );
|
|
|
|
mw.setAttributeNode( name );
|
|
|
|
|
|
|
|
QDomAttr url = dd.createAttribute( "url" );
|
|
|
|
url.setValue( i->url );
|
|
|
|
mw.setAttributeNode( url );
|
|
|
|
|
|
|
|
QDomAttr enabled = dd.createAttribute( "enabled" );
|
|
|
|
enabled.setValue( i->enabled ? "1" : "0" );
|
|
|
|
mw.setAttributeNode( enabled );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-05 20:55:00 +00:00
|
|
|
{
|
|
|
|
QDomElement preferences = dd.createElement( "preferences" );
|
|
|
|
root.appendChild( preferences );
|
|
|
|
|
|
|
|
QDomElement opt = dd.createElement( "enableTrayIcon" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.preferences.enableTrayIcon ? "1":"0" ) );
|
|
|
|
preferences.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "startToTray" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.preferences.startToTray ? "1":"0" ) );
|
|
|
|
preferences.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "closeToTray" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.preferences.closeToTray ? "1":"0" ) );
|
|
|
|
preferences.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "enableScanPopup" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.preferences.enableScanPopup ? "1":"0" ) );
|
|
|
|
preferences.appendChild( opt );
|
2009-02-08 20:20:02 +00:00
|
|
|
|
|
|
|
opt = dd.createElement( "startWithScanPopupOn" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.preferences.startWithScanPopupOn ? "1":"0" ) );
|
|
|
|
preferences.appendChild( opt );
|
2009-02-05 20:55:00 +00:00
|
|
|
|
|
|
|
opt = dd.createElement( "enableScanPopupModifiers" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.preferences.enableScanPopupModifiers ? "1":"0" ) );
|
|
|
|
preferences.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "scanPopupModifiers" );
|
|
|
|
opt.appendChild( dd.createTextNode( QString::number( c.preferences.scanPopupModifiers ) ) );
|
|
|
|
preferences.appendChild( opt );
|
2009-04-03 17:10:27 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
QDomElement proxy = dd.createElement( "proxyserver" );
|
|
|
|
preferences.appendChild( proxy );
|
|
|
|
|
|
|
|
QDomAttr enabled = dd.createAttribute( "enabled" );
|
|
|
|
enabled.setValue( c.preferences.proxyServer.enabled ? "1" : "0" );
|
|
|
|
proxy.setAttributeNode( enabled );
|
|
|
|
|
|
|
|
opt = dd.createElement( "type" );
|
|
|
|
opt.appendChild( dd.createTextNode( QString::number( c.preferences.proxyServer.type ) ) );
|
|
|
|
proxy.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "host" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.preferences.proxyServer.host ) );
|
|
|
|
proxy.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "port" );
|
|
|
|
opt.appendChild( dd.createTextNode( QString::number( c.preferences.proxyServer.port ) ) );
|
|
|
|
proxy.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "user" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.preferences.proxyServer.user ) );
|
|
|
|
proxy.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "password" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.preferences.proxyServer.password ) );
|
|
|
|
proxy.appendChild( opt );
|
|
|
|
}
|
2009-02-05 20:55:00 +00:00
|
|
|
}
|
|
|
|
|
2009-02-06 17:04:11 +00:00
|
|
|
{
|
|
|
|
QDomElement opt = dd.createElement( "lastMainGroup" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.lastMainGroup ) );
|
|
|
|
root.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "lastPopupGroup" );
|
|
|
|
opt.appendChild( dd.createTextNode( c.lastPopupGroup ) );
|
|
|
|
root.appendChild( opt );
|
2009-02-06 17:16:33 +00:00
|
|
|
|
|
|
|
if ( c.lastPopupSize.isValid() )
|
|
|
|
{
|
|
|
|
opt = dd.createElement( "lastPopupWidth" );
|
|
|
|
opt.appendChild( dd.createTextNode( QString::number( c.lastPopupSize.width() ) ) );
|
|
|
|
root.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "lastPopupHeight" );
|
|
|
|
opt.appendChild( dd.createTextNode( QString::number( c.lastPopupSize.height() ) ) );
|
|
|
|
root.appendChild( opt );
|
|
|
|
}
|
2009-04-03 21:24:07 +00:00
|
|
|
|
|
|
|
opt = dd.createElement( "mainWindowState" );
|
|
|
|
opt.appendChild( dd.createTextNode( QString::fromLatin1( c.mainWindowState.toBase64() ) ) );
|
|
|
|
root.appendChild( opt );
|
|
|
|
|
|
|
|
opt = dd.createElement( "mainWindowGeometry" );
|
|
|
|
opt.appendChild( dd.createTextNode( QString::fromLatin1( c.mainWindowGeometry.toBase64() ) ) );
|
|
|
|
root.appendChild( opt );
|
2009-02-06 17:04:11 +00:00
|
|
|
}
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
configFile.write( dd.toByteArray() );
|
|
|
|
}
|
|
|
|
|
|
|
|
QString getIndexDir() throw( exError )
|
|
|
|
{
|
|
|
|
QDir result = getHomeDir();
|
|
|
|
|
|
|
|
result.mkpath( "index" );
|
|
|
|
|
|
|
|
if ( !result.cd( "index" ) )
|
|
|
|
throw exCantUseIndexDir();
|
|
|
|
|
|
|
|
return result.path() + QDir::separator();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString getUserCssFileName() throw( exError )
|
|
|
|
{
|
2009-02-08 17:21:46 +00:00
|
|
|
return getHomeDir().filePath( "article-style.css" );
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
|
2009-02-01 00:08:08 +00:00
|
|
|
QString getUserQtCssFileName() throw( exError )
|
|
|
|
{
|
|
|
|
return getHomeDir().filePath( "qt-style.css" );
|
|
|
|
}
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|