[vlc-commits] [Git][videolan/vlc][master] qml: Rename scrolling text.qml
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Mon Mar 25 20:38:16 UTC 2024
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
4667eaa2 by Darshan Jain at 2024-03-25T20:37:53+00:00
qml: Rename scrolling text.qml
- - - - -
9 changed files:
- modules/gui/qt/Makefile.am
- modules/gui/qt/medialibrary/qml/MusicArtistDelegate.qml
- modules/gui/qt/network/qml/BrowseDeviceView.qml
- modules/gui/qt/network/qml/NetworkThumbnailItem.qml
- modules/gui/qt/vlc.qrc
- modules/gui/qt/widgets/qml/GridItem.qml
- modules/gui/qt/widgets/qml/TableColumns.qml
- modules/gui/qt/widgets/qml/TableViewDelegate.qml
- modules/gui/qt/widgets/qml/ScrollingText.qml → modules/gui/qt/widgets/qml/TextAutoScroller.qml
Changes:
=====================================
modules/gui/qt/Makefile.am
=====================================
@@ -1080,7 +1080,7 @@ libqt_plugin_la_QML = \
widgets/qml/RoundButton.qml \
widgets/qml/ScaledImage.qml \
widgets/qml/ScanProgressBar.qml \
- widgets/qml/ScrollingText.qml \
+ widgets/qml/TextAutoScroller.qml \
widgets/qml/SearchBox.qml \
widgets/qml/SliderExt.qml \
widgets/qml/SortControl.qml \
=====================================
modules/gui/qt/medialibrary/qml/MusicArtistDelegate.qml
=====================================
@@ -165,7 +165,7 @@ T.ItemDelegate {
}
}
- Widgets.ScrollingText {
+ Widgets.TextAutoScroller {
label: artistName
forceScroll: root.isCurrent || root._isHover
=====================================
modules/gui/qt/network/qml/BrowseDeviceView.qml
=====================================
@@ -328,7 +328,7 @@ FocusScope {
Component {
id: mrlColumn
- Widgets.ScrollingText {
+ Widgets.TextAutoScroller {
id: itemText
property var rowModel: parent.rowModel
=====================================
modules/gui/qt/network/qml/NetworkThumbnailItem.qml
=====================================
@@ -149,7 +149,7 @@ Row {
width: Math.max(0, parent.width - x)
- Widgets.ScrollingText {
+ Widgets.TextAutoScroller {
id: itemText
anchors.left: parent.left
=====================================
modules/gui/qt/vlc.qrc
=====================================
@@ -191,7 +191,7 @@
<file alias="NavigableCol.qml">widgets/qml/NavigableCol.qml</file>
<file alias="NavigableRow.qml">widgets/qml/NavigableRow.qml</file>
<file alias="ButtonExt.qml">widgets/qml/ButtonExt.qml</file>
- <file alias="ScrollingText.qml">widgets/qml/ScrollingText.qml</file>
+ <file alias="TextAutoScroller.qml">widgets/qml/TextAutoScroller.qml</file>
<file alias="CaptionLabel.qml">widgets/qml/CaptionLabel.qml</file>
<file alias="IconLabel.qml">widgets/qml/IconLabel.qml</file>
<file alias="ListLabel.qml">widgets/qml/ListLabel.qml</file>
=====================================
modules/gui/qt/widgets/qml/GridItem.qml
=====================================
@@ -295,7 +295,7 @@ T.ItemDelegate {
}
}
- Widgets.ScrollingText {
+ Widgets.TextAutoScroller {
id: titleTextRect
label: titleLabel
=====================================
modules/gui/qt/widgets/qml/TableColumns.qml
=====================================
@@ -152,7 +152,7 @@ Item {
Layout.topMargin: VLCStyle.margin_xxsmall
Layout.bottomMargin: VLCStyle.margin_xxsmall
- Widgets.ScrollingText {
+ Widgets.TextAutoScroller {
id: textRect
anchors.left: parent.left
=====================================
modules/gui/qt/widgets/qml/TableViewDelegate.qml
=====================================
@@ -56,7 +56,7 @@ T.Control {
signal dropExited(var drag, bool before)
signal dropEvent(var drag, var drop, bool before)
- property Component defaultDelegate: Widgets.ScrollingText {
+ property Component defaultDelegate: Widgets.TextAutoScroller {
id: defaultDelId
property var rowModel: parent.rowModel
property var colModel: parent.colModel
=====================================
modules/gui/qt/widgets/qml/ScrollingText.qml → modules/gui/qt/widgets/qml/TextAutoScroller.qml
=====================================
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/4667eaa2a52a85193f2d9693c4533bc96754b789
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/4667eaa2a52a85193f2d9693c4533bc96754b789
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list