mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 03:03:22 -03:00
[Qt] include and file header cleanup
- alphabetical ordering - correct ordering own headers before normal headers etc.
This commit is contained in:
parent
7fd8813675
commit
5e83bc404c
15 changed files with 39 additions and 25 deletions
|
@ -16,6 +16,7 @@
|
||||||
#include "splashscreen.h"
|
#include "splashscreen.h"
|
||||||
#include "utilitydialog.h"
|
#include "utilitydialog.h"
|
||||||
#include "winshutdownmonitor.h"
|
#include "winshutdownmonitor.h"
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include "paymentserver.h"
|
#include "paymentserver.h"
|
||||||
#include "walletmodel.h"
|
#include "walletmodel.h"
|
||||||
|
@ -26,6 +27,7 @@
|
||||||
#include "rpcserver.h"
|
#include "rpcserver.h"
|
||||||
#include "ui_interface.h"
|
#include "ui_interface.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include "wallet.h"
|
#include "wallet.h"
|
||||||
#endif
|
#endif
|
||||||
|
@ -34,15 +36,16 @@
|
||||||
|
|
||||||
#include <boost/filesystem/operations.hpp>
|
#include <boost/filesystem/operations.hpp>
|
||||||
#include <boost/thread.hpp>
|
#include <boost/thread.hpp>
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QLibraryInfo>
|
#include <QLibraryInfo>
|
||||||
#include <QLocale>
|
#include <QLocale>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QSettings>
|
#include <QSettings>
|
||||||
|
#include <QThread>
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
#include <QTranslator>
|
#include <QTranslator>
|
||||||
#include <QThread>
|
|
||||||
|
|
||||||
#if defined(QT_STATICPLUGIN)
|
#if defined(QT_STATICPLUGIN)
|
||||||
#include <QtPlugin>
|
#include <QtPlugin>
|
||||||
|
|
|
@ -7,12 +7,12 @@
|
||||||
|
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
|
|
||||||
|
class AmountSpinBox;
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QValueComboBox;
|
class QValueComboBox;
|
||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
class AmountSpinBox;
|
|
||||||
|
|
||||||
/** Widget for entering bitcoin amounts.
|
/** Widget for entering bitcoin amounts.
|
||||||
*/
|
*/
|
||||||
class BitcoinAmountField: public QWidget
|
class BitcoinAmountField: public QWidget
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
#include "optionsmodel.h"
|
#include "optionsmodel.h"
|
||||||
#include "rpcconsole.h"
|
#include "rpcconsole.h"
|
||||||
#include "utilitydialog.h"
|
#include "utilitydialog.h"
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include "walletframe.h"
|
#include "walletframe.h"
|
||||||
#include "walletmodel.h"
|
#include "walletmodel.h"
|
||||||
|
@ -24,8 +25,8 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "init.h"
|
#include "init.h"
|
||||||
#include "util.h"
|
|
||||||
#include "ui_interface.h"
|
#include "ui_interface.h"
|
||||||
|
#include "util.h"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
@ -50,8 +51,8 @@
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
|
|
||||||
#if QT_VERSION < 0x050000
|
#if QT_VERSION < 0x050000
|
||||||
#include <QUrl>
|
|
||||||
#include <QTextDocument>
|
#include <QTextDocument>
|
||||||
|
#include <QUrl>
|
||||||
#else
|
#else
|
||||||
#include <QUrlQuery>
|
#include <QUrlQuery>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -14,12 +14,14 @@
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QTreeWidgetItem>
|
#include <QTreeWidgetItem>
|
||||||
|
|
||||||
|
class WalletModel;
|
||||||
|
|
||||||
|
class CCoinControl;
|
||||||
|
class CTxMemPool;
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class CoinControlDialog;
|
class CoinControlDialog;
|
||||||
}
|
}
|
||||||
class WalletModel;
|
|
||||||
class CCoinControl;
|
|
||||||
class CTxMemPool;
|
|
||||||
|
|
||||||
class CoinControlDialog : public QDialog
|
class CoinControlDialog : public QDialog
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
class FreespaceChecker;
|
class FreespaceChecker;
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class Intro;
|
class Intro;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Introduction screen (pre-GUI startup).
|
/** Introduction screen (pre-GUI startup).
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class OpenURIDialog;
|
class OpenURIDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
class OpenURIDialog : public QDialog
|
class OpenURIDialog : public QDialog
|
||||||
|
|
|
@ -17,11 +17,13 @@
|
||||||
#include "main.h" // for MAX_SCRIPTCHECK_THREADS
|
#include "main.h" // for MAX_SCRIPTCHECK_THREADS
|
||||||
#include "netbase.h"
|
#include "netbase.h"
|
||||||
#include "txdb.h" // for -dbcache defaults
|
#include "txdb.h" // for -dbcache defaults
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include "wallet.h" // for CWallet::minTxFee
|
#include "wallet.h" // for CWallet::minTxFee
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <boost/thread.hpp>
|
#include <boost/thread.hpp>
|
||||||
|
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QIntValidator>
|
#include <QIntValidator>
|
||||||
#include <QLocale>
|
#include <QLocale>
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "net.h"
|
#include "net.h"
|
||||||
#include "txdb.h" // for -dbcache defaults
|
#include "txdb.h" // for -dbcache defaults
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include "wallet.h"
|
#include "wallet.h"
|
||||||
#include "walletdb.h"
|
#include "walletdb.h"
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
|
|
||||||
#include <openssl/x509.h>
|
#include <openssl/x509.h>
|
||||||
#include <openssl/x509_vfy.h>
|
#include <openssl/x509_vfy.h>
|
||||||
|
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QSslCertificate>
|
#include <QSslCertificate>
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
#ifndef RECEIVECOINSDIALOG_H
|
#ifndef RECEIVECOINSDIALOG_H
|
||||||
#define RECEIVECOINSDIALOG_H
|
#define RECEIVECOINSDIALOG_H
|
||||||
|
|
||||||
|
#include "guiutil.h"
|
||||||
|
|
||||||
#include <QDialog>
|
#include <QDialog>
|
||||||
#include <QHeaderView>
|
#include <QHeaderView>
|
||||||
#include <QItemSelection>
|
#include <QItemSelection>
|
||||||
|
@ -13,13 +15,12 @@
|
||||||
#include <QPoint>
|
#include <QPoint>
|
||||||
#include <QVariant>
|
#include <QVariant>
|
||||||
|
|
||||||
#include "guiutil.h"
|
class OptionsModel;
|
||||||
|
class WalletModel;
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class ReceiveCoinsDialog;
|
class ReceiveCoinsDialog;
|
||||||
}
|
}
|
||||||
class OptionsModel;
|
|
||||||
class WalletModel;
|
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QModelIndex;
|
class QModelIndex;
|
||||||
|
|
|
@ -16,10 +16,12 @@
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
#include "json/json_spirit_value.h"
|
#include "json/json_spirit_value.h"
|
||||||
|
|
||||||
|
#include <openssl/crypto.h>
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include <db_cxx.h>
|
#include <db_cxx.h>
|
||||||
#endif
|
#endif
|
||||||
#include <openssl/crypto.h>
|
|
||||||
|
|
||||||
#include <QKeyEvent>
|
#include <QKeyEvent>
|
||||||
#include <QScrollBar>
|
#include <QScrollBar>
|
||||||
|
|
|
@ -14,14 +14,14 @@
|
||||||
|
|
||||||
class ClientModel;
|
class ClientModel;
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
|
||||||
class QItemSelection;
|
|
||||||
QT_END_NAMESPACE
|
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class RPCConsole;
|
class RPCConsole;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QT_BEGIN_NAMESPACE
|
||||||
|
class QItemSelection;
|
||||||
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
/** Local Bitcoin RPC console. */
|
/** Local Bitcoin RPC console. */
|
||||||
class RPCConsole: public QDialog
|
class RPCConsole: public QDialog
|
||||||
{
|
{
|
||||||
|
|
|
@ -14,14 +14,14 @@ class OptionsModel;
|
||||||
class SendCoinsEntry;
|
class SendCoinsEntry;
|
||||||
class SendCoinsRecipient;
|
class SendCoinsRecipient;
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
|
||||||
class QUrl;
|
|
||||||
QT_END_NAMESPACE
|
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class SendCoinsDialog;
|
class SendCoinsDialog;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QT_BEGIN_NAMESPACE
|
||||||
|
class QUrl;
|
||||||
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
/** Dialog for sending bitcoins */
|
/** Dialog for sending bitcoins */
|
||||||
class SendCoinsDialog : public QDialog
|
class SendCoinsDialog : public QDialog
|
||||||
{
|
{
|
||||||
|
|
|
@ -4,11 +4,12 @@
|
||||||
|
|
||||||
#include "splashscreen.h"
|
#include "splashscreen.h"
|
||||||
|
|
||||||
#include "version.h"
|
|
||||||
#include "clientversion.h"
|
#include "clientversion.h"
|
||||||
#include "init.h"
|
#include "init.h"
|
||||||
#include "ui_interface.h"
|
#include "ui_interface.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
#ifdef ENABLE_WALLET
|
#ifdef ENABLE_WALLET
|
||||||
#include "wallet.h"
|
#include "wallet.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -6,13 +6,13 @@
|
||||||
|
|
||||||
#include "bitcoinunits.h"
|
#include "bitcoinunits.h"
|
||||||
#include "guiutil.h"
|
#include "guiutil.h"
|
||||||
|
#include "paymentserver.h"
|
||||||
|
#include "transactionrecord.h"
|
||||||
|
|
||||||
#include "base58.h"
|
#include "base58.h"
|
||||||
#include "db.h"
|
#include "db.h"
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "paymentserver.h"
|
|
||||||
#include "script/script.h"
|
#include "script/script.h"
|
||||||
#include "transactionrecord.h"
|
|
||||||
#include "timedata.h"
|
#include "timedata.h"
|
||||||
#include "ui_interface.h"
|
#include "ui_interface.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
Loading…
Add table
Reference in a new issue