[vlc-devel] [PATCH 05/14] qml: introduce MenuLabel widget

Prince Gupta guptaprince8832 at gmail.com
Thu Jul 2 14:23:14 CEST 2020


---
 modules/gui/qt/Makefile.am               |  1 +
 modules/gui/qt/vlc.qrc                   |  1 +
 modules/gui/qt/widgets/qml/MenuLabel.qml | 28 ++++++++++++++++++++++++
 3 files changed, 30 insertions(+)
 create mode 100644 modules/gui/qt/widgets/qml/MenuLabel.qml

diff --git a/modules/gui/qt/Makefile.am b/modules/gui/qt/Makefile.am
index c8414d5d5f..4995ede714 100644
--- a/modules/gui/qt/Makefile.am
+++ b/modules/gui/qt/Makefile.am
@@ -673,6 +673,7 @@ libqt_plugin_la_QML = \
 	gui/qt/widgets/qml/MenuCaption.qml \
 	gui/qt/widgets/qml/MenuExt.qml \
 	gui/qt/widgets/qml/MenuItemExt.qml \
+	gui/qt/widgets/qml/MenuLabel.qml \
 	gui/qt/widgets/qml/NavigableCol.qml \
 	gui/qt/widgets/qml/NavigableFocusScope.qml \
 	gui/qt/widgets/qml/NavigableRow.qml \
diff --git a/modules/gui/qt/vlc.qrc b/modules/gui/qt/vlc.qrc
index c876c41443..ffec3cc4da 100644
--- a/modules/gui/qt/vlc.qrc
+++ b/modules/gui/qt/vlc.qrc
@@ -217,6 +217,7 @@
         <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>
+        <file alias="MenuLabel.qml">widgets/qml/MenuLabel.qml</file>
     </qresource>
     <qresource prefix="/util">
         <file alias="SelectableDelegateModel.qml">util/qml/SelectableDelegateModel.qml</file>
diff --git a/modules/gui/qt/widgets/qml/MenuLabel.qml b/modules/gui/qt/widgets/qml/MenuLabel.qml
new file mode 100644
index 0000000000..da260af3a5
--- /dev/null
+++ b/modules/gui/qt/widgets/qml/MenuLabel.qml
@@ -0,0 +1,28 @@
+/*****************************************************************************
+ * 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_large
+    font.weight: Font.DemiBold
+    color: VLCStyle.colors.text
+    verticalAlignment: Text.AlignVCenter
+}
-- 
2.25.1



More information about the vlc-devel mailing list