├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── docs ├── framelesshelper-related.md ├── images │ ├── linux.png │ ├── mac.png │ ├── vs-guide-1.png │ ├── vs-guide-2.png │ ├── vs-guide-3.png │ ├── win10.png │ └── win11.png └── visual-studio-guide.md ├── examples ├── CMakeLists.txt ├── mainwindow │ ├── CMakeLists.txt │ ├── dark-style.qss │ ├── light-style.qss │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ └── mainwindow.qrc ├── qml │ ├── CMakeLists.txt │ ├── FramelessWindow.qml │ ├── QWKButton.qml │ ├── main.cpp │ ├── main.qml │ └── qml.qrc └── shared │ ├── CMakeLists.txt │ ├── resources │ ├── app │ │ ├── example.icns │ │ ├── example.ico │ │ └── example.png │ ├── shared.qrc │ └── window-bar │ │ ├── close.svg │ │ ├── fullscreen.svg │ │ ├── maximize.svg │ │ ├── minimize.svg │ │ ├── more-line.svg │ │ ├── pin-fill.svg │ │ ├── pin.svg │ │ └── restore.svg │ └── widgetframe │ ├── CMakeLists.txt │ ├── windowbar.cpp │ ├── windowbar.h │ ├── windowbar_p.h │ ├── windowbutton.cpp │ ├── windowbutton.h │ └── windowbutton_p.h ├── share ├── install.cmake ├── msbuild │ └── QWindowKit.props.in └── qmake │ ├── QWKCore.pri.in │ ├── QWKQuick.pri.in │ └── QWKWidgets.pri.in └── src ├── CMakeLists.txt ├── QWindowKitConfig.cmake.in ├── core ├── CMakeLists.txt ├── contexts │ ├── abstractwindowcontext.cpp │ ├── abstractwindowcontext_p.h │ ├── cocoawindowcontext.mm │ ├── cocoawindowcontext_p.h │ ├── qtwindowcontext.cpp │ ├── qtwindowcontext_p.h │ ├── win32windowcontext.cpp │ └── win32windowcontext_p.h ├── kernel │ ├── nativeeventfilter.cpp │ ├── nativeeventfilter_p.h │ ├── sharedeventfilter.cpp │ ├── sharedeventfilter_p.h │ ├── winidchangeeventfilter.cpp │ └── winidchangeeventfilter_p.h ├── qwindowkit_linux.h ├── qwindowkit_windows.cpp ├── qwindowkit_windows.h ├── qwkglobal.cpp ├── qwkglobal.h ├── qwkglobal_p.h ├── shared │ ├── qwkwindowsextra_p.h │ ├── systemwindow_p.h │ └── windows10borderhandler_p.h ├── style │ ├── styleagent.cpp │ ├── styleagent.h │ ├── styleagent_linux.cpp │ ├── styleagent_mac.mm │ ├── styleagent_p.h │ └── styleagent_win.cpp ├── windowagentbase.cpp ├── windowagentbase.h ├── windowagentbase_p.h ├── windowitemdelegate.cpp └── windowitemdelegate_p.h ├── quick ├── CMakeLists.txt ├── quickitemdelegate.cpp ├── quickitemdelegate_p.h ├── quickwindowagent.cpp ├── quickwindowagent.h ├── quickwindowagent_mac.cpp ├── quickwindowagent_p.h ├── quickwindowagent_win.cpp ├── qwkquickglobal.cpp └── qwkquickglobal.h └── widgets ├── CMakeLists.txt ├── qwkwidgetsglobal.h ├── widgetitemdelegate.cpp ├── widgetitemdelegate_p.h ├── widgetwindowagent.cpp ├── widgetwindowagent.h ├── widgetwindowagent_mac.cpp ├── widgetwindowagent_p.h └── widgetwindowagent_win.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/README.md -------------------------------------------------------------------------------- /docs/framelesshelper-related.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/docs/framelesshelper-related.md -------------------------------------------------------------------------------- /docs/images/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/docs/images/linux.png -------------------------------------------------------------------------------- /docs/images/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/docs/images/mac.png -------------------------------------------------------------------------------- /docs/images/vs-guide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/docs/images/vs-guide-1.png -------------------------------------------------------------------------------- /docs/images/vs-guide-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/docs/images/vs-guide-2.png -------------------------------------------------------------------------------- /docs/images/vs-guide-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/docs/images/vs-guide-3.png -------------------------------------------------------------------------------- /docs/images/win10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/docs/images/win10.png -------------------------------------------------------------------------------- /docs/images/win11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/docs/images/win11.png -------------------------------------------------------------------------------- /docs/visual-studio-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/docs/visual-studio-guide.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mainwindow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/mainwindow/CMakeLists.txt -------------------------------------------------------------------------------- /examples/mainwindow/dark-style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/mainwindow/dark-style.qss -------------------------------------------------------------------------------- /examples/mainwindow/light-style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/mainwindow/light-style.qss -------------------------------------------------------------------------------- /examples/mainwindow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/mainwindow/main.cpp -------------------------------------------------------------------------------- /examples/mainwindow/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/mainwindow/mainwindow.cpp -------------------------------------------------------------------------------- /examples/mainwindow/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/mainwindow/mainwindow.h -------------------------------------------------------------------------------- /examples/mainwindow/mainwindow.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/mainwindow/mainwindow.qrc -------------------------------------------------------------------------------- /examples/qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/qml/CMakeLists.txt -------------------------------------------------------------------------------- /examples/qml/FramelessWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/qml/FramelessWindow.qml -------------------------------------------------------------------------------- /examples/qml/QWKButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/qml/QWKButton.qml -------------------------------------------------------------------------------- /examples/qml/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/qml/main.cpp -------------------------------------------------------------------------------- /examples/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/qml/main.qml -------------------------------------------------------------------------------- /examples/qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/qml/qml.qrc -------------------------------------------------------------------------------- /examples/shared/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(widgetframe) -------------------------------------------------------------------------------- /examples/shared/resources/app/example.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/app/example.icns -------------------------------------------------------------------------------- /examples/shared/resources/app/example.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/app/example.ico -------------------------------------------------------------------------------- /examples/shared/resources/app/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/app/example.png -------------------------------------------------------------------------------- /examples/shared/resources/shared.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/shared.qrc -------------------------------------------------------------------------------- /examples/shared/resources/window-bar/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/window-bar/close.svg -------------------------------------------------------------------------------- /examples/shared/resources/window-bar/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/window-bar/fullscreen.svg -------------------------------------------------------------------------------- /examples/shared/resources/window-bar/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/window-bar/maximize.svg -------------------------------------------------------------------------------- /examples/shared/resources/window-bar/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/window-bar/minimize.svg -------------------------------------------------------------------------------- /examples/shared/resources/window-bar/more-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/window-bar/more-line.svg -------------------------------------------------------------------------------- /examples/shared/resources/window-bar/pin-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/window-bar/pin-fill.svg -------------------------------------------------------------------------------- /examples/shared/resources/window-bar/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/window-bar/pin.svg -------------------------------------------------------------------------------- /examples/shared/resources/window-bar/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/resources/window-bar/restore.svg -------------------------------------------------------------------------------- /examples/shared/widgetframe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/widgetframe/CMakeLists.txt -------------------------------------------------------------------------------- /examples/shared/widgetframe/windowbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/widgetframe/windowbar.cpp -------------------------------------------------------------------------------- /examples/shared/widgetframe/windowbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/widgetframe/windowbar.h -------------------------------------------------------------------------------- /examples/shared/widgetframe/windowbar_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/widgetframe/windowbar_p.h -------------------------------------------------------------------------------- /examples/shared/widgetframe/windowbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/widgetframe/windowbutton.cpp -------------------------------------------------------------------------------- /examples/shared/widgetframe/windowbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/widgetframe/windowbutton.h -------------------------------------------------------------------------------- /examples/shared/widgetframe/windowbutton_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/examples/shared/widgetframe/windowbutton_p.h -------------------------------------------------------------------------------- /share/install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/share/install.cmake -------------------------------------------------------------------------------- /share/msbuild/QWindowKit.props.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/share/msbuild/QWindowKit.props.in -------------------------------------------------------------------------------- /share/qmake/QWKCore.pri.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/share/qmake/QWKCore.pri.in -------------------------------------------------------------------------------- /share/qmake/QWKQuick.pri.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/share/qmake/QWKQuick.pri.in -------------------------------------------------------------------------------- /share/qmake/QWKWidgets.pri.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/share/qmake/QWKWidgets.pri.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/QWindowKitConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/QWindowKitConfig.cmake.in -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/contexts/abstractwindowcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/contexts/abstractwindowcontext.cpp -------------------------------------------------------------------------------- /src/core/contexts/abstractwindowcontext_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/contexts/abstractwindowcontext_p.h -------------------------------------------------------------------------------- /src/core/contexts/cocoawindowcontext.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/contexts/cocoawindowcontext.mm -------------------------------------------------------------------------------- /src/core/contexts/cocoawindowcontext_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/contexts/cocoawindowcontext_p.h -------------------------------------------------------------------------------- /src/core/contexts/qtwindowcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/contexts/qtwindowcontext.cpp -------------------------------------------------------------------------------- /src/core/contexts/qtwindowcontext_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/contexts/qtwindowcontext_p.h -------------------------------------------------------------------------------- /src/core/contexts/win32windowcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/contexts/win32windowcontext.cpp -------------------------------------------------------------------------------- /src/core/contexts/win32windowcontext_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/contexts/win32windowcontext_p.h -------------------------------------------------------------------------------- /src/core/kernel/nativeeventfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/kernel/nativeeventfilter.cpp -------------------------------------------------------------------------------- /src/core/kernel/nativeeventfilter_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/kernel/nativeeventfilter_p.h -------------------------------------------------------------------------------- /src/core/kernel/sharedeventfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/kernel/sharedeventfilter.cpp -------------------------------------------------------------------------------- /src/core/kernel/sharedeventfilter_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/kernel/sharedeventfilter_p.h -------------------------------------------------------------------------------- /src/core/kernel/winidchangeeventfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/kernel/winidchangeeventfilter.cpp -------------------------------------------------------------------------------- /src/core/kernel/winidchangeeventfilter_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/kernel/winidchangeeventfilter_p.h -------------------------------------------------------------------------------- /src/core/qwindowkit_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/qwindowkit_linux.h -------------------------------------------------------------------------------- /src/core/qwindowkit_windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/qwindowkit_windows.cpp -------------------------------------------------------------------------------- /src/core/qwindowkit_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/qwindowkit_windows.h -------------------------------------------------------------------------------- /src/core/qwkglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/qwkglobal.cpp -------------------------------------------------------------------------------- /src/core/qwkglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/qwkglobal.h -------------------------------------------------------------------------------- /src/core/qwkglobal_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/qwkglobal_p.h -------------------------------------------------------------------------------- /src/core/shared/qwkwindowsextra_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/shared/qwkwindowsextra_p.h -------------------------------------------------------------------------------- /src/core/shared/systemwindow_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/shared/systemwindow_p.h -------------------------------------------------------------------------------- /src/core/shared/windows10borderhandler_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/shared/windows10borderhandler_p.h -------------------------------------------------------------------------------- /src/core/style/styleagent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/style/styleagent.cpp -------------------------------------------------------------------------------- /src/core/style/styleagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/style/styleagent.h -------------------------------------------------------------------------------- /src/core/style/styleagent_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/style/styleagent_linux.cpp -------------------------------------------------------------------------------- /src/core/style/styleagent_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/style/styleagent_mac.mm -------------------------------------------------------------------------------- /src/core/style/styleagent_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/style/styleagent_p.h -------------------------------------------------------------------------------- /src/core/style/styleagent_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/style/styleagent_win.cpp -------------------------------------------------------------------------------- /src/core/windowagentbase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/windowagentbase.cpp -------------------------------------------------------------------------------- /src/core/windowagentbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/windowagentbase.h -------------------------------------------------------------------------------- /src/core/windowagentbase_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/windowagentbase_p.h -------------------------------------------------------------------------------- /src/core/windowitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/windowitemdelegate.cpp -------------------------------------------------------------------------------- /src/core/windowitemdelegate_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/core/windowitemdelegate_p.h -------------------------------------------------------------------------------- /src/quick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/CMakeLists.txt -------------------------------------------------------------------------------- /src/quick/quickitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/quickitemdelegate.cpp -------------------------------------------------------------------------------- /src/quick/quickitemdelegate_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/quickitemdelegate_p.h -------------------------------------------------------------------------------- /src/quick/quickwindowagent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/quickwindowagent.cpp -------------------------------------------------------------------------------- /src/quick/quickwindowagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/quickwindowagent.h -------------------------------------------------------------------------------- /src/quick/quickwindowagent_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/quickwindowagent_mac.cpp -------------------------------------------------------------------------------- /src/quick/quickwindowagent_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/quickwindowagent_p.h -------------------------------------------------------------------------------- /src/quick/quickwindowagent_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/quickwindowagent_win.cpp -------------------------------------------------------------------------------- /src/quick/qwkquickglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/qwkquickglobal.cpp -------------------------------------------------------------------------------- /src/quick/qwkquickglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/quick/qwkquickglobal.h -------------------------------------------------------------------------------- /src/widgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/widgets/CMakeLists.txt -------------------------------------------------------------------------------- /src/widgets/qwkwidgetsglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/widgets/qwkwidgetsglobal.h -------------------------------------------------------------------------------- /src/widgets/widgetitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/widgets/widgetitemdelegate.cpp -------------------------------------------------------------------------------- /src/widgets/widgetitemdelegate_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/widgets/widgetitemdelegate_p.h -------------------------------------------------------------------------------- /src/widgets/widgetwindowagent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/widgets/widgetwindowagent.cpp -------------------------------------------------------------------------------- /src/widgets/widgetwindowagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/widgets/widgetwindowagent.h -------------------------------------------------------------------------------- /src/widgets/widgetwindowagent_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/widgets/widgetwindowagent_mac.cpp -------------------------------------------------------------------------------- /src/widgets/widgetwindowagent_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/widgets/widgetwindowagent_p.h -------------------------------------------------------------------------------- /src/widgets/widgetwindowagent_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdware/qwindowkit/HEAD/src/widgets/widgetwindowagent_win.cpp --------------------------------------------------------------------------------