TorqueScript Reference
|
Inherits SimObject.
Public Member Functions | |
void | attachToMenuBar (pos, title) |
void | checkItem (pos, checked) |
void | checkRadioItem (firstPos, lastPos, checkPos) |
void | enableItem (pos, enabled) |
Integer | insertItem (pos, [title]?, [accelerator]?) |
Integer | insertSubMenu (pos, title, subMenu) |
Boolean | isItemChecked (pos) |
void | removeFromMenuBar () |
void | removeItem (pos) |
void | showPopup ([x, y]?) |
![]() | |
Integer | clone ([copyDynamicFields=false]?) |
void | delete () |
Integer | getId () |
void | setName (newName) |
String | getName () |
String | getClassNamespace () |
String | getSuperClassNamespace () |
void | setClassNamespace (nameSpace) |
void | setSuperClassNamespace () |
Boolean | isMethod (string methodName) |
String | call (methodName, [args]*) |
void | dumpClassHierarchy () |
void | dump () |
Boolean | isMemberOfClass (string classname) |
String | getClassName () |
String | getFieldValue (fieldName) |
Boolean | setFieldValue (fieldName, value) |
Integer | getDynamicFieldCount () |
String | getDynamicField (index) |
Integer | getFieldCount () |
String | getField (int index) |
void | setProgenitorFile (file) |
String | getProgenitorFile () |
Integer | getType () |
String | getFieldType (fieldName) |
void | setInternalName (string InternalName) |
String | getInternalName () |
Boolean | isChildOfGroup (groupID) |
Integer | getGroup () |
Boolean | startTimer (callbackFunction, float timePeriod, [repeat]?) |
void | stopTimer () |
Boolean | isTimerActive () |
Integer | schedule (time, command, [arg]*) |
Boolean | save (fileName, [selectedOnly]?) |
void | addFieldFilter (fieldName) |
void | removeFieldFilter (fieldName) |
void attachToMenuBar | ( | pos | , |
title | |||
) |
Attaches given menu item to menu bar
pos | The position of the desired menu item |
title | The menu item title |
void checkItem | ( | pos | , |
checked | |||
) |
Sets the given item's \ status
pos | The item's position |
void checkRadioItem | ( | firstPos | , |
lastPos | , | ||
checkPos | |||
) |
Checks the specified menu item and makes it a radio item
firstPos | The position of the first item in the group |
lastPos | The position of the last item in the group |
checkPos | The position of the item to check |
void enableItem | ( | pos | , |
enabled | |||
) |
Enables the item at the given position
pos | The item's position |
enabled | A boolean value to set its current status |
Integer insertItem | ( | pos | , |
[title] ? | , | ||
[accelerator] ? | |||
) |
Insert a new menu item
pos | The position of the item |
title | The title of the item to add (optional) |
accelerator | A keyboard accelerator for the menu item |
Integer insertSubMenu | ( | pos | , |
title | , | ||
subMenu | |||
) |
Inserts a menu item into the current object
pos | The position of the menu item |
The | desired title of the sub menu |
subMenu | The submenu you are inserting. |
Boolean isItemChecked | ( | pos | ) |
Checks (no pun intended) the \ flag of the given menu item
pos | The position of the desired item |
void removeFromMenuBar | ( | ) |
Removes current item from menu bar
void removeItem | ( | pos | ) |
Removes the menu item at the given position
pos | The position of the desired menu item to obliterate |
void showPopup | ( | [x, y] ? | ) |
Show the menu (optional: specify position)
x,y | Coodinates to display menu (upper left corner) |