2010-12-09 12:31:50 +00:00
|
|
|
/* This file is (c) 2008-2011 Konstantin Isakov <ikm@goldendict.org>
|
2009-01-28 20:55:45 +00:00
|
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
|
|
|
|
#ifndef __INITIALIZING_HH_INCLUDED__
|
|
|
|
#define __INITIALIZING_HH_INCLUDED__
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include "ui_initializing.h"
|
|
|
|
|
|
|
|
class Initializing: public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2009-03-29 13:34:39 +00:00
|
|
|
Initializing( QWidget * parent, bool showOnStartup );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-04-30 15:29:03 +00:00
|
|
|
public slots:
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
void indexing( QString const & dictionaryName );
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2009-02-08 20:55:28 +00:00
|
|
|
virtual void closeEvent( QCloseEvent * );
|
|
|
|
virtual void reject();
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
Ui::Initializing ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|