Skip to content

Commit 328374e

Browse files
authored
feat: update autoware state panel (#7036)
Signed-off-by: KhalilSelyan <khalil@leodrive.ai>
1 parent 0ddcca1 commit 328374e

28 files changed

+1961
-367
lines changed

common/tier4_state_rviz_plugin/CMakeLists.txt

+27
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,42 @@ add_definitions(-DQT_NO_KEYWORDS)
1313
ament_auto_add_library(${PROJECT_NAME} SHARED
1414
src/autoware_state_panel.cpp
1515
src/velocity_steering_factors_panel.cpp
16+
src/custom_toggle_switch.cpp
17+
src/custom_slider.cpp
18+
src/custom_container.cpp
19+
src/custom_button.cpp
20+
src/custom_icon_label.cpp
21+
src/custom_segmented_button.cpp
22+
src/custom_segmented_button_item.cpp
23+
src/custom_label.cpp
24+
src/include/material_colors.hpp
25+
src/include/autoware_state_panel.hpp
26+
src/include/custom_button.hpp
27+
src/include/custom_container.hpp
28+
src/include/custom_icon_label.hpp
29+
src/include/custom_label.hpp
30+
src/include/custom_segmented_button_item.hpp
31+
src/include/custom_segmented_button.hpp
32+
src/include/custom_slider.hpp
33+
src/include/custom_toggle_switch.hpp
34+
src/include/velocity_steering_factors_panel.hpp
1635
)
1736

37+
target_include_directories(
38+
${PROJECT_NAME} PUBLIC
39+
)
40+
41+
1842
target_link_libraries(${PROJECT_NAME}
1943
${QT_LIBRARIES}
2044
)
2145

2246
# Export the plugin to be imported by rviz2
2347
pluginlib_export_plugin_description_file(rviz_common plugins/plugin_description.xml)
2448

49+
50+
51+
2552
ament_auto_package(
2653
INSTALL_TO_SHARE
2754
icons
Loading
Loading
Loading
Loading
Loading

common/tier4_state_rviz_plugin/package.xml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<description>The autoware state rviz plugin package</description>
77
<maintainer email="hiroki.ota@tier4.jp">Hiroki OTA</maintainer>
88
<maintainer email="isamu.takagi@tier4.jp">Takagi, Isamu</maintainer>
9+
<maintainer email="khalil@leodrive.ai">Khalil Selyan</maintainer>
910
<license>Apache License 2.0</license>
1011

1112
<buildtool_depend>ament_cmake_auto</buildtool_depend>

0 commit comments

Comments
 (0)