2012-02-20 21:47:14 +00:00
|
|
|
/* This file is (c) 2008-2012 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 */
|
|
|
|
|
2024-11-07 03:53:04 +00:00
|
|
|
#pragma once
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
#include "ui_initializing.h"
|
|
|
|
|
|
|
|
class Initializing: public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2024-10-18 03:08:20 +00:00
|
|
|
Initializing( QWidget * parent );
|
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 );
|
2023-07-29 13:35:26 +00:00
|
|
|
void loading( const QString & dictionaryName );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2009-02-08 20:55:28 +00:00
|
|
|
virtual void closeEvent( QCloseEvent * );
|
|
|
|
virtual void reject();
|
2013-09-27 13:04:57 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
Ui::Initializing ui;
|
|
|
|
};
|