goldendict-ng/initializing.hh
2012-02-21 01:47:14 +04:00

32 lines
571 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 */
#ifndef __INITIALIZING_HH_INCLUDED__
#define __INITIALIZING_HH_INCLUDED__
#include <QDialog>
#include "ui_initializing.h"
class Initializing: public QDialog
{
Q_OBJECT
public:
Initializing( QWidget * parent, bool showOnStartup );
public slots:
void indexing( QString const & dictionaryName );
private:
virtual void closeEvent( QCloseEvent * );
virtual void reject();
Ui::Initializing ui;
};
#endif