1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
/*
* PreviSat, Satellite tracking software
* Copyright (C) 2005-2016 Astropedia web: http://astropedia.free.fr - mailto: astropedia@free.fr
*
* 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, see <http://www.gnu.org/licenses/>.
*
* _______________________________________________________________________________________________________
*
* Nom du fichier
* > apropos.cpp
*
* Localisation
* >
*
* Heritage
* > QMainWindow
*
* Description
* > Fenetre A propos
*
* Auteur
* > Astropedia
*
* Date de creation
* > 10 mars 2012
*
* Date de revision
* > 24 octobre 2015
*
*/
#include <QDate>
#pragma GCC diagnostic ignored "-Wconversion"
#include <QSettings>
#pragma GCC diagnostic warning "-Wconversion"
#include "apropos.h"
#include "ui_apropos.h"
static QSettings settings("Astropedia", "previsat");
Apropos::Apropos(QWidget *fenetreParent) :
QMainWindow(fenetreParent),
ui(new Ui::Apropos)
{
ui->setupUi(this);
QFont police;
#if defined (Q_OS_WIN)
police.setFamily("MS Shell Dlg 2");
police.setPointSize(8);
#elif defined (Q_OS_LINUX)
police.setFamily("Sans Serif");
police.setPointSize(7);
#elif defined (Q_OS_MAC)
police.setFamily("Marion");
police.setPointSize(11);
#else
#endif
setFont(police);
const QString titre = tr("À propos de %1 %2");
setWindowTitle(titre.arg(QCoreApplication::applicationName()).arg(QString(APPVER_MAJ)));
QGraphicsScene * const scene = new QGraphicsScene;
scene->setSceneRect(ui->imagePreviSat->rect());
scene->setBackgroundBrush(QBrush(palette().background().color()));
scene->addPixmap(QPixmap(":/resources/apropos.png").scaled(ui->imagePreviSat->size()));
ui->imagePreviSat->setScene(scene);
QGraphicsView view(scene);
view.setRenderHints(QPainter::Antialiasing);
if (settings.value("affichage/flagIntensiteVision", false).toBool()) {
QPalette paletteWin, palList;
const int red = settings.value("affichage/valIntensiteVision", 0).toInt();
const QBrush alpha = QBrush(QColor::fromRgb(red, 0, 0, 255));
const QColor coulList = QColor(red + 27, 0, 0);
paletteWin.setBrush(this->backgroundRole(), alpha);
palList.setColor(QPalette::Base, coulList);
this->setPalette(paletteWin);
ui->imagePreviSat->setBackgroundBrush(alpha);
}
const QString informations = "Copyright © %1 %2";
ui->informationsCopyright->setText(informations.arg(QCoreApplication::organizationName()).arg(QString(APP_ANNEES_DEV)));
const QString logiciel = "%1 %2";
ui->nomLogiciel->setText(logiciel.arg(QCoreApplication::applicationName()).arg(QString(APPVER_MAJ)));
const QString msg = tr("Version %1 (%2)");
ui->numeroVersion->setText(msg.arg(APPVERSION).
arg(QLocale(QLocale::C).toDate(QString("Jun 30 2016").simplified(), QLatin1String("MMM d yyyy")).
toString(Qt::SystemLocaleShortDate)));
}
Apropos::~Apropos()
{
delete ui;
}
void Apropos::on_ok_clicked()
{
close();
}
|