mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
#include "dictinfo.hh"
|
|
#include "langcoder.hh"
|
|
#include "language.hh"
|
|
#include "fsencoding.hh"
|
|
#include <QString>
|
|
|
|
DictInfo::DictInfo( Config::Class &cfg_, QWidget *parent ) :
|
|
QDialog( parent),
|
|
cfg( cfg_)
|
|
{
|
|
ui.setupUi( this );
|
|
if( cfg.dictInfoGeometry.size() > 0 )
|
|
restoreGeometry( cfg.dictInfoGeometry );
|
|
connect( this, SIGNAL( finished( int ) ), this, SLOT( savePos( int ) ) );
|
|
}
|
|
|
|
void DictInfo::showInfo( sptr<Dictionary::Class> dict )
|
|
{
|
|
setWindowTitle( QString::fromUtf8( dict->getName().data(), dict->getName().size() ) );
|
|
|
|
ui.dictionaryTotalArticles->setText( QString::number( dict->getArticleCount() ) );
|
|
ui.dictionaryTotalWords->setText( QString::number( dict->getWordCount() ) );
|
|
ui.dictionaryTranslatesFrom->setText( Language::localizedStringForId( dict->getLangFrom() ) );
|
|
ui.dictionaryTranslatesTo->setText( Language::localizedStringForId( dict->getLangTo() ) );
|
|
|
|
ui.openFolder->setVisible( dict->isLocalDictionary() );
|
|
ui.editDictionary->setVisible( dict->isLocalDictionary() && !dict->getMainFilename().isEmpty() && !cfg.editDictionaryCommandLine.isEmpty());
|
|
ui.editDictionary->setToolTip(
|
|
tr( "Edit the dictionary via command:\n%1" ).arg( cfg.editDictionaryCommandLine ) );
|
|
|
|
if( dict->getWordCount() == 0 )
|
|
ui.headwordsButton->setVisible( false );
|
|
else
|
|
ui.buttonsLayout->insertSpacerItem( 0, new QSpacerItem( 40, 20, QSizePolicy::Expanding ) );
|
|
|
|
std::vector< std::string > const & filenames = dict->getDictionaryFilenames();
|
|
|
|
QString filenamesText;
|
|
|
|
for( unsigned x = 0; x < filenames.size(); x++ )
|
|
{
|
|
filenamesText += FsEncoding::decode( filenames[ x ].c_str() );
|
|
filenamesText += '\n';
|
|
}
|
|
|
|
ui.dictionaryFileList->setPlainText( filenamesText );
|
|
|
|
QString info = dict->getDescription();
|
|
|
|
if( !info.isEmpty() && info.compare( "NONE" ) != 0 )
|
|
ui.infoLabel->setPlainText( info );
|
|
else
|
|
ui.infoLabel->clear();
|
|
|
|
setWindowIcon( dict->getIcon() );
|
|
}
|
|
|
|
void DictInfo::savePos( int )
|
|
{
|
|
cfg.dictInfoGeometry = saveGeometry();
|
|
}
|
|
|
|
void DictInfo::on_editDictionary_clicked()
|
|
{
|
|
done( EDIT_DICTIONARY );
|
|
}
|
|
|
|
void DictInfo::on_openFolder_clicked()
|
|
{
|
|
done( OPEN_FOLDER );
|
|
}
|
|
|
|
void DictInfo::on_OKButton_clicked()
|
|
{
|
|
done( ACCEPTED );
|
|
}
|
|
|
|
void DictInfo::on_headwordsButton_clicked()
|
|
{
|
|
done( SHOW_HEADWORDS );
|
|
}
|