Remove Qt-Frameless-Window-DarkStyle#200
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace Qt-Frameless-Window-DarkStyle with Integrated Dark/Light Styles
Summary
This PR removes the Qt-Frameless-Window-DarkStyle submodule dependency and integrates the dark and light style implementations directly into the project. The styles are now applied using Qt's
QProxyStyleAPI instead of external dependencies.Changes
Removed
.gitmodulesand repositorymainwindow.cppAdded
sources/darkstyle.cppandsources/darkstyle.h- Dark theme stylesources/lightstyle.cppandsources/lightstyle.h- Light theme stylesources/stylecommon.cppandsources/stylecommon.h- Shared style utilitiesmain.cppto apply styles usingQApplication::setStyle()Modified
QT_VERSION_QT6compile definition for Qt6 compatibilityDarkStyleandLightStyleclassesdark_themesetting from QSettingsdark.qssorlight.qss)Technical Details
Style Implementation
The dark and light styles are implemented as
QProxyStylesubclasses, providing:Build System
QT_VERSION_QT6for proper icon handlingBenefits
Testing
Migration Notes
The application now uses
QProxyStyle-based theming instead of QSS files. Thedark_themesetting in QSettings continues to work as before, but the underlying implementation has changed from QSS to native Qt styles.Related
d13843d