#include "bitcoingui.h"
#include "clientmodel.h"
#include "guiconstants.h"
#include "guiutil.h"
#include "intro.h"
#include "net.h"
#include "networkstyle.h"
#include "optionsmodel.h"
#include "splashscreen.h"
#include "utilitydialog.h"
#include "importorcreate.h"
#include "winshutdownmonitor.h"
#include "masternodeconfig.h"
#include "init.h"
#include "fs.h"
#include "main.h"
#include "rpc/server.h"
#include "guiinterface.h"
#include "util.h"
#include "encryptdialog.h"
#include "entermnemonics.h"
#include <signal.h>
#include <stdint.h>
#include <unistd.h>
#include <execinfo.h>
#include <boost/thread.hpp>
#include <QApplication>
#include <QDebug>
#include <QLibraryInfo>
#include <QLocale>
#include <QMessageBox>
#include <QProcess>
#include <QSettings>
#include <QThread>
#include <QTimer>
#include <QTranslator>
#include "prcycoin.moc"
Go to the source code of this file.
|
| void | DebugMessageHandler (QtMsgType type, const QMessageLogContext &context, const QString &msg) |
| |
| void | handler (int sig) |
| |
| int | main (int argc, char *argv[]) |
| |
◆ DEBUG_BACKTRACE
| #define DEBUG_BACKTRACE 1 |
◆ DebugMessageHandler()
| void DebugMessageHandler |
( |
QtMsgType |
type, |
|
|
const QMessageLogContext & |
context, |
|
|
const QString & |
msg |
|
) |
| |
◆ handler()
◆ main()
| int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |
- Parse command-line options. These take precedence over anything else.
- Basic Qt initialization (not dependent on parameters or configuration)
- Application identification
- Initialization of translations, so that intro dialog is in user's language
- Now that settings and translations are available, ask user for data directory
- Determine availability of data directory and parse prcycoin.conf
- Do not call GetDataDir(true) before this step finishes
- Determine network (and switch to network specific options)
- Main GUI initialization
Definition at line 568 of file prcycoin.cpp.