goldendict-ng/src/initializing.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
510 B
C++
Raw Normal View History

2012-02-20 21:47:14 +00:00
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
2024-11-07 03:53:04 +00:00
#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;
};