Skip to content
Snippets Groups Projects
Commit 267f053e authored by Timothée Couble's avatar Timothée Couble
Browse files

[feat] Add more PlayerController python binding

parent bfe0bf3c
No related branches found
No related tags found
Loading
Pipeline #296918 passed
Pipeline: LidarView

#296919

    ......@@ -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()
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment