fix(docs): fix incorrect docgen and add wayland module

This commit is contained in:
outfoxxed 2024-02-25 19:36:52 -08:00
parent d5344f463f
commit fabf86f75f
Signed by: outfoxxed
GPG Key ID: 4C88A185FB89301E
4 changed files with 13 additions and 5 deletions

2
docs

@ -1 +1 @@
Subproject commit 94f07543939dfe682bb382f6802cbe9ff3eea061
Subproject commit d603e3de533c74248621943bc85034620f4ef8c7

View File

@ -6,10 +6,11 @@ headers = [
"reload.hpp",
"shell.hpp",
"variants.hpp",
"proxywindow.hpp",
"layershell.hpp",
"region.hpp",
"proxywindow.hpp",
"persistentprops.hpp",
"windowinterface.hpp",
"panelinterface.hpp",
"floatingwindow.hpp",
]
-----
The core types provided by QuickShell

7
src/wayland/module.md Normal file
View File

@ -0,0 +1,7 @@
name = "QuickShell.Wayland"
description = "Wayland specific QuickShell types"
headers = [
"layershell.hpp",
"waylandlayershell.hpp",
]
-----

View File

@ -18,7 +18,7 @@ class WaylandLayershell: public ProxyWindowBase {
/// Similar to the class property of windows. Can be used to identify the window to external tools.
///
/// Cannot be set after windowConnected.
Q_PROPERTY(QString namespace READ ns WRITE setNamespace);
Q_PROPERTY(QString namespace READ ns WRITE setNamespace NOTIFY namespaceChanged);
/// The degree of keyboard focus taken. Defaults to `KeyboardFocus.None`.
Q_PROPERTY(KeyboardFocus::Enum keyboardFocus READ keyboardFocus WRITE setKeyboardFocus NOTIFY keyboardFocusChanged);