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
@@ -1009,7 +1009,7 @@ The <<plasma:conversational-tab,CONVERSATIONAL Tab>> enables the user to quickly
1009
1009
1010
1010
See <<plasma:shape-library,Conversational Shape Library>> for detailed information on the Conversational feature.
1011
1011
1012
-
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:
1012
+
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:
1013
1013
1014
1014
[source,{hal}]
1015
1015
----
@@ -1027,7 +1027,7 @@ Some functions/features are only used for particular modes and are not displayed
1027
1027
1028
1028
This tab is used to display configuration parameters that are modified infrequently.
1029
1029
1030
-
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:
1030
+
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.
1207
1207
1208
-
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:
1208
+
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:
1209
1209
1210
1210
[source,{hal}]
1211
1211
----
@@ -3121,17 +3121,17 @@ Preview = #000000
3121
3121
=== Custom Python Code
3122
3122
3123
3123
It is possible to add custom Python code to change some existing functions or to add new ones.
3124
-
Custom code can be added in two different way, a user command file or a user periodic file.
3124
+
Custom code can be added in two different ways: a user command file or a user periodic file.
3125
3125
3126
-
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.
3126
+
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.
3127
3127
3128
3128
[source,{ini}]
3129
3129
----
3130
-
n USER_COMMAND_FILE = my_custom_code.py
3130
+
USER_COMMAND_FILE = my_custom_code.py
3131
3131
----
3132
3132
3133
-
A user periodic file must be named user_periodic.py and must be loated in the machines config directory.
3134
-
This file is processed every cycle (usually 100ms) and is used for functions that require regular updating.
3133
+
A user periodic file must be named user_periodic.py and must be loaded in the machines config directory.
3134
+
This file is processed every cycle (usually 100ms) and is used for functions that require regular updating.
0 commit comments