54 lines
2.7 KiB
Markdown
54 lines
2.7 KiB
Markdown
# FramelessHelper 2.0
|
|
|
|
## Highlights compared to 1.x
|
|
|
|
- Windows: Gained the ability to only remove the title bar but preserve the window frame at the same time.
|
|
- Windows: The flicker and jitter during window resizing is mostly gone. It will completely gone when DPI is 96.
|
|
- Windows: The system menu will be opened if you right-click on your custom title bar.
|
|
- Windows: Replaced Qt's original system menu with FramelessHelper's homemade one, which looks a lot better than the original one.
|
|
- Linux: Removed the limitation of the Qt version. The minimum supported version is Qt 5.6 now (previously was 5.15).
|
|
- macOS: Removed the limitation of the Qt version. The minimum supported version is Qt 5.6 now (previously was 5.15).
|
|
- macOS: The frameless window now supports native resizing.
|
|
- Common: Almost completely rewritten of the whole library, it's now a lot more easier to setup your own custom title bar than before.
|
|
- Common: Added many more helper functions to allow creating your own custom window easier.
|
|
- Misc: Reorganized the project structure to be more like a modern library, it's now a lot more friendly to the library users.
|
|
- Misc: Many bugs from the 1.x times are fixed (they were not fixable in 1.x due to technical reasons).
|
|
|
|
## Current status
|
|
|
|
Platform | Core Module | Widgets Module | Quick Module | Status
|
|
--------- | ---------- | --------------- | ----------- | ------
|
|
Windows | done | done | done | bug fixing
|
|
Linux | planned | planned | planned | start implementing
|
|
macOS | planned | planned | planned | planned
|
|
|
|
## Feedback
|
|
|
|
Please write down your feature requests and bug reports in here: <https://github.com/wangwenx190/framelesshelper/issues/104>, thanks!
|
|
|
|
## License
|
|
|
|
```text
|
|
MIT License
|
|
|
|
Copyright (C) 2022 by wangwenx190 (Yuhang Zhao)
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
```
|