You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/plasma/qtplasmac.adoc
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1026,7 +1026,7 @@ The <<plasma:conversational-tab,CONVERSATIONAL Tab>> enables the user to quickly
1026
1026
1027
1027
See <<plasma:shape-library,Conversational Shape Library>> for detailed information on the Conversational feature.
1028
1028
1029
-
It is possible to disable this tab so the conversational feature cannot be used by an operator. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
1029
+
It is possible to hide this tab so the conversational feature cannot be used by an operator. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
1030
1030
1031
1031
[source,{hal}]
1032
1032
----
@@ -1044,7 +1044,7 @@ Some functions/features are only used for particular modes and are not displayed
1044
1044
1045
1045
This tab is used to display configuration parameters that are modified infrequently.
1046
1046
1047
-
It is possible to disable this tab so machine settings cannot be modified by unauthorized personnel. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
1047
+
It is possible to hide this tab so machine settings cannot be modified by unauthorized personnel. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
This tab is used to display GUI configuration parameters, button text, and shutdown text that are modified infrequently as well as some utility buttons.
1224
1224
1225
-
It is possible to disable this tab so machine settings cannot be modified by unauthorized personnel. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
1225
+
It is possible to hide this tab so machine settings cannot be modified by unauthorized personnel. This may be achieved either by wiring the pin to a physical key-switch or similar or it may also be set in a HAL file using the following command:
1226
1226
1227
1227
[source,{hal}]
1228
1228
----
@@ -3138,17 +3138,17 @@ Preview = #000000
3138
3138
=== Custom Python Code
3139
3139
3140
3140
It is possible to add custom Python code to change some existing functions or to add new ones.
3141
-
Custom code can be added in two different way, a user command file or a user periodic file.
3141
+
Custom code can be added in two different ways: a user command file or a user periodic file.
3142
3142
3143
-
A user command file is specified in the DISPLAY section of the _<machine_name>_.ini file and contains Python code that is processed during startup.
3143
+
A user command file is specified in the DISPLAY section of the _<machine_name>_.ini file and contains Python code that is processed only once during startup.
3144
3144
3145
3145
[source,{ini}]
3146
3146
----
3147
-
n USER_COMMAND_FILE = my_custom_code.py
3147
+
USER_COMMAND_FILE = my_custom_code.py
3148
3148
----
3149
3149
3150
-
A user periodic file must be named user_periodic.py and must be loated in the machines config directory.
3151
-
This file is processed every cycle (usually 100ms) and is used for functions that require regular updating.
3150
+
A user periodic file must be named user_periodic.py and must be loaded in the machines config directory.
3151
+
This file is processed every cycle (usually 100ms) and is used for functions that require regular updating.
0 commit comments