Browse Source

Draw qBittorrent version on splashscreen at run time

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
583b8c60bb
  1. BIN
      src/Icons/skin/splash.png
  2. 11
      src/main.cpp

BIN
src/Icons/skin/splash.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 75 KiB

11
src/main.cpp

@ -37,6 +37,9 @@
#include <QStyleFactory> #include <QStyleFactory>
#include <QStyle> #include <QStyle>
#include <QSplashScreen> #include <QSplashScreen>
#include <QPainter>
#include <QPen>
#include <QFont>
#include <QPushButton> #include <QPushButton>
#include <QTimer> #include <QTimer>
#include "sessionapplication.h" #include "sessionapplication.h"
@ -253,7 +256,13 @@ int main(int argc, char *argv[]){
} }
QSplashScreen *splash = 0; QSplashScreen *splash = 0;
if(!no_splash) { if(!no_splash) {
splash = new QSplashScreen(QPixmap(QString::fromUtf8(":/Icons/skin/splash.png")), Qt::WindowStaysOnTopHint); QPixmap splash_img(":/Icons/skin/splash.png");
QPainter painter(&splash_img);
QString version = VERSION;
painter.setPen(QPen(Qt::white));
painter.setFont(QFont("Arial", 22, QFont::Black));
painter.drawText(224 - painter.fontMetrics().width(version), 270, version);
splash = new QSplashScreen(splash_img, Qt::WindowStaysOnTopHint);
splash->show(); splash->show();
app.processEvents(); app.processEvents();
QTimer::singleShot(2000, splash, SLOT(deleteLater())); QTimer::singleShot(2000, splash, SLOT(deleteLater()));

Loading…
Cancel
Save