-
-
Notifications
You must be signed in to change notification settings - Fork 5
DBus utilities
In this page, we will detail the cross-platform dbus-utils
module provided by our own
UntitledDBusUtils library.
Runtime checking can be done using the dbus
member of the ModuleSettings
struct. More info can be found
here.
To enable it, update your uvproj.yaml
so that the dbus
key under enabled-modules
is set to true like this:
name: "MyProject"
version: "1.0.0.0"
engine-version: "1.0.0.0"
enabled-modules:
os: true
dbus: true
Then, regenerate the modules cache by running the following command:
user $ ./UVKBuildTool --generate <project directory>
After that, refresh your CMake project with cmake ..
!
The entire module is flagged as event safe at Any time
.
The library has already been documented on its own GitHub repo's wiki.
To check for the module at compile time, use the UIMGUI_OPEN_SUBMODULE_ENABLED
macro.
Runtime checking can be done using the dbus
member of the ModuleSettings
struct. More info can be found
here.
This module does not have a C API, since it adds additional C++ syntax sugar on top of a C library. C users should use the raw libdbus-1
C library.
This project is supported by all the people who joined our discord server and became beta testers. If you want to join the discord you can click here.
- Home
- Beginner content
- Install guide
- Creating and using the UI components
- The Instance
- The Init Info struct
- Textures
- Logging
- Unicode support
- Additional features
- Client-side bar
- Custom type definitions
- Memory management
- C API development
- Config files and Folders
- Interfaces
- Internal Event safety
- Customising the build system
- Modules system
- Collaborating with others
- Advanced content
- Developer and contributor resources
- Misc