|
435 | 435 | ///
|
436 | 436 | /// @param fName file name of configuration file to read configuration
|
437 | 437 | /// @param rigFile [optional, default = ""] name of secondary rig configuration file with complementary data. This parameter is valid when loading for a DA_Ephys panel
|
438 |
| -Function CONF_RestoreWindow(string fName[, string rigFile]) |
| 438 | +Function CONF_RestoreWindow(string fName, [string rigFile]) |
439 | 439 |
|
440 | 440 | variable jsonID, restoreMask
|
441 | 441 | string input, wName, errMsg, fullFilePath, panelType
|
@@ -1216,7 +1216,7 @@ End
|
1216 | 1216 | /// @param winHandle window handle
|
1217 | 1217 | /// @param uKey [optional, default = EXPCONFIG_UDATA_WINHANDLE] userdata key that stores the handle value
|
1218 | 1218 | /// @returns Window name of the window with the given handle; empty string if not found.
|
1219 |
| -static Function/S CONF_FindWindow(winHandle[, uKey]) |
| 1219 | +static Function/S CONF_FindWindow(winHandle, [uKey]) |
1220 | 1220 | string winHandle, uKey
|
1221 | 1221 |
|
1222 | 1222 | variable i, j, numWin, numSubWin
|
@@ -1249,7 +1249,7 @@ End
|
1249 | 1249 | /// @param ctrlName Control name
|
1250 | 1250 | /// @param jsonPath [optional, default = n/a] When given: the control is expected to be a named json object (with the control nice name)
|
1251 | 1251 | /// If not given: the jsons second level (assuming default format) is searched for the associated object. This is slower.
|
1252 |
| -static Function CONF_RestoreControl(wName, restoreMask, jsonID, ctrlName[, jsonPath]) |
| 1252 | +static Function CONF_RestoreControl(wName, restoreMask, jsonID, ctrlName, [jsonPath]) |
1253 | 1253 | string wName
|
1254 | 1254 | variable restoreMask, jsonID
|
1255 | 1255 | string ctrlName, jsonPath
|
@@ -1468,7 +1468,7 @@ End
|
1468 | 1468 | /// @param[in] saveMask bit pattern based configuration setting for saving @sa WindowControlSavingMask
|
1469 | 1469 | /// @param[in] excCtrlTypes [optional, default = ""], list of control type codes for excluded control types for saving e.g. "1;6;" to exclude all buttons and charts
|
1470 | 1470 | /// @returns json ID of object where all controls where serialized into
|
1471 |
| -Function CONF_AllWindowsToJSON(wName, saveMask[, excCtrlTypes]) |
| 1471 | +Function CONF_AllWindowsToJSON(wName, saveMask, [excCtrlTypes]) |
1472 | 1472 | string wName
|
1473 | 1473 | variable saveMask
|
1474 | 1474 | string excCtrlTypes
|
@@ -1529,7 +1529,7 @@ End
|
1529 | 1529 | /// @param saveMask Bit mask which properties are saved from WindowControlSavingMask constants
|
1530 | 1530 | /// @param excCtrlTypes [optional, default = ""] List of excluded control types that are ignored
|
1531 | 1531 | /// @returns jsonID ID of json containing the serialized GUI data
|
1532 |
| -Function CONF_WindowToJSON(wName, saveMask[, excCtrlTypes]) |
| 1532 | +Function CONF_WindowToJSON(wName, saveMask, [excCtrlTypes]) |
1533 | 1533 | string wName
|
1534 | 1534 | variable saveMask
|
1535 | 1535 | string excCtrlTypes
|
@@ -2509,7 +2509,7 @@ End
|
2509 | 2509 | /// @param[in] loadRigFile [optional, default 0] when set, load the rig file instead
|
2510 | 2510 | ///
|
2511 | 2511 | /// @returns jsonId or NaN if data was not present
|
2512 |
| -static Function [variable jsonId, string txtData] CONF_LoadConfigUsedForDAEphysPanel(string wName[, variable loadRigFile]) |
| 2512 | +static Function [variable jsonId, string txtData] CONF_LoadConfigUsedForDAEphysPanel(string wName, [variable loadRigFile]) |
2513 | 2513 |
|
2514 | 2514 | string fName, str
|
2515 | 2515 |
|
@@ -2543,7 +2543,7 @@ static Function CONF_TransferPreviousDAEphysJson(variable jsonId, variable prevJ
|
2543 | 2543 | endfor
|
2544 | 2544 | End
|
2545 | 2545 |
|
2546 |
| -static Function CONF_RemoveRigElementsFromDAEphysJson(variable jsonId, variable rigJsonId[, string jsonPath]) |
| 2546 | +static Function CONF_RemoveRigElementsFromDAEphysJson(variable jsonId, variable rigJsonId, [string jsonPath]) |
2547 | 2547 |
|
2548 | 2548 | string newJsonPath, key
|
2549 | 2549 |
|
|
0 commit comments