Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Commit fc725b1

Browse files
authored
Merge pull request #75 from SEAME-pt/notifications-in-qt-app
Notifications in qt app
2 parents 3a39096 + b2eb3f4 commit fc725b1

234 files changed

Lines changed: 18440 additions & 808 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/epic-template.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,6 @@ body:
3131
validations:
3232
required: true
3333

34-
- type: textarea
35-
id: related_epics
36-
attributes:
37-
label: Related Epics
38-
description: List any related epics if applicable. Add each related epic as a link or reference number on a new line.
39-
placeholder: |
40-
- [ ] #
41-
validations:
42-
required: false
43-
4434
- type: markdown
4535
attributes:
4636
value: |
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: "Bug report \U0001F41E"
3+
about: Create a bug report
4+
labels: bug
5+
6+
---
7+
8+
## Describe the bug
9+
A clear and concise description of what the bug is.
10+
11+
### Steps to reproduce
12+
Steps to reproduce the behavior.
13+
14+
### Expected behavior
15+
A clear and concise description of what you expected to happen.
16+
17+
### Environment
18+
- OS: [e.g. Arch Linux]
19+
- Other details that you think may affect.
20+
21+
### Additional context
22+
Add any other context about the problem here.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: "Feature request \U0001F680"
3+
about: Suggest an idea
4+
labels: enhancement
5+
6+
---
7+
8+
## Summary
9+
Brief explanation of the feature.
10+
11+
### Basic example
12+
Include a basic example or links here.
13+
14+
### Motivation
15+
Why are we doing this? What use cases does it support? What is the expected outcome?

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/story-template.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,6 @@ body:
1818
validations:
1919
required: true
2020

21-
- type: textarea
22-
id: epic_reference
23-
attributes:
24-
label: Epic Reference
25-
description: Link to the associated Epic that this story belongs to.
26-
placeholder: |
27-
#
28-
validations:
29-
required: false
30-
3121
- type: dropdown
3222
id: priority
3323
attributes:

.github/ISSUE_TEMPLATE/task-template.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,6 @@ body:
3131
validations:
3232
required: true
3333

34-
35-
- type: textarea
36-
id: story_reference
37-
attributes:
38-
label: Story Reference
39-
description: Link to the associated Story.
40-
placeholder: |
41-
#
42-
validations:
43-
required: false
44-
4534
- type: markdown
4635
attributes:
4736
value: |

.github/pull_request_template.md

Lines changed: 4 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,5 @@
1-
# Pull Request Overview
1+
<!--
2+
Please refer to the Copilot PR overview. Create this PR using the Copilot function.
3+
Provide any additional field related to the pull request that you might find useful to describe :)
4+
-->
25

3-
## Description
4-
<!-- Provide a concise summary of the changes introduced in this PR, focusing on the purpose and outcomes. -->
5-
6-
## Type of Change
7-
- [ ] 🐞 Bugfix (fixes an issue)
8-
- [ ] ✨ New Feature (introduces new functionality)
9-
- [ ] 📄 Documentation (adds or updates documentation)
10-
- [ ] 🔧 Configuration (adjusts project configuration or tooling)
11-
12-
## Checklist
13-
- [ ] Code is thoroughly tested and operates as expected
14-
- [ ] Documentation has been updated to reflect these changes (if applicable)
15-
- [ ] No breaking changes introduced
16-
17-
## Related Issues
18-
<!-- Link any relevant issues or tickets here, e.g., "Closes #123" or "Related to #456". -->
19-
20-
## Additional Context
21-
<!-- Provide any additional context, screenshots, or details that reviewers may find helpful. -->
22-
23-
---
24-
25-
### Reviewer Checklist
26-
- [ ] Code follows project style and naming conventions.
27-
- [ ] No functionality is broken; code is well-tested.
28-
- [ ] Documentation and comments are clear.
29-
- [ ] No security vulnerabilities or performance issues are introduced.
30-
<!-- Provide any additional field related to the pull request that you might find useful to describe. -->

CMakeLists.txt

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,33 @@ set(CMAKE_AUTOMOC ON)
1616
set(CMAKE_AUTOUIC ON)
1717
set(CMAKE_AUTORCC ON)
1818

19-
include_directories(include)
20-
19+
# include_directories(Clusters/include)
20+
include_directories(Clusters/HandCluster/include)
2121
# Add Resource File (QML and Other Resources)
22-
qt_add_resources(QT_RESOURCES ./ui/resources.qrc)
22+
# qt_add_resources(QT_RESOURCES_ICA ./Clusters/InstrumentCluster/ui/resources.qrc)
23+
qt_add_resources(QT_RESOURCES_HCA ./Clusters/HandCluster/ui/resources.qrc)
2324

2425
# Define Executable Target
25-
add_executable(InstrumentClusterApp
26-
${QT_RESOURCES}
27-
./src/main.cpp
28-
./src/InstrumentCluster.cpp
29-
./include/InstrumentCluster.hpp
26+
# add_executable(InstrumentClusterApp
27+
# ${QT_RESOURCES_ICA}
28+
# ./Clusters/InstrumentCluster/src/main.cpp
29+
# ./Clusters/InstrumentCluster/src/InstrumentCluster.cpp
30+
# ./Clusters/InstrumentCluster/include/InstrumentCluster.hpp
31+
# )
32+
33+
add_executable(HandClusterB
34+
${QT_RESOURCES_HCA}
35+
./Clusters/HandCluster/src/main.cpp
36+
./Clusters/HandCluster/src/InstrumentCluster.cpp
37+
./Clusters/HandCluster/include/InstrumentCluster.hpp
38+
)
39+
40+
add_executable(MiddleWareApp
41+
./MiddleWare/src/main.cpp
3042
)
3143

32-
target_link_libraries(InstrumentClusterApp zenohcxx::zenohc -lm -ldl Qt6::Core Qt6::DBus Qt6::Quick)
44+
# target_link_libraries(InstrumentClusterApp zenohcxx::zenohc -lm -ldl Qt6::Core Qt6::DBus Qt6::Quick)
45+
46+
target_link_libraries(HandClusterB zenohcxx::zenohc -lm -ldl Qt6::Core Qt6::DBus Qt6::Quick)
47+
target_link_libraries(MiddleWareApp PRIVATE zenohcxx::zenohc)
48+
target_compile_definitions(HandClusterTests PRIVATE UNIT_TEST)

0 commit comments

Comments
 (0)