Coder Social home page Coder Social logo

daodaoliang / framelesshelper Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wangwenx190/framelesshelper

0.0 1.0 0.0 5.18 MB

Frameless windows for Qt Widgets and Qt Quick applications. Support Win32, X11, Wayland and macOS.

License: MIT License

C++ 96.18% CMake 1.72% C 1.28% QMake 0.82%

framelesshelper's Introduction

FramelessHelper

If you are using part of or all the code from this repository in your own projects, it's my pleasure and I'm happy that it can help you. But I hope you can tell me the URL of the homepage or repository of your projects, whether your projects are close-sourced or commercial products do not matter. I'll link to your homepage or repository in this README file. It would be much better if you can provide me some screenshots of your software for demonstration.

如果您正在使用此项目的部分或全部代码,这是我的荣幸,我很高兴能帮到您,但我同时也希望,您能将您项目的首页或仓库的网址告诉我(闭源或收费都没关系),我将在这个自述文件中链接到您所提供的网址,以供展示。如果您能一并提供一些软件运行时的截图,那就更好了。

Screenshots - Win32

Win32Demo 1

Win32Demo 2

Win32Demo 3

Win32Demo 4

Win32Demo 5

Win32Demo 6

Screenshots - Cross platform

zhihuiyanglao

QQ Player

Qt Widgets example

Qt MainWindow example

Qt Quick example

Features

  • Support Windows, X11, Wayland and macOS.
  • Frameless but have frame shadow.
  • Draggable and resizable.
  • Automatically high DPI scaling.
  • Multi-monitor support (different resolution and DPI).
  • Have animations when minimizing, maximizing and restoring.
  • Support tiled and stack windows by DWM (Win32 only).
  • Won't cover the task bar when maximized (Win32 only).
  • Won't block the auto-hide task bar when maximized (Win32 only).
  • No flickers when resizing.
  • Load all native APIs at run-time, no need to link to any system libraries directly (Win32 only).

Usage

#include "framelesswindowsmanager.h"
#include <QWidget>

int main(int argc, char *argv[]) {
    QWidget widget;
    // Qt's internal function. Make sure it's a top level window.
    widget.createWinId();
    // Do this before the widget is shown.
    FramelessWindowsManager::addWindow(widget.windowHandle());
    widget.show();
}

Please refer to the QWidget example for more detailed information.

Ignore areas and etc

// Only **TOP LEVEL** QWidgets and QWindows are supported.
QMainWindow *mainWindow = new QMainWindow;
// Qt's internal function. Make sure it's a top level window.
mainWindow->createWinId();
QWindow *win = mainWindow->windowHandle();
// Disable resizing of the given window. Resizing is enabled by default.
FramelessWindowsManager::setResizable(win, false);
// All the following values should not be DPI-aware, just use the
// original numbers, assuming the scale factor is 1.0, don't scale
// them yourself, this code will do the scaling according to DPI
// internally and automatically.
// Maximum window size
win->setMaximumSize(1280, 720);
// Minimum window size
win->setMinimumSize(800, 540);
// The **POINTER** of a QWidget or QQuickItem
FramelessWindowsManager::addIgnoreObject(win, ui->pushButton_minimize);

Supported Platforms

Win32

Windows 7 ~ 10, 32 bit & 64 bit.

The code itself should be able to work on Windows Vista in theory, but Qt5 has dropped Vista support long time ago. And Qt6 will only support Win10.

UNIX

A not too old version of Linux and macOS, 32 bit & 64 bit.

Requirements

Win32

Component Requirement Additional Information
Qt >= 5.6 Only the core and gui modules are required
Compiler >= C++11 MSVC, MinGW, Clang-CL, Intel-CL or cross compile from Linux/macOS are all supported

UNIX

Component Requirement Additional Information
Qt >= 5.15 This code uses two functions, startSystemMove and startSystemResize, which are introduced in Qt 5.15
Compiler >= C++11 MSVC, MinGW, Clang-CL, Intel-CL / GCC, Clang, ICC are all supported

Known Bugs

Please refer to https://github.com/wangwenx190/framelesshelper/issues for more information.

License

MIT License

Copyright (C) 2020 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.

framelesshelper's People

Contributors

wangwenx190 avatar alexandreptj avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.