#include <QApplication>
#include <QMessageBox>
#include <QFile>
#include <QDir>
#include <QTextStream>
#include "anoncoingui.h"
#include "clientmodel.h"
#include "guiconstants.h"
#include "guiutil.h"
#include "intro.h"
#include "optionsmodel.h"
#include "splashscreen.h"
#include "utilitydialog.h"
#include "winshutdownmonitor.h"
#include "init.h"
#include "main.h"
#include "rpcserver.h"
#include "ui_interface.h"
#include "util.h"
#include <stdint.h>
#include <boost/filesystem/operations.hpp>
#include <QLibraryInfo>
#include <QLocale>
#include <QSettings>
#include <QTimer>
#include <QTranslator>
#include <QThread>
#include <QTextCodec>
#include "anoncoin.moc"
Go to the source code of this file.
void DebugMessageHandler |
( |
QtMsgType |
type, |
|
|
const char * |
msg |
|
) |
| |
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 anoncoin.conf
- Do not call GetDataDir(true) before this step finishes
- Determine network (and switch to network specific options)
- Main GUI initialization
Definition at line 470 of file anoncoin.cpp.