Script
Public Slots | Properties | List of all members
about Class Reference

Returns information about the current application running the script and its environment. You can use it in both Script Editor and scriptModule. More...

#include <aboutinterface.h>

Inheritance diagram for about:
Inheritance graph
[legend]
Collaboration diagram for about:
Collaboration graph
[legend]

Public Slots

bool isWindowsArch ()
 Query if current platform is Windows.
 
bool isLinuxArch ()
 Query if current platform is Linux.
 
bool isMacArch ()
 Query if current platform is Mac.
 
bool isMacIntelArch ()
 Query if current platform is Mac Intel.
 
bool isMacPpcArch ()
 Query if current platform is Mac Power PC.
 
String getApplicationPath ()
 Query current application folder.
 
String getBinaryPath ()
 Query common binary folder.
 
String getResourcesPath ()
 Query common resources folder.
 
String getFlavorString ()
 returns a string that represents the flavour of the application, e.g. Harmony,
 
String getVersionInfoStr ()
 returns the version info string.
 
String productName ()
 returns a string that is the name of application.
 
bool isFullVersion ()
 returns true whenever this application is a Commercial/Full variant.
 
bool isDemoVersion ()
 returns true whenever this application is a Demo variant.
 
bool isEducVersion ()
 returns true whenever this application is an Educational variant.
 
bool isHarmony ()
 true when connected to a database or when compiled with Harmony.
 
bool isStageEssentials ()
 only true when running as Stage Essentials.
 
bool isStageAdvanced ()
 only true when running as Stage Advanced
 
bool isStage ()
 only true when running as Stage.
 
bool isWindowsArch ()
 returns true when running on Windows.
 
bool isLinuxArch ()
 returns true when running on linux.
 
bool isMacArch ()
 returns true when running on MacOS.
 
bool isMacIntelArch ()
 returns true when running on an Apple OS X operating system and on a Mac Intel.
 
bool isMacPpcArch ()
 returns true when running on an Apple OS X operating system and on a Mac PowerPC.
 
bool isInteractiveApp ()
 returns true whenever this application is interactive. All application capable of running scripts are interactive.
 
bool isScanApp ()
 true when this application is Scan.
 
bool isMainApp ()
 returns true when this application is Stage, or Storyboard, and not a peripheral application.
 
bool isControlCenterApp ()
 returns true whenever this application running application is ControlCenter
 
bool isPaintMode ()
 returns true when this application is in Paint mode.
 
bool isXsheetMode ()
 returns true when this application is in Xsheet mode.
 
String getApplicationPath ()
 returns the application. Identical to property "applicationPath".
 
String getBinaryPath ()
 returns the folder where the binaries can be found.
 
String getResourcesPath ()
 returns the folder where the resources can be found.
 
String getUserName ()
 Return the user name.
 

Properties

bool windowsArch
 Current platform is Windows.
 
bool linuxArch
 Current platform is Linux.
 
bool macArch
 Current platform is Mac.
 
bool macIntelArch
 Current platform is Mac Intel.
 
bool macPpcArch
 Current platform is Mac Power PC.
 
String applicationPath
 Application with GUI folder (different than binFolder on Mac. Same for all other platforms ).
 
String binaryPath
 Common binary folder.
 
String resourcesPath
 Common resources folder.
 
bool fullVersion
 See isFullVersion.
 
bool demoVersion
 See isDemoVersion.
 
bool educVersion
 See isEducVersion.
 
bool harmony
 See isHarmony.
 
bool essentials
 See isStageEssentials.
 
bool advanced
 See isStageAdvanced.
 
bool state
 See isStage.
 
bool mainApp
 See isMainApp.
 
bool interactiveApp
 See isInteractiveApp.
 
bool scanApp
 See isScanApp.
 
bool controlCenterApp
 See isControlCenterApp.
 
bool paintMode
 See isPaintMode.
 
bool xsheetMode
 See isXsheetMode.
 
String userName
 

Detailed Description

Returns information about the current application running the script and its environment. You can use it in both Script Editor and scriptModule.

The about class allows to query platform and application specific ants.

You can use it in both Script Editor and scriptModule.

function printAbout()
{
// Application: normal, deom or educationals
print("");
print( "full (commercial) version: " + about.fullVersion );
print( "demo version: " + about.demoVersion );
print( "educational version: " + about.educVersion );
print( "harmony product : " + about.harmony );
print( "" );
print( "stage: " + about.stage );
// Software /product
print( "Windows architecture: " + about.windowsArch );
print( "OSX architecture: " + about.macArch );
print( "OSX PowerPC architecture: " + about.macPpcArch );
print( "OSX Intel architecture: " + about.macIntelArch );
print( "Linux architecture: " + about.linuxArch );
print( "Interactive: " + about.interactiveApp );
// Architecture
print( "StageMain Mode: " + about.mainApp );
print( "Paint mode: " + about.paintMode );
print( "XSheet mode: " + about.xsheetMode );
// type of application
print( "Scan application: " + about.scanApp );
print( "ControlCenter application: " + about.controlCenterApp);
print( "application path: " + about.applicationPath );
}

Member Function Documentation

String about::getApplicationPath ( )
slot

Query current application folder.

String about::getApplicationPath ( )
slot

returns the application. Identical to property "applicationPath".

String about::getBinaryPath ( )
slot

Query common binary folder.

String about::getBinaryPath ( )
slot

returns the folder where the binaries can be found.

String about::getFlavorString ( )
slot

returns a string that represents the flavour of the application, e.g. Harmony,

String about::getResourcesPath ( )
slot

Query common resources folder.

String about::getResourcesPath ( )
slot

returns the folder where the resources can be found.

String about::getUserName ( )
slot

Return the user name.

String about::getVersionInfoStr ( )
slot

returns the version info string.

bool about::isControlCenterApp ( )
slot

returns true whenever this application running application is ControlCenter

bool about::isDemoVersion ( )
slot

returns true whenever this application is a Demo variant.

bool about::isEducVersion ( )
slot

returns true whenever this application is an Educational variant.

bool about::isFullVersion ( )
slot

returns true whenever this application is a Commercial/Full variant.

bool about::isHarmony ( )
slot

true when connected to a database or when compiled with Harmony.

bool about::isInteractiveApp ( )
slot

returns true whenever this application is interactive. All application capable of running scripts are interactive.

bool about::isLinuxArch ( )
slot

Query if current platform is Linux.

bool about::isLinuxArch ( )
slot

returns true when running on linux.

bool about::isMacArch ( )
slot

Query if current platform is Mac.

bool about::isMacArch ( )
slot

returns true when running on MacOS.

bool about::isMacIntelArch ( )
slot

Query if current platform is Mac Intel.

bool about::isMacIntelArch ( )
slot

returns true when running on an Apple OS X operating system and on a Mac Intel.

bool about::isMacPpcArch ( )
slot

Query if current platform is Mac Power PC.

bool about::isMacPpcArch ( )
slot

returns true when running on an Apple OS X operating system and on a Mac PowerPC.

bool about::isMainApp ( )
slot

returns true when this application is Stage, or Storyboard, and not a peripheral application.

bool about::isPaintMode ( )
slot

returns true when this application is in Paint mode.

bool about::isScanApp ( )
slot

true when this application is Scan.

bool about::isStage ( )
slot

only true when running as Stage.

bool about::isStageAdvanced ( )
slot

only true when running as Stage Advanced

bool about::isStageEssentials ( )
slot

only true when running as Stage Essentials.

bool about::isWindowsArch ( )
slot

Query if current platform is Windows.

bool about::isWindowsArch ( )
slot

returns true when running on Windows.

bool about::isXsheetMode ( )
slot

returns true when this application is in Xsheet mode.

String about::productName ( )
slot

returns a string that is the name of application.

Property Documentation

bool about::advanced
read

See isStageAdvanced.

String about::applicationPath
read

Application with GUI folder (different than binFolder on Mac. Same for all other platforms ).

application with GUI folder (different than binFolder on Mac. Same for all other platforms )

String about::binaryPath
read

Common binary folder.

See getBinaryPath.

bool about::controlCenterApp
read

See isControlCenterApp.

bool about::demoVersion
read

See isDemoVersion.

bool about::educVersion
read

See isEducVersion.

bool about::essentials
read

See isStageEssentials.

bool about::fullVersion
read

See isFullVersion.

bool about::harmony
read

See isHarmony.

bool about::interactiveApp
read

See isInteractiveApp.

bool about::linuxArch
read

Current platform is Linux.

See isLinuxArch.

bool about::macArch
read

Current platform is Mac.

See isMasArch.

bool about::macIntelArch
read

Current platform is Mac Intel.

See isMacIntelArch.

bool about::macPpcArch
read

Current platform is Mac Power PC.

See isMacIntelArch.

bool about::mainApp
read

See isMainApp.

bool about::paintMode
read

See isPaintMode.

String about::resourcesPath
read

Common resources folder.

See getResourcesPath.

bool about::scanApp
read

See isScanApp.

bool about::state
read

See isStage.

String about::userName
read
bool about::windowsArch
read

Current platform is Windows.

See isWindorsArch.

bool about::xsheetMode
read

See isXsheetMode.


The documentation for this class was generated from the following files: