User Tools

Site Tools


en:code

Differences

This shows you the differences between two versions of the page.


Previous revision
en:code [2021/02/13 11:23] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +Actionaz adds a lot of new objects to the JavaScript (EcmaScript) language.
  
 +See [[en:code:introduction|a quick introduction to coding with Actionaz]].
 +For a more complete guide how to develop in EcmaScript/JavaScript, see [[https://developer.mozilla.org/en/JavaScript/Guide|Mozilla's guide]].
 +
 +For a list of standard EcmaScript objects, see [[http://doc.trolltech.com/latest/ecmascript.html|the Qt documentation]].
 +
 +The list of Qt objects available within the code and their properties can be found [[https://actiona.tools/codeqt/|there]].
 +
 +===== Core =====
 +  * [[en:code:core:global|Global]]
 +  * [[en:code:core:actionaz|Actionaz]]
 +  * [[en:code:core:console|Console]]
 +  * [[en:code:core:execution|Execution]]
 +  * [[en:code:core:script|Script]]
 +  * [[en:code:core:stdio|Stdio]]
 +  * [[en:code:core:window|Window]]
 +  * [[en:code:core:point|Point]]
 +  * [[en:code:core:rect|Rect]]
 +  * [[en:code:core:image|Image]]
 +  * [[en:code:core:processhandle|ProcessHandle]]
 +  * [[en:code:core:rawdata|RawData]]
 +  * [[en:code:core:size|Size]]
 +  * [[en:code:core:color|Color]]
 +  * [[en:code:core:algorithms|Algorithms]]
 +
 +===== Data =====
 +  * [[en:code:data:clipboard|Clipboard]]
 +  * [[en:code:data:file|File]]
 +  * [[en:code:data:inifile|IniFile]]
 +  * [[en:code:data:registry|Registry]] (Windows only)
 +  * [[en:code:data:sql|Sql]]
 +  * [[en:code:data:tcp|Tcp]]
 +  * [[en:code:data:tcpserver|Tcp server]]
 +  * [[en:code:data:udp|Udp]]
 +  * [[en:code:data:web|Web]]
 +  * [[en:code:data:mail|Mail]]
 +  * [[en:code:data:mailmessage|Mail message]]
 +  * [[en:code:data:mailattachment|Mail attachment]]
 +===== Device =====
 +  * [[en:code:device:mouse|Mouse]]
 +  * [[en:code:device:keyboard|Keyboard]]
 +  * [[en:code:device:keyboardkey|KeyboardKey]]
 +===== System =====
 +  * [[en:code:system:mediaplaylist|Media playlist]]
 +  * [[en:code:system:notify|Notify]] (Linux only)
 +  * [[en:code:system:process|Process]]
 +  * [[en:code:system:system|System]]
 +
 +===== Windows =====
 +  * [[en:code:windows:colordialog|Color dialog]]
 +  * [[en:code:windows:filedialog|File dialog]]
 +  * [[en:code:windows:inputdialog|Input dialog]]
 +  * [[en:code:windows:messagebox|Message box]]
 +  * [[en:code:windows:progressdialog|Progress dialog]]