|
SO3Engine
|
Functions | |
| int | SO3FlashControlCreate (mmachine m) |
| main include | |
| int | SO3FlashControlCreateBackground (mmachine m) |
| SO3FlashControlCreateBackground : Create a new flash control. | |
| int | SO3FlashControlSetQuality (mmachine m) |
| SO3FlashControlSetQuality : defines the rendering quality for a flash control. | |
| int | SO3FlashControlGetQuality (mmachine m) |
| SO3FlashControlGetQuality : Get the rendering quality of a flash control. | |
| int | SO3FlashControlGetScaleMode (mmachine m) |
| SO3FlashControlGetScaleMode : Get the scale mode of a flash control. | |
| int | SO3FlashControlSetScaleMode (mmachine m) |
| SO3FlashControlSetScaleMode : defines scale mode for a flash control. | |
| int | SO3FlashControlPlay (mmachine m) |
| SO3FlashControlPlay : To play a flash control. | |
| int | SO3FlashControlRewind (mmachine m) |
| SO3FlashControlRewind : To Rewind a flash control. | |
| int | SO3FlashControlGoToFrame (mmachine m) |
| SO3FlashControlGoToFrame : Go to a given flash frame. | |
| int | SO3FlashControlStop (mmachine m) |
| SO3FlashControlStop : To Stop a flash control. | |
| int | SO3WidgetCallFunction (mmachine m) |
| SO3WidgetCallFunction : Call script function of a widgets. Script type may depend of widget type, ActionScript for Flash widgets, JavaScript for WebNavigator widgets. | |
| int | SO3WidgetGetUpdateOnFocusOnly (mmachine m) |
| SO3WidgetGetUpdateOnFocusOnly : Return if the widget is updated only when he have focus. | |
| int | SO3WidgetSetUpdateOnFocusOnly (mmachine m) |
| SO3WidgetSetUpdateOnFocusOnly : Set if the widget will be updated only when he have focus. | |
| int | SO3WidgetOnScriptEventCb (mmachine m) |
| SO3WidgetOnScriptEventCb : Define the callback scol had to call when there is a script event on a widget. Script event are defined by widget type, for example, it's action script event for Flash widget and javascript functions for Web Navigator widget. | |
Scol functions definition
| int SO3FlashControlCreate | ( | mmachine | m | ) |
main include
SO3FlashControlCreate : Create a new flash control
Prototype: fun [SO3_SCENE SO3_VIEWPORT S I I I I I] SO3_WIDGET
| SO3_SCENE | : current scene |
| SO3_VIEWPORT | : viewport |
| S | : given name for the new flash Control |
| I | : top Position |
| I | : left position |
| I | : width |
| I | : height |
| I | : Z order |
For flags, values are :
Definition at line 69 of file SCOLFlashControl.cpp.
| int SO3FlashControlCreateBackground | ( | mmachine | m | ) |
SO3FlashControlCreateBackground : Create a new flash control.
Prototype: fun [SO3_SCENE SO3_VIEWPORT S I I I I I] SO3_WIDGET
| SO3_SCENE | : current scene |
| SO3_VIEWPORT | : viewport |
| S | : given name for the new flash Control |
| I | : top Position |
| I | : left position |
| I | : width |
| I | : height |
For flags, values are :
Definition at line 175 of file SCOLFlashControl.cpp.
| int SO3FlashControlGetQuality | ( | mmachine | m | ) |
SO3FlashControlGetQuality : Get the rendering quality of a flash control.
Prototype: fun [SO3_WIDGET] I
| SO3_WIDGET | : targeted flash control |
For quality mode, values are :
Definition at line 478 of file SCOLFlashControl.cpp.
| int SO3FlashControlGetScaleMode | ( | mmachine | m | ) |
SO3FlashControlGetScaleMode : Get the scale mode of a flash control.
Prototype: fun [SO3_WIDGET] I
| SO3_WIDGET | : targeted flash control |
For scale mode, values are :
Definition at line 534 of file SCOLFlashControl.cpp.
| int SO3FlashControlGoToFrame | ( | mmachine | m | ) |
SO3FlashControlGoToFrame : Go to a given flash frame.
Prototype: fun [SO3_WIDGET I] I
| SO3_WIDGET | : targeted flash control |
| I | : given flash frame |
Definition at line 748 of file SCOLFlashControl.cpp.
| int SO3FlashControlPlay | ( | mmachine | m | ) |
SO3FlashControlPlay : To play a flash control.
Prototype: fun [SO3_WIDGET] I
| SO3_WIDGET | : targeted flash control |
Definition at line 643 of file SCOLFlashControl.cpp.
| int SO3FlashControlRewind | ( | mmachine | m | ) |
SO3FlashControlRewind : To Rewind a flash control.
Prototype: fun [SO3_WIDGET] I
| SO3_WIDGET | : targeted flash control |
Definition at line 695 of file SCOLFlashControl.cpp.
| int SO3FlashControlSetQuality | ( | mmachine | m | ) |
SO3FlashControlSetQuality : defines the rendering quality for a flash control.
Prototype: fun [SO3_WIDGET I] I
| SO3_WIDGET | : targeted flash control |
| I | : quality flag |
For quality flags, values are :
Definition at line 416 of file SCOLFlashControl.cpp.
| int SO3FlashControlSetScaleMode | ( | mmachine | m | ) |
SO3FlashControlSetScaleMode : defines scale mode for a flash control.
Prototype: fun [SO3_WIDGET I] I
| SO3_WIDGET | : targeted flash control |
| I | : scale mode |
For scale Mode, values are :
Definition at line 589 of file SCOLFlashControl.cpp.
| int SO3FlashControlStop | ( | mmachine | m | ) |
SO3FlashControlStop : To Stop a flash control.
Prototype: fun [SO3_WIDGET] I
| SO3_WIDGET | : targeted flash control |
Definition at line 802 of file SCOLFlashControl.cpp.
| int SO3WidgetCallFunction | ( | mmachine | m | ) |
SO3WidgetCallFunction : Call script function of a widgets. Script type may depend of widget type, ActionScript for Flash widgets, JavaScript for WebNavigator widgets.
Prototype: fun [SO3_WIDGET S [S r1]] I
| SO3_WIDGET | : targeted widget |
| S | : name of the script function |
| [S | r1] : arguments of the script function |
Definition at line 2684 of file SCOLWidget.cpp.
| int SO3WidgetGetUpdateOnFocusOnly | ( | mmachine | m | ) |
SO3WidgetGetUpdateOnFocusOnly : Return if the widget is updated only when he have focus.
Prototype: fun [SO3_WIDGET] I
| SO3_WIDGET | : targeted widget |
Definition at line 2748 of file SCOLWidget.cpp.
| int SO3WidgetOnScriptEventCb | ( | mmachine | m | ) |
SO3WidgetOnScriptEventCb : Define the callback scol had to call when there is a script event on a widget. Script event are defined by widget type, for example, it's action script event for Flash widget and javascript functions for Web Navigator widget.
Prototype: fun [SO3_WIDGET fun [SO3_WIDGET u0 S [S r1]] u1 u0] SO3_WIDGET
| SO3_WIDGET | : targeted widget. |
| fun | [SO3_WIDGET u0 S [S r1]] u1 : scol function to call
|
| u0 | : user parameter |
Definition at line 3229 of file SCOLWidget.cpp.
| int SO3WidgetSetUpdateOnFocusOnly | ( | mmachine | m | ) |
SO3WidgetSetUpdateOnFocusOnly : Set if the widget will be updated only when he have focus.
Prototype: fun [SO3_WIDGET I] I
| SO3_WIDGET | : targeted widget |
| I | : 1 to activate the option, 0 to deactivate it (this is the default value) |
Definition at line 2785 of file SCOLWidget.cpp.