mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
28 lines
510 B
C++
28 lines
510 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 */
|
|
|
|
#pragma once
|
|
|
|
#include "ui_initializing.h"
|
|
|
|
class Initializing: public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Initializing( QWidget * parent );
|
|
|
|
public slots:
|
|
|
|
void indexing( QString const & dictionaryName );
|
|
void loading( const QString & dictionaryName );
|
|
|
|
private:
|
|
|
|
virtual void closeEvent( QCloseEvent * );
|
|
virtual void reject();
|
|
|
|
Ui::Initializing ui;
|
|
};
|