-
Notifications
You must be signed in to change notification settings - Fork 43
chore: can't use ScrollView in qt5 #543
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
as title.
Synchronize source files from linuxdeepin/dtkdeclarative. Source-pull-request: linuxdeepin/dtkdeclarative#543
Reviewer's GuideRefactors ScrollView.qml to switch from QtQuick.Controls 2.4 to Deepin template-based T.ScrollView and custom D.ScrollBar implementations, adding explicit size calculations and integrating Deepin scrollbars for both vertical and horizontal scrolling. Class diagram for updated ScrollView.qml structureclassDiagram
class T.ScrollView {
+implicitWidth
+implicitHeight
}
class D.ScrollBar {
+vertical
+horizontal
+active
}
T.ScrollView "1" o-- "1" D.ScrollBar : vertical
T.ScrollView "1" o-- "1" D.ScrollBar : horizontal
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: 18202781743, mhduiy The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
Synchronize source files from linuxdeepin/dtkdeclarative. Source-pull-request: linuxdeepin/dtkdeclarative#543
as title.
Summary by Sourcery
Refactor the ScrollView QML component to replace the QtQuick.Controls 2.4 version with QtQuick.Templates.ScrollView and custom Deepin scrollbars for Qt5 compatibility
Enhancements: