-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right_Click_Services #590
Open
alex94263
wants to merge
30
commits into
swri-robotics:master
Choose a base branch
from
alex94263:efffeu
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Right_Click_Services #590
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
a980c7f
added right click service
9827340
gps generic services
288da7f
Merge branch 'd4l' into kinetic-devel
1b66854
multi_res image of simulation map
50d5b45
efffeu setup
e208f2d
changed loc of tiles
c4759ab
tile move
15f144b
Merge branch 'tmp' into efffeu
937ce84
latest local d4l
b6f31e2
finished cleaning-merge request
fbe884a
Merge remote-tracking branch 'upstream/kinetic-devel' into efffeu
01655b1
l
44445c8
l2
94cd04b
removed dependency from d4l
66cc20c
Merge branch 'kinetic-devel' of https://github.com/swri-robotics/mapv…
aeb56b2
removed extraneous files
1411dd9
minor rempoved dependency
e0dce22
minor fixes
438f014
Merge branch 'd4l' into efffeu
3b5510e
Merge remote-tracking branch 'origin/master' into efffeu
pjreed 3e10717
merge request fixes 14.11
14e3784
Merge branch 'tmp1411' into HEAD
6e4414b
19.11 changes workign
a2912c2
merged CMakeList
c3ef060
duplicate std_msgs
5b456f7
removed changes from test.geo
2e20f7c
rm changes from test.geo
d5e7bdd
added Readme description to include right click services
8560299
merged kinetic devel recent into efffeu
55e88c4
changed text fields to empty right click services
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ set(DEPENDENCIES | |
marti_visualization_msgs | ||
move_base_msgs | ||
nav_msgs | ||
map_msgs | ||
pluginlib | ||
roscpp | ||
sensor_msgs | ||
|
@@ -28,6 +29,36 @@ set(DEPENDENCIES | |
|
||
find_package(catkin REQUIRED COMPONENTS ${DEPENDENCIES}) | ||
|
||
set(CMAKE_INCLUDE_CURRENT_DIR ON) | ||
find_package(Qt5Core REQUIRED) | ||
find_package(Qt5Gui REQUIRED) | ||
find_package(Qt5OpenGL REQUIRED) | ||
find_package(Qt5Widgets REQUIRED) | ||
set(QT_LIBRARIES | ||
${Qt5Core_LIBRARIES} | ||
${Qt5Gui_LIBRARIES} | ||
${Qt5OpenGL_LIBRARIES} | ||
${Qt5Widgets_LIBRARIES} | ||
) | ||
include_directories( | ||
${Qt5Core_INCLUDE_DIRS} | ||
${Qt5Gui_INCLUDE_DIRS} | ||
${Qt5OpenGL_INCLUDE_DIRS} | ||
${Qt5Widgets_INCLUDE_DIRS} | ||
) | ||
add_definitions( | ||
${Qt5Core_DEFINITIONS} | ||
${Qt5Gui_DEFINITIONS} | ||
${Qt5OpenGL_DEFINITIONS} | ||
${Qt5Widgets_DEFINITIONS} | ||
) | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${Qt5Widgets_EXECUTABLE_COMPILE_FLAGS}") | ||
|
||
|
||
add_service_files(FILES | ||
GPSCommand.srv | ||
) | ||
generate_messages(DEPENDENCIES sensor_msgs std_msgs) | ||
### QT ### | ||
if("$ENV{ROS_DISTRO}" STRLESS "kinetic") | ||
find_package(Qt4 COMPONENTS REQUIRED QtCore QtGui QtOpenGL) | ||
|
@@ -97,10 +128,12 @@ set(UI_FILES | |
ui/marker_config.ui | ||
ui/move_base_config.ui | ||
ui/navsat_config.ui | ||
ui/occupancy_grid_config.ui | ||
ui/odometry_config.ui | ||
ui/path_config.ui | ||
ui/plan_route_config.ui | ||
ui/point_click_publisher_config.ui | ||
ui/right_click_services_config.ui | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please keep the order of files in these lists alphabetized. |
||
ui/pointcloud2_config.ui | ||
ui/robot_image_config.ui | ||
ui/route_config.ui | ||
|
@@ -122,11 +155,13 @@ set(SRC_FILES | |
src/marker_plugin.cpp | ||
src/move_base_plugin.cpp | ||
src/navsat_plugin.cpp | ||
src/occupancy_grid_plugin.cpp | ||
src/odometry_plugin.cpp | ||
src/path_plugin.cpp | ||
src/placeable_window_proxy.cpp | ||
src/plan_route_plugin.cpp | ||
src/point_click_publisher_plugin.cpp | ||
src/right_click_services_plugin.cpp | ||
src/pointcloud2_plugin.cpp | ||
src/point_drawing_plugin.cpp | ||
src/robot_image_plugin.cpp | ||
|
@@ -149,12 +184,14 @@ set(HEADER_FILES | |
include/${PROJECT_NAME}/marker_plugin.h | ||
include/${PROJECT_NAME}/move_base_plugin.h | ||
include/${PROJECT_NAME}/navsat_plugin.h | ||
include/${PROJECT_NAME}/occupancy_grid_plugin.h | ||
include/${PROJECT_NAME}/odometry_plugin.h | ||
include/${PROJECT_NAME}/path_plugin.h | ||
include/${PROJECT_NAME}/path_plugin.h | ||
include/${PROJECT_NAME}/placeable_window_proxy.h | ||
include/${PROJECT_NAME}/plan_route_plugin.h | ||
include/${PROJECT_NAME}/point_click_publisher_plugin.h | ||
include/${PROJECT_NAME}/right_click_services_plugin.h | ||
include/${PROJECT_NAME}/pointcloud2_plugin.h | ||
include/${PROJECT_NAME}/point_drawing_plugin.h | ||
include/${PROJECT_NAME}/robot_image_plugin.h | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This include is duplicated.