1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

LP-03 Better Win32 icons, OSX icon, Splash Screen text placement and colors

This commit is contained in:
Laurent Lalanne 2015-07-13 12:39:20 +02:00
parent c57ca08911
commit 154e303bd8
4 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@ win32 {
INSTALLS += target
} else:macx {
LIBS += -framework CoreFoundation
ICON = openpilotgcs.icns
ICON = librepilotgcs.icns
QMAKE_INFO_PLIST = Info.plist
FILETYPES.files = profile.icns prifile.icns
FILETYPES.path = Contents/Resources

View File

@ -38,7 +38,7 @@ GCSSplashScreen::GCSSplashScreen() :
m_pixmap = new QPixmap(":/app/splash.png");
m_painter = new QPainter(m_pixmap);
m_painter->setPen(Qt::lightGray);
m_painter->setPen(Qt::darkGray);
QFont font("Tahoma", 8);
m_painter->setFont(font);
@ -46,10 +46,10 @@ GCSSplashScreen::GCSSplashScreen() :
QString(" ") + VersionInfo::year() +
QString(tr(" The LibrePilot Project - All Rights Reserved")));
m_painter->drawText(405, 180, QString(CopyrightSymbol) +
m_painter->drawText(405, 182, QString(CopyrightSymbol) +
QString(tr(" 2010-2015 The OpenPilot Project - All Rights Reserved")));
m_painter->drawText(406, 183, 310, 100, Qt::TextWordWrap | Qt::AlignTop | Qt::AlignLeft,
m_painter->drawText(406, 186, 310, 100, Qt::TextWordWrap | Qt::AlignTop | Qt::AlignLeft,
QString(tr("GCS Revision - ")) + VersionInfo::revision());
setPixmap(*m_pixmap);
}
@ -65,7 +65,7 @@ void GCSSplashScreen::drawMessageText(const QString &message)
progressPainter.setPen(Qt::yellow);
QFont font("Tahoma", 13);
progressPainter.setFont(font);
progressPainter.drawText(300, 385, message);
progressPainter.drawText(300, 380, message);
setPixmap(pix);
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 26 KiB