├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── doc └── images │ ├── example_firefox.png │ ├── example_green.png │ └── example_ms_explorer.png ├── qt_frameless_main_window.pro └── src ├── main.cpp └── qtf ├── config.hpp ├── decoration ├── windows10.cpp └── windows10.hpp ├── detail ├── osx │ ├── osx_hide_title_bar.hpp │ └── osx_hide_title_bar.mm └── win │ ├── widget.cpp │ └── widget.hpp └── widget.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | *.pro.user 2 | build*/ 3 | .vscode/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/example_firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/doc/images/example_firefox.png -------------------------------------------------------------------------------- /doc/images/example_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/doc/images/example_green.png -------------------------------------------------------------------------------- /doc/images/example_ms_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/doc/images/example_ms_explorer.png -------------------------------------------------------------------------------- /qt_frameless_main_window.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/qt_frameless_main_window.pro -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/qtf/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/src/qtf/config.hpp -------------------------------------------------------------------------------- /src/qtf/decoration/windows10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/src/qtf/decoration/windows10.cpp -------------------------------------------------------------------------------- /src/qtf/decoration/windows10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/src/qtf/decoration/windows10.hpp -------------------------------------------------------------------------------- /src/qtf/detail/osx/osx_hide_title_bar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/src/qtf/detail/osx/osx_hide_title_bar.hpp -------------------------------------------------------------------------------- /src/qtf/detail/osx/osx_hide_title_bar.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/src/qtf/detail/osx/osx_hide_title_bar.mm -------------------------------------------------------------------------------- /src/qtf/detail/win/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/src/qtf/detail/win/widget.cpp -------------------------------------------------------------------------------- /src/qtf/detail/win/widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/src/qtf/detail/win/widget.hpp -------------------------------------------------------------------------------- /src/qtf/widget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dan-42/qt_frameless_main_window/HEAD/src/qtf/widget.hpp --------------------------------------------------------------------------------