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 "instances.hh"
|
|
|
|
|
|
|
|
namespace Instances {
|
|
|
|
|
|
|
|
Group::Group( Config::Group const & cfgGroup,
|
|
|
|
vector< sptr< Dictionary::Class > > const & allDictionaries ):
|
|
|
|
name( cfgGroup.name ),
|
|
|
|
icon( cfgGroup.icon )
|
|
|
|
{
|
|
|
|
for( unsigned x = 0; x < cfgGroup.dictionaries.size(); ++x )
|
|
|
|
{
|
2009-04-01 12:00:28 +00:00
|
|
|
std::string id = cfgGroup.dictionaries[ x ].id.toStdString();
|
|
|
|
|
|
|
|
bool added = false;
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
for( unsigned y = allDictionaries.size(); y--; )
|
|
|
|
if ( allDictionaries[ y ]->getId() == id )
|
|
|
|
{
|
|
|
|
dictionaries.push_back( allDictionaries[ y ] );
|
2009-04-01 12:00:28 +00:00
|
|
|
added = true;
|
2009-01-28 20:55:45 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-04-01 12:00:28 +00:00
|
|
|
|
|
|
|
if ( !added )
|
|
|
|
{
|
|
|
|
// Try matching by name instead
|
|
|
|
std::string name = cfgGroup.dictionaries[ x ].name.toUtf8().data();
|
|
|
|
|
|
|
|
if ( name.size() )
|
|
|
|
for( unsigned y = 0; y < allDictionaries.size(); ++y )
|
|
|
|
if ( allDictionaries[ y ]->getName() == name )
|
|
|
|
{
|
|
|
|
dictionaries.push_back( allDictionaries[ y ] );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Group::Group( QString const & name_ ): name( name_ )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Config::Group Group::makeConfigGroup()
|
|
|
|
{
|
|
|
|
Config::Group result;
|
|
|
|
|
|
|
|
result.name = name;
|
|
|
|
result.icon = icon;
|
|
|
|
|
|
|
|
for( unsigned x = 0; x < dictionaries.size(); ++x )
|
2009-04-01 12:00:28 +00:00
|
|
|
result.dictionaries.push_back(
|
|
|
|
Config::DictionaryRef( dictionaries[ x ]->getId().c_str(),
|
|
|
|
QString::fromUtf8( dictionaries[ x ]->getName().c_str() ) ) );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-04-01 12:00:28 +00:00
|
|
|
void updateNames( Config::Group & group,
|
|
|
|
vector< sptr< Dictionary::Class > > const & allDictionaries )
|
|
|
|
{
|
|
|
|
|
|
|
|
for( unsigned x = group.dictionaries.size(); x--; )
|
|
|
|
{
|
|
|
|
std::string id = group.dictionaries[ x ].id.toStdString();
|
|
|
|
|
|
|
|
for( unsigned y = allDictionaries.size(); y--; )
|
|
|
|
if ( allDictionaries[ y ]->getId() == id )
|
|
|
|
{
|
|
|
|
group.dictionaries[ x ].name = QString::fromUtf8( allDictionaries[ y ]->getName().c_str() );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
}
|