mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-01-31 16:52:10 +01:00
74 lines
2.4 KiB
C++
74 lines
2.4 KiB
C++
/**
|
|
******************************************************************************
|
|
*
|
|
* @file gcssplashscreen.cpp
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2012.
|
|
* @addtogroup [Group]
|
|
* @{
|
|
* @addtogroup GCSSplashScreen
|
|
* @{
|
|
* @brief [Brief]
|
|
*****************************************************************************/
|
|
/*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "gcssplashscreen.h"
|
|
#include "version_info/version_info.h"
|
|
#include <QDebug>
|
|
|
|
const QChar CopyrightSymbol(0x00a9);
|
|
|
|
GCSSplashScreen::GCSSplashScreen() :
|
|
QSplashScreen(), m_pixmap(0), m_painter(0)
|
|
{
|
|
setWindowFlags(windowFlags());
|
|
m_pixmap = new QPixmap(":/app/splash.png");
|
|
|
|
m_painter = new QPainter(m_pixmap);
|
|
m_painter->setPen(Qt::lightGray);
|
|
QFont font("Tahoma", 8);
|
|
m_painter->setFont(font);
|
|
m_painter->drawText(405, 170, QString(CopyrightSymbol) +
|
|
QString(" 2010-") + VersionInfo::year() +
|
|
QString(tr(" The OpenPilot Project - All Rights Reserved")));
|
|
|
|
m_painter->drawText(406, 173, 310, 100, Qt::TextWordWrap | Qt::AlignTop | Qt::AlignLeft,
|
|
QString(tr("GCS Revision - ")) + VersionInfo::revision());
|
|
setPixmap(*m_pixmap);
|
|
}
|
|
|
|
GCSSplashScreen::~GCSSplashScreen()
|
|
{}
|
|
|
|
void GCSSplashScreen::drawMessageText(const QString &message)
|
|
{
|
|
QPixmap pix(*m_pixmap);
|
|
QPainter progressPainter(&pix);
|
|
|
|
progressPainter.setPen(Qt::lightGray);
|
|
QFont font("Tahoma", 13);
|
|
progressPainter.setFont(font);
|
|
progressPainter.drawText(170, 385, message);
|
|
setPixmap(pix);
|
|
}
|
|
|
|
void GCSSplashScreen::showPluginLoadingProgress(ExtensionSystem::PluginSpec *pluginSpec)
|
|
{
|
|
QString message(tr("Loading ") + pluginSpec->name() + " plugin...");
|
|
|
|
drawMessageText(message);
|
|
}
|