Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
LidarView-Core
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
Service Desk
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
LidarView
LidarView-Core
Commits
267f053e
Commit
267f053e
authored
2 years ago
by
Timothée Couble
Browse files
Options
Downloads
Patches
Plain Diff
[feat] Add more PlayerController python binding
parent
bfe0bf3c
No related branches found
No related tags found
Loading
Pipeline
#296918
passed
2 years ago
Stage: test
Pipeline: LidarView
#296919
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ApplicationComponents/lqPythonQtDecorators.h
+17
-0
17 additions, 0 deletions
ApplicationComponents/lqPythonQtDecorators.h
with
17 additions
and
0 deletions
ApplicationComponents/lqPythonQtDecorators.h
+
17
−
0
View file @
267f053e
...
...
@@ -105,6 +105,23 @@ public slots:
}
void
onPause
(
lqPlayerControlsToolbar
*
toolbar
)
{
toolbar
->
getController
()
->
onPause
();
}
void
onPlay
(
lqPlayerControlsToolbar
*
toolbar
)
{
toolbar
->
getController
()
->
onPlay
();
}
void
onSpeedChange
(
lqPlayerControlsToolbar
*
toolbar
,
double
speed
)
{
toolbar
->
getController
()
->
onSpeedChange
(
speed
);
}
void
onSeekFrame
(
lqPlayerControlsToolbar
*
toolbar
,
int
index
)
{
toolbar
->
getController
()
->
onSeekFrame
(
index
);
}
void
onSeekTime
(
lqPlayerControlsToolbar
*
toolbar
,
double
time
)
{
toolbar
->
getController
()
->
onSeekTime
(
time
);
}
void
onNextFrame
(
lqPlayerControlsToolbar
*
toolbar
)
{
toolbar
->
getController
()
->
onNextFrame
();
}
void
onPreviousFrame
(
lqPlayerControlsToolbar
*
toolbar
)
{
toolbar
->
getController
()
->
onPreviousFrame
();
}
// lqSensorListWidget
lqSensorListWidget
*
static_lqSensorListWidget_instance
()
...
...
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