├── .clang-format ├── .clang-tidy ├── .github └── workflows │ └── nix.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── VERSION ├── assets └── preview.png ├── flake.lock ├── flake.nix ├── hyprtoolkit.pc.in ├── include └── hyprtoolkit │ ├── core │ ├── Backend.hpp │ ├── CoreMacros.hpp │ ├── Input.hpp │ ├── LogTypes.hpp │ ├── Output.hpp │ ├── SessionLock.hpp │ └── Timer.hpp │ ├── element │ ├── Button.hpp │ ├── Checkbox.hpp │ ├── ColumnLayout.hpp │ ├── Combobox.hpp │ ├── Element.hpp │ ├── Image.hpp │ ├── Line.hpp │ ├── Null.hpp │ ├── Rectangle.hpp │ ├── RowLayout.hpp │ ├── ScrollArea.hpp │ ├── Slider.hpp │ ├── Spinbox.hpp │ ├── Text.hpp │ └── Textbox.hpp │ ├── palette │ ├── Color.hpp │ └── Palette.hpp │ ├── system │ └── Icons.hpp │ ├── types │ ├── FontTypes.hpp │ ├── ImageTypes.hpp │ ├── PointerShape.hpp │ └── SizeType.hpp │ └── window │ └── Window.hpp ├── nix ├── default.nix └── overlays.nix ├── protocols ├── .gitkeep └── wlr-layer-shell-unstable-v1.xml ├── scripts └── generateShaderIncludes.sh ├── src ├── Macros.hpp ├── core │ ├── AnimatedVariable.hpp │ ├── AnimationManager.cpp │ ├── AnimationManager.hpp │ ├── Backend.cpp │ ├── Backend.hpp │ ├── Input.cpp │ ├── Input.hpp │ ├── InternalBackend.cpp │ ├── InternalBackend.hpp │ ├── Logger.cpp │ ├── Logger.hpp │ └── platforms │ │ ├── WaylandPlatform.cpp │ │ └── WaylandPlatform.hpp ├── element │ ├── Element.cpp │ ├── Element.hpp │ ├── button │ │ ├── Builder.cpp │ │ ├── Button.cpp │ │ └── Button.hpp │ ├── checkbox │ │ ├── Builder.cpp │ │ ├── Checkbox.cpp │ │ ├── Checkbox.hpp │ │ └── Checkmark.cpp │ ├── columnLayout │ │ ├── Builder.cpp │ │ ├── ColumnLayout.cpp │ │ └── ColumnLayout.hpp │ ├── combobox │ │ ├── Builder.cpp │ │ ├── Combobox.cpp │ │ ├── Combobox.hpp │ │ └── DropdownHandle.cpp │ ├── image │ │ ├── Builder.cpp │ │ ├── Image.cpp │ │ └── Image.hpp │ ├── line │ │ ├── Builder.cpp │ │ ├── Line.cpp │ │ └── Line.hpp │ ├── null │ │ ├── Builder.cpp │ │ ├── Null.cpp │ │ └── Null.hpp │ ├── rectangle │ │ ├── Builder.cpp │ │ ├── Rectangle.cpp │ │ └── Rectangle.hpp │ ├── rowLayout │ │ ├── Builder.cpp │ │ ├── RowLayout.cpp │ │ └── RowLayout.hpp │ ├── scrollArea │ │ ├── Builder.cpp │ │ ├── ScrollArea.cpp │ │ └── ScrollArea.hpp │ ├── slider │ │ ├── Builder.cpp │ │ ├── Slider.cpp │ │ └── Slider.hpp │ ├── spinbox │ │ ├── Builder.cpp │ │ ├── Spinbox.cpp │ │ ├── Spinbox.hpp │ │ ├── SpinboxAngle.cpp │ │ └── SpinboxSpinner.cpp │ ├── text │ │ ├── Builder.cpp │ │ ├── Text.cpp │ │ └── Text.hpp │ └── textbox │ │ ├── Builder.cpp │ │ ├── Textbox.cpp │ │ └── Textbox.hpp ├── helpers │ ├── DamageRing.cpp │ ├── DamageRing.hpp │ ├── Env.cpp │ ├── Env.hpp │ ├── Format.cpp │ ├── Format.hpp │ ├── Memory.hpp │ ├── Signal.hpp │ ├── Timer.cpp │ ├── UTF8.cpp │ └── UTF8.hpp ├── layout │ ├── Positioner.cpp │ └── Positioner.hpp ├── output │ ├── WaylandOutput.cpp │ └── WaylandOutput.hpp ├── palette │ ├── Color.cpp │ ├── ConfigManager.cpp │ ├── ConfigManager.hpp │ └── Palette.cpp ├── renderer │ ├── Polygon.cpp │ ├── Polygon.hpp │ ├── Renderer.hpp │ ├── RendererTexture.hpp │ ├── gl │ │ ├── Framebuffer.cpp │ │ ├── Framebuffer.hpp │ │ ├── GL.hpp │ │ ├── GLTexture.cpp │ │ ├── GLTexture.hpp │ │ ├── OpenGL.cpp │ │ ├── OpenGL.hpp │ │ ├── Renderbuffer.cpp │ │ ├── Renderbuffer.hpp │ │ ├── Shader.cpp │ │ ├── Shader.hpp │ │ ├── Sync.cpp │ │ ├── Sync.hpp │ │ └── shaders │ │ │ └── glsl │ │ │ ├── CM.frag │ │ │ ├── CM.glsl │ │ │ ├── border.frag │ │ │ ├── passthru.frag │ │ │ ├── quad.frag │ │ │ ├── rgba.frag │ │ │ ├── rounding.glsl │ │ │ └── tex300.vert │ └── sync │ │ ├── SyncTimeline.cpp │ │ └── SyncTimeline.hpp ├── resource │ └── assetCache │ │ ├── AssetCache.cpp │ │ ├── AssetCache.hpp │ │ ├── AssetCacheEntry.cpp │ │ └── AssetCacheEntry.hpp ├── sessionLock │ ├── WaylandSessionLock.cpp │ └── WaylandSessionLock.hpp ├── system │ ├── Icons.cpp │ ├── Icons.hpp │ └── SystemIcon.cpp ├── types │ ├── FontSizeType.cpp │ └── SizeType.cpp └── window │ ├── Builder.cpp │ ├── IWaylandWindow.cpp │ ├── IWaylandWindow.hpp │ ├── ToolkitWindow.cpp │ ├── ToolkitWindow.hpp │ ├── WaylandLayer.cpp │ ├── WaylandLayer.hpp │ ├── WaylandLockSurface.cpp │ ├── WaylandLockSurface.hpp │ ├── WaylandPopup.cpp │ ├── WaylandPopup.hpp │ ├── WaylandWindow.cpp │ ├── WaylandWindow.hpp │ └── Window.hpp └── tests ├── Controls.cpp ├── Dialog.cpp ├── SimpleSessionLock.cpp ├── SimpleWindow.cpp └── unit ├── helpers ├── Env.cpp └── UTF8.cpp └── positioner └── Positioner.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/nix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/.github/workflows/nix.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.1 -------------------------------------------------------------------------------- /assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/assets/preview.png -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/flake.nix -------------------------------------------------------------------------------- /hyprtoolkit.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/hyprtoolkit.pc.in -------------------------------------------------------------------------------- /include/hyprtoolkit/core/Backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/core/Backend.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/core/CoreMacros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/core/CoreMacros.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/core/Input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/core/Input.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/core/LogTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/core/LogTypes.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/core/Output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/core/Output.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/core/SessionLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/core/SessionLock.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/core/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/core/Timer.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Button.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Checkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Checkbox.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/ColumnLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/ColumnLayout.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Combobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Combobox.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Element.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Image.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Line.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Null.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Rectangle.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/RowLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/RowLayout.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/ScrollArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/ScrollArea.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Slider.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Spinbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Spinbox.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Text.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/element/Textbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/element/Textbox.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/palette/Color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/palette/Color.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/palette/Palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/palette/Palette.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/system/Icons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/system/Icons.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/types/FontTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/types/FontTypes.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/types/ImageTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/types/ImageTypes.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/types/PointerShape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/types/PointerShape.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/types/SizeType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/types/SizeType.hpp -------------------------------------------------------------------------------- /include/hyprtoolkit/window/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/include/hyprtoolkit/window/Window.hpp -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/nix/default.nix -------------------------------------------------------------------------------- /nix/overlays.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/nix/overlays.nix -------------------------------------------------------------------------------- /protocols/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protocols/wlr-layer-shell-unstable-v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/protocols/wlr-layer-shell-unstable-v1.xml -------------------------------------------------------------------------------- /scripts/generateShaderIncludes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/scripts/generateShaderIncludes.sh -------------------------------------------------------------------------------- /src/Macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/Macros.hpp -------------------------------------------------------------------------------- /src/core/AnimatedVariable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/AnimatedVariable.hpp -------------------------------------------------------------------------------- /src/core/AnimationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/AnimationManager.cpp -------------------------------------------------------------------------------- /src/core/AnimationManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/AnimationManager.hpp -------------------------------------------------------------------------------- /src/core/Backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/Backend.cpp -------------------------------------------------------------------------------- /src/core/Backend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/Backend.hpp -------------------------------------------------------------------------------- /src/core/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/Input.cpp -------------------------------------------------------------------------------- /src/core/Input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/Input.hpp -------------------------------------------------------------------------------- /src/core/InternalBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/InternalBackend.cpp -------------------------------------------------------------------------------- /src/core/InternalBackend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/InternalBackend.hpp -------------------------------------------------------------------------------- /src/core/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/Logger.cpp -------------------------------------------------------------------------------- /src/core/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/Logger.hpp -------------------------------------------------------------------------------- /src/core/platforms/WaylandPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/platforms/WaylandPlatform.cpp -------------------------------------------------------------------------------- /src/core/platforms/WaylandPlatform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/core/platforms/WaylandPlatform.hpp -------------------------------------------------------------------------------- /src/element/Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/Element.cpp -------------------------------------------------------------------------------- /src/element/Element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/Element.hpp -------------------------------------------------------------------------------- /src/element/button/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/button/Builder.cpp -------------------------------------------------------------------------------- /src/element/button/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/button/Button.cpp -------------------------------------------------------------------------------- /src/element/button/Button.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/button/Button.hpp -------------------------------------------------------------------------------- /src/element/checkbox/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/checkbox/Builder.cpp -------------------------------------------------------------------------------- /src/element/checkbox/Checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/checkbox/Checkbox.cpp -------------------------------------------------------------------------------- /src/element/checkbox/Checkbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/checkbox/Checkbox.hpp -------------------------------------------------------------------------------- /src/element/checkbox/Checkmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/checkbox/Checkmark.cpp -------------------------------------------------------------------------------- /src/element/columnLayout/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/columnLayout/Builder.cpp -------------------------------------------------------------------------------- /src/element/columnLayout/ColumnLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/columnLayout/ColumnLayout.cpp -------------------------------------------------------------------------------- /src/element/columnLayout/ColumnLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/columnLayout/ColumnLayout.hpp -------------------------------------------------------------------------------- /src/element/combobox/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/combobox/Builder.cpp -------------------------------------------------------------------------------- /src/element/combobox/Combobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/combobox/Combobox.cpp -------------------------------------------------------------------------------- /src/element/combobox/Combobox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/combobox/Combobox.hpp -------------------------------------------------------------------------------- /src/element/combobox/DropdownHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/combobox/DropdownHandle.cpp -------------------------------------------------------------------------------- /src/element/image/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/image/Builder.cpp -------------------------------------------------------------------------------- /src/element/image/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/image/Image.cpp -------------------------------------------------------------------------------- /src/element/image/Image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/image/Image.hpp -------------------------------------------------------------------------------- /src/element/line/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/line/Builder.cpp -------------------------------------------------------------------------------- /src/element/line/Line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/line/Line.cpp -------------------------------------------------------------------------------- /src/element/line/Line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/line/Line.hpp -------------------------------------------------------------------------------- /src/element/null/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/null/Builder.cpp -------------------------------------------------------------------------------- /src/element/null/Null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/null/Null.cpp -------------------------------------------------------------------------------- /src/element/null/Null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/null/Null.hpp -------------------------------------------------------------------------------- /src/element/rectangle/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/rectangle/Builder.cpp -------------------------------------------------------------------------------- /src/element/rectangle/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/rectangle/Rectangle.cpp -------------------------------------------------------------------------------- /src/element/rectangle/Rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/rectangle/Rectangle.hpp -------------------------------------------------------------------------------- /src/element/rowLayout/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/rowLayout/Builder.cpp -------------------------------------------------------------------------------- /src/element/rowLayout/RowLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/rowLayout/RowLayout.cpp -------------------------------------------------------------------------------- /src/element/rowLayout/RowLayout.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/rowLayout/RowLayout.hpp -------------------------------------------------------------------------------- /src/element/scrollArea/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/scrollArea/Builder.cpp -------------------------------------------------------------------------------- /src/element/scrollArea/ScrollArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/scrollArea/ScrollArea.cpp -------------------------------------------------------------------------------- /src/element/scrollArea/ScrollArea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/scrollArea/ScrollArea.hpp -------------------------------------------------------------------------------- /src/element/slider/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/slider/Builder.cpp -------------------------------------------------------------------------------- /src/element/slider/Slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/slider/Slider.cpp -------------------------------------------------------------------------------- /src/element/slider/Slider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/slider/Slider.hpp -------------------------------------------------------------------------------- /src/element/spinbox/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/spinbox/Builder.cpp -------------------------------------------------------------------------------- /src/element/spinbox/Spinbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/spinbox/Spinbox.cpp -------------------------------------------------------------------------------- /src/element/spinbox/Spinbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/spinbox/Spinbox.hpp -------------------------------------------------------------------------------- /src/element/spinbox/SpinboxAngle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/spinbox/SpinboxAngle.cpp -------------------------------------------------------------------------------- /src/element/spinbox/SpinboxSpinner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/spinbox/SpinboxSpinner.cpp -------------------------------------------------------------------------------- /src/element/text/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/text/Builder.cpp -------------------------------------------------------------------------------- /src/element/text/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/text/Text.cpp -------------------------------------------------------------------------------- /src/element/text/Text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/text/Text.hpp -------------------------------------------------------------------------------- /src/element/textbox/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/textbox/Builder.cpp -------------------------------------------------------------------------------- /src/element/textbox/Textbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/textbox/Textbox.cpp -------------------------------------------------------------------------------- /src/element/textbox/Textbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/element/textbox/Textbox.hpp -------------------------------------------------------------------------------- /src/helpers/DamageRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/DamageRing.cpp -------------------------------------------------------------------------------- /src/helpers/DamageRing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/DamageRing.hpp -------------------------------------------------------------------------------- /src/helpers/Env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/Env.cpp -------------------------------------------------------------------------------- /src/helpers/Env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/Env.hpp -------------------------------------------------------------------------------- /src/helpers/Format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/Format.cpp -------------------------------------------------------------------------------- /src/helpers/Format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/Format.hpp -------------------------------------------------------------------------------- /src/helpers/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/Memory.hpp -------------------------------------------------------------------------------- /src/helpers/Signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/Signal.hpp -------------------------------------------------------------------------------- /src/helpers/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/Timer.cpp -------------------------------------------------------------------------------- /src/helpers/UTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/UTF8.cpp -------------------------------------------------------------------------------- /src/helpers/UTF8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/helpers/UTF8.hpp -------------------------------------------------------------------------------- /src/layout/Positioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/layout/Positioner.cpp -------------------------------------------------------------------------------- /src/layout/Positioner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/layout/Positioner.hpp -------------------------------------------------------------------------------- /src/output/WaylandOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/output/WaylandOutput.cpp -------------------------------------------------------------------------------- /src/output/WaylandOutput.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/output/WaylandOutput.hpp -------------------------------------------------------------------------------- /src/palette/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/palette/Color.cpp -------------------------------------------------------------------------------- /src/palette/ConfigManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/palette/ConfigManager.cpp -------------------------------------------------------------------------------- /src/palette/ConfigManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/palette/ConfigManager.hpp -------------------------------------------------------------------------------- /src/palette/Palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/palette/Palette.cpp -------------------------------------------------------------------------------- /src/renderer/Polygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/Polygon.cpp -------------------------------------------------------------------------------- /src/renderer/Polygon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/Polygon.hpp -------------------------------------------------------------------------------- /src/renderer/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/Renderer.hpp -------------------------------------------------------------------------------- /src/renderer/RendererTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/RendererTexture.hpp -------------------------------------------------------------------------------- /src/renderer/gl/Framebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/Framebuffer.cpp -------------------------------------------------------------------------------- /src/renderer/gl/Framebuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/Framebuffer.hpp -------------------------------------------------------------------------------- /src/renderer/gl/GL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/GL.hpp -------------------------------------------------------------------------------- /src/renderer/gl/GLTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/GLTexture.cpp -------------------------------------------------------------------------------- /src/renderer/gl/GLTexture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/GLTexture.hpp -------------------------------------------------------------------------------- /src/renderer/gl/OpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/OpenGL.cpp -------------------------------------------------------------------------------- /src/renderer/gl/OpenGL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/OpenGL.hpp -------------------------------------------------------------------------------- /src/renderer/gl/Renderbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/Renderbuffer.cpp -------------------------------------------------------------------------------- /src/renderer/gl/Renderbuffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/Renderbuffer.hpp -------------------------------------------------------------------------------- /src/renderer/gl/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/Shader.cpp -------------------------------------------------------------------------------- /src/renderer/gl/Shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/Shader.hpp -------------------------------------------------------------------------------- /src/renderer/gl/Sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/Sync.cpp -------------------------------------------------------------------------------- /src/renderer/gl/Sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/Sync.hpp -------------------------------------------------------------------------------- /src/renderer/gl/shaders/glsl/CM.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/shaders/glsl/CM.frag -------------------------------------------------------------------------------- /src/renderer/gl/shaders/glsl/CM.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/shaders/glsl/CM.glsl -------------------------------------------------------------------------------- /src/renderer/gl/shaders/glsl/border.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/shaders/glsl/border.frag -------------------------------------------------------------------------------- /src/renderer/gl/shaders/glsl/passthru.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/shaders/glsl/passthru.frag -------------------------------------------------------------------------------- /src/renderer/gl/shaders/glsl/quad.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/shaders/glsl/quad.frag -------------------------------------------------------------------------------- /src/renderer/gl/shaders/glsl/rgba.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/shaders/glsl/rgba.frag -------------------------------------------------------------------------------- /src/renderer/gl/shaders/glsl/rounding.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/shaders/glsl/rounding.glsl -------------------------------------------------------------------------------- /src/renderer/gl/shaders/glsl/tex300.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/gl/shaders/glsl/tex300.vert -------------------------------------------------------------------------------- /src/renderer/sync/SyncTimeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/sync/SyncTimeline.cpp -------------------------------------------------------------------------------- /src/renderer/sync/SyncTimeline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/renderer/sync/SyncTimeline.hpp -------------------------------------------------------------------------------- /src/resource/assetCache/AssetCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/resource/assetCache/AssetCache.cpp -------------------------------------------------------------------------------- /src/resource/assetCache/AssetCache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/resource/assetCache/AssetCache.hpp -------------------------------------------------------------------------------- /src/resource/assetCache/AssetCacheEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/resource/assetCache/AssetCacheEntry.cpp -------------------------------------------------------------------------------- /src/resource/assetCache/AssetCacheEntry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/resource/assetCache/AssetCacheEntry.hpp -------------------------------------------------------------------------------- /src/sessionLock/WaylandSessionLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/sessionLock/WaylandSessionLock.cpp -------------------------------------------------------------------------------- /src/sessionLock/WaylandSessionLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/sessionLock/WaylandSessionLock.hpp -------------------------------------------------------------------------------- /src/system/Icons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/system/Icons.cpp -------------------------------------------------------------------------------- /src/system/Icons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/system/Icons.hpp -------------------------------------------------------------------------------- /src/system/SystemIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/system/SystemIcon.cpp -------------------------------------------------------------------------------- /src/types/FontSizeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/types/FontSizeType.cpp -------------------------------------------------------------------------------- /src/types/SizeType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/types/SizeType.cpp -------------------------------------------------------------------------------- /src/window/Builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/Builder.cpp -------------------------------------------------------------------------------- /src/window/IWaylandWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/IWaylandWindow.cpp -------------------------------------------------------------------------------- /src/window/IWaylandWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/IWaylandWindow.hpp -------------------------------------------------------------------------------- /src/window/ToolkitWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/ToolkitWindow.cpp -------------------------------------------------------------------------------- /src/window/ToolkitWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/ToolkitWindow.hpp -------------------------------------------------------------------------------- /src/window/WaylandLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/WaylandLayer.cpp -------------------------------------------------------------------------------- /src/window/WaylandLayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/WaylandLayer.hpp -------------------------------------------------------------------------------- /src/window/WaylandLockSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/WaylandLockSurface.cpp -------------------------------------------------------------------------------- /src/window/WaylandLockSurface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/WaylandLockSurface.hpp -------------------------------------------------------------------------------- /src/window/WaylandPopup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/WaylandPopup.cpp -------------------------------------------------------------------------------- /src/window/WaylandPopup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/WaylandPopup.hpp -------------------------------------------------------------------------------- /src/window/WaylandWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/WaylandWindow.cpp -------------------------------------------------------------------------------- /src/window/WaylandWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/WaylandWindow.hpp -------------------------------------------------------------------------------- /src/window/Window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/src/window/Window.hpp -------------------------------------------------------------------------------- /tests/Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/tests/Controls.cpp -------------------------------------------------------------------------------- /tests/Dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/tests/Dialog.cpp -------------------------------------------------------------------------------- /tests/SimpleSessionLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/tests/SimpleSessionLock.cpp -------------------------------------------------------------------------------- /tests/SimpleWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/tests/SimpleWindow.cpp -------------------------------------------------------------------------------- /tests/unit/helpers/Env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/tests/unit/helpers/Env.cpp -------------------------------------------------------------------------------- /tests/unit/helpers/UTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/tests/unit/helpers/UTF8.cpp -------------------------------------------------------------------------------- /tests/unit/positioner/Positioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyprwm/hyprtoolkit/HEAD/tests/unit/positioner/Positioner.cpp --------------------------------------------------------------------------------