goldendict-ng/initializing.cc
2010-12-09 15:31:50 +03:00

42 lines
1,001 B
C++

/* This file is (c) 2008-2011 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include "initializing.hh"
#include <QCloseEvent>
Initializing::Initializing( QWidget * parent, bool showOnStartup ): QDialog( parent )
{
ui.setupUi( this );
setWindowFlags( Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint |
Qt::WindowMinimizeButtonHint );
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( "Please wait while indexing dictionary" ) );
ui.dictionary->setText( dictionaryName );
ui.dictionary->show();
ui.progressBar->show();
show();
}
void Initializing::closeEvent( QCloseEvent * ev )
{
ev->ignore();
}
void Initializing::reject()
{
}