Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gepetto-viewer-corba
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gepetto
gepetto-viewer-corba
Commits
0487a08f
Commit
0487a08f
authored
8 years ago
by
hdallard
Browse files
Options
Downloads
Patches
Plain Diff
Add a way to access widget's slots from other widget
parent
51806255
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/gepetto/gui/mainwindow.hh
+8
-0
8 additions, 0 deletions
include/gepetto/gui/mainwindow.hh
src/gui/mainwindow.cc
+28
-0
28 additions, 0 deletions
src/gui/mainwindow.cc
with
36 additions
and
0 deletions
include/gepetto/gui/mainwindow.hh
+
8
−
0
View file @
0487a08f
...
...
@@ -145,6 +145,12 @@ signals:
/// Open the plugin manager dialog.
void
onOpenPluginManager
();
void
registerSlot
(
const
char
*
slot
,
QObject
*
obj
);
QObject
*
getFromSlot
(
const
char
*
slot
);
void
connectSlot
(
const
char
*
slot
,
const
char
*
signal
,
QObject
*
obj
);
private
slots
:
OSGWidget
*
onCreateView
(
QString
name
);
OSGWidget
*
onCreateView
();
...
...
@@ -184,6 +190,8 @@ signals:
QMutex
delayedCreateView_
;
QStringList
robotNames_
;
QStringList
lastBodiesInCollision_
;
std
::
map
<
std
::
string
,
QObject
*>
registeredSlots_
;
};
}
// namespace gui
}
// namespace gepetto
...
...
This diff is collapsed.
Click to expand it.
src/gui/mainwindow.cc
+
28
−
0
View file @
0487a08f
...
...
@@ -413,6 +413,34 @@ namespace gepetto {
d
.
exec
();
}
void
MainWindow
::
registerSlot
(
const
char
*
slot
,
QObject
*
obj
)
{
if
(
registeredSlots_
.
find
(
slot
)
==
registeredSlots_
.
end
())
{
registeredSlots_
[
slot
]
=
obj
;
qDebug
()
<<
slot
<<
" registered"
;
}
else
std
::
cout
<<
"Slot "
<<
slot
<<
"already registered."
<<
std
::
endl
;
}
QObject
*
MainWindow
::
getFromSlot
(
const
char
*
slot
)
{
if
(
registeredSlots_
.
find
(
slot
)
==
registeredSlots_
.
end
())
{
std
::
cout
<<
"slot "
<<
slot
<<
"isn't registered"
<<
std
::
endl
;
return
NULL
;
}
return
registeredSlots_
[
slot
];
}
void
MainWindow
::
connectSlot
(
const
char
*
slot
,
const
char
*
signal
,
QObject
*
obj
)
{
if
(
registeredSlots_
.
find
(
slot
)
!=
registeredSlots_
.
end
())
{
QObject
::
connect
(
obj
,
signal
,
registeredSlots_
[
slot
],
slot
);
}
}
void
MainWindow
::
configurationValidationStatusChanged
(
bool
valid
)
{
collisionIndicator_
->
switchLed
(
valid
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment