[vlc-commits] qml: introduce MenuCaption widget
Prince Gupta
git at videolan.org
Fri Jul 3 14:59:29 CEST 2020
vlc | branch: master | Prince Gupta <guptaprince8832 at gmail.com> | Mon Jun 15 23:13:03 2020 +0530| [07f39b56aa300237acfa2b718dcff37727467452] | committer: Pierre Lamot
qml: introduce MenuCaption widget
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=07f39b56aa300237acfa2b718dcff37727467452
---
modules/gui/qt/Makefile.am | 1 +
modules/gui/qt/style/VLCColors.qml | 1 +
modules/gui/qt/vlc.qrc | 1 +
modules/gui/qt/widgets/qml/MenuCaption.qml | 27 +++++++++++++++++++++++++++
4 files changed, 30 insertions(+)
diff --git a/modules/gui/qt/Makefile.am b/modules/gui/qt/Makefile.am
index af2cc0ae57..a15ed6d90c 100644
--- a/modules/gui/qt/Makefile.am
+++ b/modules/gui/qt/Makefile.am
@@ -671,6 +671,7 @@ libqt_plugin_la_QML = \
gui/qt/widgets/qml/ListLabel.qml \
gui/qt/widgets/qml/MediaCover.qml \
gui/qt/widgets/qml/SubtitleLabel.qml \
+ gui/qt/widgets/qml/MenuCaption.qml \
gui/qt/widgets/qml/MenuExt.qml \
gui/qt/widgets/qml/MenuItemExt.qml \
gui/qt/widgets/qml/NavigableCol.qml \
diff --git a/modules/gui/qt/style/VLCColors.qml b/modules/gui/qt/style/VLCColors.qml
index 85a5ca3521..519586c191 100644
--- a/modules/gui/qt/style/VLCColors.qml
+++ b/modules/gui/qt/style/VLCColors.qml
@@ -51,6 +51,7 @@ Item {
property color textDisabled: systemPalette.textDisabled;
property color caption: setColorAlpha(text, .4)
+ property color menuCaption: setColorAlpha(text, .6)
property color bg: systemPalette.base;
property color bgInactive: systemPalette.baseInactive;
diff --git a/modules/gui/qt/vlc.qrc b/modules/gui/qt/vlc.qrc
index ce26f6774b..ddb9c814b4 100644
--- a/modules/gui/qt/vlc.qrc
+++ b/modules/gui/qt/vlc.qrc
@@ -216,6 +216,7 @@
<file alias="ListLabel.qml">widgets/qml/ListLabel.qml</file>
<file alias="SubtitleLabel.qml">widgets/qml/SubtitleLabel.qml</file>
<file alias="PlayCover.qml">widgets/qml/PlayCover.qml</file>
+ <file alias="MenuCaption.qml">widgets/qml/MenuCaption.qml</file>
<file alias="MediaCover.qml">widgets/qml/MediaCover.qml</file>
</qresource>
<qresource prefix="/util">
diff --git a/modules/gui/qt/widgets/qml/MenuCaption.qml b/modules/gui/qt/widgets/qml/MenuCaption.qml
new file mode 100644
index 0000000000..373b7937f6
--- /dev/null
+++ b/modules/gui/qt/widgets/qml/MenuCaption.qml
@@ -0,0 +1,27 @@
+/*****************************************************************************
+ * Copyright (C) 2020 VLC authors and VideoLAN
+ *
+ * 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 2 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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
+import QtQuick 2.11
+import QtQuick.Controls 2.4
+import "qrc:///style/"
+
+Label {
+ elide: Text.ElideRight
+ font.pixelSize: VLCStyle.fontSize_normal
+ color: VLCStyle.colors.menuCaption
+ verticalAlignment: Text.AlignVCenter
+}
More information about the vlc-commits
mailing list