mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
Update application style according to the system (WindowsXP, MacOS, X11)
This commit is contained in:
parent
59e1e0bbf0
commit
5140f42cb1
2 changed files with 15 additions and 0 deletions
14
src/main.cpp
14
src/main.cpp
|
@ -27,6 +27,14 @@
|
|||
#include <QTcpSocket>
|
||||
#include <QSettings>
|
||||
|
||||
#ifdef Q_WS_WIN
|
||||
#include <QWindowsXPStyle>
|
||||
#endif
|
||||
|
||||
#ifdef Q_WS_MAC
|
||||
#include <QMacStyle>
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "GUI.h"
|
||||
|
@ -81,6 +89,12 @@ int main(int argc, char *argv[]){
|
|||
return 0;
|
||||
}
|
||||
QApplication app(argc, argv);
|
||||
#ifdef Q_WS_WIN
|
||||
app.setStyle(new QWindowsXPStyle());
|
||||
#endif
|
||||
#ifdef Q_WS_MAC
|
||||
app.setStyle(new QMacStyle());
|
||||
#endif
|
||||
QSplashScreen *splash = new QSplashScreen(QPixmap(":/Icons/splash.jpg"));
|
||||
splash->show();
|
||||
// Open options file to read locale
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue