Skip to content

Commit 9402e16

Browse files
Add a sample UI for linux apps - lighting app (#24979)
* Initial version of a imgui UI in light app for linux. Also fixed linux app shutdown to handle signals by loop terminating instead of app killing. * remove some fixme comments * Fix unit tests ... with-ui variant was added * Restyle * Update text and remove some commented out code * Restyle --------- Co-authored-by: Andrei Litvin <andreilitvin@google.com>
1 parent 5a23941 commit 9402e16

File tree

13 files changed

+532
-2
lines changed

13 files changed

+532
-2
lines changed

.gitmodules

+4
Original file line numberDiff line numberDiff line change
@@ -289,3 +289,7 @@
289289
path = third_party/libwebsockets/repo
290290
url = https://github.com/warmcat/libwebsockets
291291
platforms = linux,darwin,tizen
292+
[submodule "third_party/imgui/repo"]
293+
path = third_party/imgui/repo
294+
url = https://github.com/ocornut/imgui
295+
platforms = linux

examples/common/QRCode/BUILD.gn

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ config("qrcode-common_config") {
2121
static_library("QRCode") {
2222
output_name = "libqrcode-common"
2323

24-
sources = [ "repo/c/qrcodegen.c" ]
24+
sources = [
25+
"repo/c/qrcodegen.c",
26+
"repo/c/qrcodegen.h",
27+
]
2528

2629
public_configs = [ ":qrcode-common_config" ]
2730

examples/lighting-app/linux/BUILD.gn

+13
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import("//build_overrides/chip.gni")
1616

1717
import("${chip_root}/build/chip/tools.gni")
1818
import("${chip_root}/src/app/common_flags.gni")
19+
import("${chip_root}/third_party/imgui/imgui.gni")
1920

2021
assert(chip_build_tools)
2122

@@ -46,6 +47,18 @@ executable("chip-lighting-app") {
4647
"${chip_root}/src/lib",
4748
]
4849

50+
if (chip_examples_enable_imgui_ui) {
51+
deps += [
52+
"${chip_root}/examples/common/QRCode",
53+
"${chip_root}/third_party/imgui",
54+
]
55+
56+
sources += [
57+
"ui.cpp",
58+
"ui.h",
59+
]
60+
}
61+
4962
include_dirs = [ "include" ]
5063

5164
if (chip_enable_pw_rpc) {

examples/lighting-app/linux/main.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
#include <lib/support/logging/CHIPLogging.h>
2727
#include <platform/Linux/NetworkCommissioningDriver.h>
2828

29+
#if defined(CHIP_IMGUI_ENABLED) && CHIP_IMGUI_ENABLED
30+
#include "ui.h"
31+
#endif
32+
2933
using namespace chip;
3034
using namespace chip::app;
3135
using namespace chip::app::Clusters;
@@ -81,7 +85,16 @@ int main(int argc, char * argv[])
8185
}
8286

8387
LightingMgr().Init();
88+
89+
#if defined(CHIP_IMGUI_ENABLED) && CHIP_IMGUI_ENABLED
90+
example::Ui::Start();
91+
#endif
92+
8493
ChipLinuxAppMainLoop();
8594

95+
#if defined(CHIP_IMGUI_ENABLED) && CHIP_IMGUI_ENABLED
96+
example::Ui::Stop();
97+
#endif
98+
8699
return 0;
87100
}

0 commit comments

Comments
 (0)