mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 05:49:11 +01:00
cee8c151fa
17780d6f35
scripted-diff: Avoid `interface` keyword to fix windows gitian build (Russell Yanofsky)
Pull request description:
Rename `interface` to `interfaces`
Build failure reported by ken2812221 in https://github.com/bitcoin/bitcoin/pull/10244#issuecomment-379434756
Tree-SHA512: e02c97c728540f344202c13b036f9f63af23bd25e25ed7a5cfe9e2c2f201a12ff232cc94a93fbe37ef6fb6bf9e036fe62210ba798ecd30de191d09338754a8d0
-BEGIN VERIFY SCRIPT-
git mv src/interface src/interfaces
ren() { git grep -l "$1" | xargs sed -i "s,$1,$2,g"; }
ren interface/ interfaces/
ren interface:: interfaces::
ren BITCOIN_INTERFACE_ BITCOIN_INTERFACES_
ren "namespace interface" "namespace interfaces"
-END VERIFY SCRIPT-
83 lines
1.9 KiB
C++
83 lines
1.9 KiB
C++
// Copyright (c) 2011-2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_QT_INTRO_H
|
|
#define BITCOIN_QT_INTRO_H
|
|
|
|
#include <QDialog>
|
|
#include <QMutex>
|
|
#include <QThread>
|
|
|
|
static const bool DEFAULT_CHOOSE_DATADIR = false;
|
|
|
|
class FreespaceChecker;
|
|
|
|
namespace interfaces {
|
|
class Node;
|
|
}
|
|
|
|
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.
|
|
*
|
|
* @returns true if a data directory was selected, false if the user cancelled the selection
|
|
* dialog.
|
|
*
|
|
* @note do NOT call global GetDataDir() before calling this function, this
|
|
* will cause the wrong path to be cached.
|
|
*/
|
|
static bool pickDataDirectory(interfaces::Node& node);
|
|
|
|
/**
|
|
* Determine default data directory for operating system.
|
|
*/
|
|
static QString getDefaultDataDirectory();
|
|
|
|
Q_SIGNALS:
|
|
void requestCheck();
|
|
void stopThread();
|
|
|
|
public Q_SLOTS:
|
|
void setStatus(int status, const QString &message, quint64 bytesAvailable);
|
|
|
|
private Q_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 // BITCOIN_QT_INTRO_H
|