-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutframe.cpp
38 lines (32 loc) · 1.66 KB
/
aboutframe.cpp
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
/**
* 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
*/
#include "aboutframe.h"
AboutFrame::AboutFrame() : QDialog(0){
QHBoxLayout *layoutPrinc=new QHBoxLayout;
QLabel *label_img = new QLabel(this);
QPixmap *pixmap_img = new QPixmap(QCoreApplication::applicationDirPath()+QDir::separator()+"img"+QDir::separator()+"copyleft.png");
label_img->setPixmap(*pixmap_img);
layoutPrinc->addWidget(label_img);
QLabel *info=new QLabel(trUtf8("<center><b>QFacturation</b></center><br/>\
Développé par <b>David Ducatel</b><br/>\
Version: <b>1.0</b><br/>\
Sous licence: <a href='http://www.gnu.org/licenses/gpl.html'>GNU General Public License (GPL) version 3</a><br/>\
Site: <a href='http://ducatel.github.com'>ducatel.github.com</a>","Contenue de la fenetre a propos"));
info->setOpenExternalLinks(true);
layoutPrinc->addWidget(info);
setLayout(layoutPrinc);
setModal(true);
setWindowTitle(trUtf8("Information sur le développeur"));
}