c52c4e5d14
Changes for the datadir chooser have made it impossible to specify the network (testnet/regtest) in the configuration file for the GUI. Reorganize the initialization sequence to make this possible again. - Moves the "datadir" QSetting so that is no longer dependent on the network-specific application name (doing otherwise would create a chicken-and-egg problem). - Re-initialize translations after choosing network. There may be a different language configured in network-specific settings (slim chance, but handle it for sanity). Fixes point 1 of #3840.
73 lines
1.7 KiB
C++
73 lines
1.7 KiB
C++
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef INTRO_H
|
|
#define INTRO_H
|
|
|
|
#include <QDialog>
|
|
#include <QMutex>
|
|
#include <QThread>
|
|
|
|
class FreespaceChecker;
|
|
|
|
namespace Ui {
|
|
class Intro;
|
|
}
|
|
|
|
/** Introduction screen (pre-GUI startup).
|
|
Allows the user to choose a data directory,
|
|
in which the wallet and block chain will be stored.
|
|
*/
|
|
class Intro : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Intro(QWidget *parent = 0);
|
|
~Intro();
|
|
|
|
QString getDataDirectory();
|
|
void setDataDirectory(const QString &dataDir);
|
|
|
|
/**
|
|
* Determine data directory. Let the user choose if the current one doesn't exist.
|
|
*
|
|
* @note do NOT call global GetDataDir() before calling this function, this
|
|
* will cause the wrong path to be cached.
|
|
*/
|
|
static void pickDataDirectory();
|
|
|
|
/**
|
|
* Determine default data directory for operating system.
|
|
*/
|
|
static QString getDefaultDataDirectory();
|
|
|
|
signals:
|
|
void requestCheck();
|
|
void stopThread();
|
|
|
|
public slots:
|
|
void setStatus(int status, const QString &message, quint64 bytesAvailable);
|
|
|
|
private slots:
|
|
void on_dataDirectory_textChanged(const QString &arg1);
|
|
void on_ellipsisButton_clicked();
|
|
void on_dataDirDefault_clicked();
|
|
void on_dataDirCustom_clicked();
|
|
|
|
private:
|
|
Ui::Intro *ui;
|
|
QThread *thread;
|
|
QMutex mutex;
|
|
bool signalled;
|
|
QString pathToCheck;
|
|
|
|
void startThread();
|
|
void checkPath(const QString &dataDir);
|
|
QString getPathToCheck();
|
|
|
|
friend class FreespaceChecker;
|
|
};
|
|
|
|
#endif // INTRO_H
|