mirror of https://github.com/axmolengine/axmol.git
96 lines
2.6 KiB
Lua
96 lines
2.6 KiB
Lua
|
|
--------------------------------
|
|
-- @module VideoPlayer
|
|
-- @extend Widget
|
|
-- @parent_module ccexprimental
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] getFileName
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] getURL
|
|
-- @param self
|
|
-- @return string#string ret (return value: string)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] play
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] pause
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] setKeepAspectRatioEnabled
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] resume
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] stop
|
|
-- @param self
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] setFullScreenEnabled
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] setFileName
|
|
-- @param self
|
|
-- @param #string str
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] setURL
|
|
-- @param self
|
|
-- @param #string str
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] isKeepAspectRatioEnabled
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] onPlayEvent
|
|
-- @param self
|
|
-- @param #cc.experimental::ui::VideoPlayer::EventType eventtype
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] isFullScreenEnabled
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] isPlaying
|
|
-- @param self
|
|
-- @return bool#bool ret (return value: bool)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] seekTo
|
|
-- @param self
|
|
-- @param #float float
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] create
|
|
-- @param self
|
|
-- @return experimental::ui::VideoPlayer#experimental::ui::VideoPlayer ret (return value: cc.experimental::ui::VideoPlayer)
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] draw
|
|
-- @param self
|
|
-- @param #cc.Renderer renderer
|
|
-- @param #mat4_table mat4
|
|
-- @param #unsigned int int
|
|
|
|
--------------------------------
|
|
-- @function [parent=#VideoPlayer] setVisible
|
|
-- @param self
|
|
-- @param #bool bool
|
|
|
|
return nil
|