[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 4708
Author: scorpio810
Date: 2016-09-15 05:42:01 +0200 (Thu, 15 Sep 2016)
Log Message:
-----------
Minor
Modified Paths:
--------------
trunk/qelectrotech.qrc
trunk/sources/qeticons.cpp
trunk/sources/qeticons.h
trunk/sources/qetmainwindow.cpp
trunk/sources/qetmainwindow.h
Added Paths:
-----------
trunk/ico/16x16/help-contents.svg
Added: trunk/ico/16x16/help-contents.svg
===================================================================
--- trunk/ico/16x16/help-contents.svg (rev 0)
+++ trunk/ico/16x16/help-contents.svg 2016-09-15 03:42:01 UTC (rev 4708)
@@ -0,0 +1,14 @@
+<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 8 2 A 6 6 0 0 0 2 8 A 6 6 0 0 0 8 14 A 6 6 0 0 0 14 8 A 6 6 0 0 0 8 2 z M 2 3 L 2 5 L 4 3 L 2 3 z M 8 3 A 5 5 0 0 1 10.390625 3.609375 L 8.8691406 5.1308594 A 3 3 0 0 0 8 5 A 3 3 0 0 0 7.1308594 5.1308594 L 5.6132812 3.6132812 A 5 5 0 0 1 8 3 z M 12 3 L 14 5 L 14 3 L 12 3 z M 3.609375 5.609375 L 5.1308594 7.1308594 A 3 3 0 0 0 5 8 A 3 3 0 0 0 5.1308594 8.8691406 L 3.6132812 10.386719 A 5 5 0 0 1 3 8 A 5 5 0 0 1 3.609375 5.609375 z M 12.386719 5.6132812 A 5 5 0 0 1 13 8 A 5 5 0 0 1 12.390625 10.390625 L 10.869141 8.8691406 A 3 3 0 0 0 11 8 A 3 3 0 0 0 10.869141 7.1308594 L 12.386719 5.6132812 z M 8 6 A 2 2 0 0 1 10 8 A 2 2 0 0 1 8 10 A 2 2 0 0 1 6 8 A 2 2 0 0 1 8 6 z M 7.1308594 10.869141 A 3 3 0 0 0 8 11 A 3 3 0 0 0 8.8691406 10.869141 L 10.386719 12.386719 A 5 5 0 0 1 8 13 A 5 5 0 0 1 5.609375 12.390625 L 7.1308594 10.869141 z M 2 11 L 2 13 L 4 13 L 2 11 z M 14 11 L 12 13 L 14 13 L 14 11 z "
+ class="ColorScheme-Text"
+ />
+</svg>
Modified: trunk/qelectrotech.qrc
===================================================================
--- trunk/qelectrotech.qrc 2016-09-15 03:02:56 UTC (rev 4707)
+++ trunk/qelectrotech.qrc 2016-09-15 03:42:01 UTC (rev 4708)
@@ -249,5 +249,6 @@
<file>ico/24x16/br.png</file>
<file>ico/22x22/grid.png</file>
<file>ico/22x22/terminalstrip.png</file>
+ <file>ico/16x16/help-contents.svg</file>
</qresource>
</RCC>
Modified: trunk/sources/qeticons.cpp
===================================================================
--- trunk/sources/qeticons.cpp 2016-09-15 03:02:56 UTC (rev 4707)
+++ trunk/sources/qeticons.cpp 2016-09-15 03:42:01 UTC (rev 4708)
@@ -186,6 +186,7 @@
QIcon listDrawings;
QIcon AutoNum;
QIcon TerminalStrip;
+ QIcon QETManual;
}
}
@@ -381,6 +382,7 @@
QETIcon .addFile(":/ico/256x256/qelectrotech.png");
ProjectFileGP .addFile(":/ico/16x16/project-WH.png");
QETLogo .addFile(":/ico/16x16/qet.png");
+ QETManual .addFile(":/ico/16x16/help-contents.svg");
QETLogo .addFile(":/ico/256x256/qet.png");
QETOxygenLogo .addFile(":/ico/oxygen-icons/128x128/apps/qelectrotech.png");
QETOxygenLogo .addFile(":/ico/oxygen-icons/16x16/apps/qelectrotech.png");
Modified: trunk/sources/qeticons.h
===================================================================
--- trunk/sources/qeticons.h 2016-09-15 03:02:56 UTC (rev 4707)
+++ trunk/sources/qeticons.h 2016-09-15 03:42:01 UTC (rev 4708)
@@ -195,6 +195,7 @@
extern QIcon listDrawings;
extern QIcon AutoNum;
extern QIcon TerminalStrip;
+ extern QIcon QETManual;
}
}
#endif
Modified: trunk/sources/qetmainwindow.cpp
===================================================================
--- trunk/sources/qetmainwindow.cpp 2016-09-15 03:02:56 UTC (rev 4707)
+++ trunk/sources/qetmainwindow.cpp 2016-09-15 03:42:01 UTC (rev 4708)
@@ -73,7 +73,7 @@
about_qet_ -> setStatusTip(tr("Affiche des informations sur QElectroTech", "status bar tip"));
connect(about_qet_, SIGNAL(triggered()), qet_app, SLOT(aboutQET()));
- manual_online_ = new QAction(QET::Icons::QETLogo, tr("Manuel QElectroTech en ligne"), this);
+ manual_online_ = new QAction(QET::Icons::QETManual, tr("Manuel en ligne"), this);
manual_online_ -> setStatusTip(tr("Lance le navigateur par defaut vers le manuel en ligne de QElectroTech", "status bar tip"));
connect(manual_online_, &QAction::triggered, [this](bool) {
Modified: trunk/sources/qetmainwindow.h
===================================================================
--- trunk/sources/qetmainwindow.h 2016-09-15 03:02:56 UTC (rev 4707)
+++ trunk/sources/qetmainwindow.h 2016-09-15 03:42:01 UTC (rev 4708)
@@ -56,7 +56,7 @@
QAction *fullscreen_action_; ///< Toggle full screen
QAction *whatsthis_action_; ///< Toggle "What's this" mode
QAction *about_qet_; ///< Launch the "About QElectroTech" dialog
- QAction *manual_online_; ///< Launch browser on QElectroTech manual on line
+ QAction *manual_online_; ///< Launch browser on QElectroTech online manual
QAction *about_qt_; ///< launch the "About Qt" dialog
QMenu *settings_menu_; ///< Settings menu
QMenu *help_menu_; ///< Help menu