Dash Core Source Documentation (0.16.0.1)
Find detailed information regarding the Dash Core source code.
splashscreen.cpp
Go to the documentation of this file.
71 imgLogo.setPixel(x, y, qRgba(logoColor.red(), logoColor.green(), logoColor.blue(), qAlpha(rgb)));
85 pixPaint.drawPixmap((width / 2) - (logoWidth / 2), (height / 2) - (logoHeight / 2) + 20, pixmapLogo.scaled(logoWidth * scale, logoHeight * scale, Qt::KeepAspectRatio, Qt::SmoothTransformation));
108 pixPaint.drawText((width / 2) - (versionTextWidth / 2), titleTextHeight + paddingTop + titleVersionVSpace, versionText);
173 static void ShowProgress(SplashScreen *splash, const std::string &title, int nProgress, bool resume_possible)
void unsubscribeFromCoreSignals()
Disconnect core signals to splash screen.
Definition: splashscreen.cpp:199
Class for the splashscreen with information of the running client.
Definition: splashscreen.h:20
SplashScreen(Qt::WindowFlags f, const NetworkStyle *networkStyle)
Definition: splashscreen.cpp:30
QColor getThemedQColor(ThemedColor color)
Helper to get colors for various themes which can't be applied via css for some reason.
Definition: guiutil.cpp:204
void subscribeToCoreSignals()
Connect core signals to splash screen.
Definition: splashscreen.cpp:189
boost::signals2::signal< void(CWallet *wallet)> LoadWallet
A wallet has been loaded.
Definition: ui_interface.h:96
void showMessage(const QString &message, int alignment, const QColor &color)
Show message and progress.
Definition: splashscreen.cpp:212
static void InitMessage(SplashScreen *splash, const std::string &message)
Definition: splashscreen.cpp:164
static void ShowProgress(SplashScreen *splash, const std::string &title, int nProgress, bool resume_possible)
Definition: splashscreen.cpp:173
void slotFinish(QWidget *mainWin)
Slot to call finish() method as it's not defined as slot.
Definition: splashscreen.cpp:152
Definition: networkstyle.h:14
A CWallet is an extension of a keystore, which also maintains a set of transactions and balances...
Definition: wallet.h:715
boost::signals2::signal< void(const std::string &title, int nProgress)> ShowProgress
Show progress e.g.
Definition: wallet.h:1200
boost::signals2::signal< void(const std::string &title, int nProgress, bool resume_possible)> ShowProgress
Show progress e.g.
Definition: ui_interface.h:102
std::string _(const char *psz)
Translation function: Call Translate signal on UI interface, which returns a boost::optional result...
Definition: util.h:92
boost::signals2::signal< void(const std::string &message)> InitMessage
Progress message during initialization.
Definition: ui_interface.h:82