mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
Minor
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4711 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
parent
5e72bff588
commit
6fc732aa09
13
ico/16x16/kdenlive-show-video.svg
Normal file
13
ico/16x16/kdenlive-show-video.svg
Normal file
@ -0,0 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#4d4d4d;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 2 2 L 2 14 L 14 14 L 14 2 L 2 2 z M 5 3 L 11 3 L 11 7 L 5 7 L 5 3 z M 3 4 L 4 4 L 4 5 L 3 5 L 3 4 z M 12 4 L 13 4 L 13 5 L 12 5 L 12 4 z M 3 7.5 L 4 7.5 L 4 8.5 L 3 8.5 L 3 7.5 z M 12 7.5 L 13 7.5 L 13 8.5 L 12 8.5 L 12 7.5 z M 5 9 L 11 9 L 11 13 L 5 13 L 5 9 z M 3 11 L 4 11 L 4 12 L 3 12 L 3 11 z M 12 11 L 13 11 L 13 12 L 12 12 L 12 11 z "
|
||||
class="ColorScheme-Text"/>
|
||||
</svg>
|
After Width: | Height: | Size: 692 B |
@ -252,5 +252,6 @@
|
||||
<file>ico/16x16/help-contents.svg</file>
|
||||
<file>ico/16x16/help-donate.svg</file>
|
||||
<file>ico/16x16/edit-download.svg</file>
|
||||
<file>ico/16x16/kdenlive-show-video.svg</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
@ -124,6 +124,9 @@ QWidget *AboutQET::authorsTab() const {
|
||||
addAuthor(authors, "Benoît Ansieau", "benoit@qelectrotech.org", tr("Idée originale"));
|
||||
addAuthor(authors, "Laurent Trinques", "scorpio@qelectrotech.org", tr("Développement"));
|
||||
addAuthor(authors, "Joshua Claveau", "Joshua@qelectrotech.org", tr("Développement"));
|
||||
addAuthor(authors, "Davi Fochi", "davi@fochi.com.br", tr("Développement"));
|
||||
addAuthor(authors, "Ronny Desmedt", "r.desmedt@live.be", tr("Convertisseur DXF"));
|
||||
addAuthor(authors, "Abhishek Bansal", "abhishek@qelectrotech.org", tr("Développement"));
|
||||
|
||||
|
||||
|
||||
@ -196,11 +199,7 @@ QWidget *AboutQET::contributorsTab() const {
|
||||
addAuthor(contributors, "Arun Kishore Eswara", "eswara.arun@gmail.com", tr("Documentation"));
|
||||
addAuthor(contributors, "René Negre", "runsys@qelectrotech.org", tr("Développement"));
|
||||
addAuthor(contributors, "Nuri", "nuri@qelectrotech.org", tr("Collection d'éléments"));
|
||||
addAuthor(contributors, "Ronny Desmedt", "r.desmedt@live.be", tr("Convertisseur DXF"));
|
||||
addAuthor(contributors, "Abhishek Bansal", "abhishek@qelectrotech.org", tr("Développement"));
|
||||
addAuthor(contributors, "Davi Fochi", "davi@fochi.com.br", tr("Développement"));
|
||||
|
||||
|
||||
addAuthor(contributors, "Raul Roda", "", tr("Python plugin qet-tb-generator"));
|
||||
|
||||
contributors -> setOpenExternalLinks(true);
|
||||
contributors -> setTextFormat(Qt::RichText);
|
||||
|
@ -189,6 +189,7 @@ namespace QET {
|
||||
QIcon QETManual;
|
||||
QIcon QETDonate;
|
||||
QIcon QETDownload;
|
||||
QIcon QETVideo;
|
||||
}
|
||||
}
|
||||
|
||||
@ -395,6 +396,7 @@ void QET::Icons::initIcons() {
|
||||
QETOxygenLogo .addFile(":/ico/oxygen-icons/32x32/apps/qelectrotech.png");
|
||||
QETOxygenLogo .addFile(":/ico/oxygen-icons/48x48/apps/qelectrotech.png");
|
||||
QETOxygenLogo .addFile(":/ico/oxygen-icons/64x64/apps/qelectrotech.png");
|
||||
QETVideo .addFile(":/ico/16x16/kdenlive-show-video.svg");
|
||||
QtLogo .addFile(":/ico/32x32/qt.png");
|
||||
Raise .addFile(":/ico/22x22/raise.png");
|
||||
Remove .addFile(":/ico/16x16/list-remove.png");
|
||||
|
@ -198,6 +198,7 @@ namespace QET {
|
||||
extern QIcon QETManual;
|
||||
extern QIcon QETDonate;
|
||||
extern QIcon QETDownload;
|
||||
extern QIcon QETVideo;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
@ -83,7 +83,7 @@ void QETMainWindow::initCommonActions() {
|
||||
|
||||
manual_online_ -> setShortcut(Qt::Key_F1);
|
||||
|
||||
youtube_ = new QAction(QET::Icons::QETManual, tr("Chaine Youtube"), this);
|
||||
youtube_ = new QAction(QET::Icons::QETVideo, tr("Chaine Youtube"), this);
|
||||
youtube_ -> setStatusTip(tr("Lance le navigateur par defaut vers la chaine Youtube de QElectroTech", "status bar tip"));
|
||||
|
||||
connect(youtube_, &QAction::triggered, [this](bool) {
|
||||
@ -99,7 +99,7 @@ void QETMainWindow::initCommonActions() {
|
||||
QDesktopServices::openUrl(QUrl(link));
|
||||
});
|
||||
|
||||
donate_ = new QAction(QET::Icons::QETDonate, tr("Faire un don"), this);
|
||||
donate_ = new QAction(QET::Icons::QETDonate, tr("Soutenir le projet par un don"), this);
|
||||
donate_ -> setStatusTip(tr("Soutenir le projet QElectroTech par un don", "status bar tip"));
|
||||
|
||||
connect(donate_, &QAction::triggered, [this](bool) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user