mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-18 19:44:06 +00:00
b5349478cf
The next commit will add `.git-blame-ignore-revs` https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view
41 lines
934 B
C++
41 lines
934 B
C++
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
#include <QIcon>
|
|
#include "initializing.hh"
|
|
#include <QCloseEvent>
|
|
|
|
Initializing::Initializing( QWidget * parent, bool showOnStartup ):
|
|
QDialog( parent )
|
|
{
|
|
ui.setupUi( this );
|
|
|
|
setWindowFlags( Qt::Dialog | Qt::FramelessWindowHint );
|
|
|
|
setWindowIcon( QIcon( ":/icons/programicon.png" ) );
|
|
|
|
if ( showOnStartup ) {
|
|
ui.operation->setText( tr( "Please wait..." ) );
|
|
ui.dictionary->hide();
|
|
ui.progressBar->hide();
|
|
show();
|
|
}
|
|
}
|
|
|
|
void Initializing::indexing( QString const & dictionaryName )
|
|
{
|
|
ui.operation->setText( tr( "Indexing..." ) );
|
|
ui.dictionary->setText( dictionaryName );
|
|
ui.dictionary->show();
|
|
ui.progressBar->show();
|
|
adjustSize();
|
|
show();
|
|
}
|
|
|
|
void Initializing::closeEvent( QCloseEvent * ev )
|
|
{
|
|
ev->ignore();
|
|
}
|
|
|
|
void Initializing::reject() {}
|