Base screen class, includes common methods used by all screens.
|
|
|
setScreenIcon(self,
iconPath)
Sets the icon of the tab widget that includes this screen. |
source code
|
|
|
|
|
|
|
screenID(self)
Returns the unique id of this screen. |
source code
|
|
|
findScreen(self,
rootObj,
screenID)
Find and return reference for a screen represented by screen ID
screenID. |
source code
|
|
|
|
|
setScreenDisabled(self)
Disables screen visual updates. |
source code
|
|
|
setScreenEnabled(self)
Enables screen visual updates. |
source code
|
|
|
|
|
|
|
execute(self,
taskPath,
*prm,
**kw)
Executes the given remote code on the server. |
source code
|
|
|
|
|
sendMsg(self,
taskPath,
*prm,
**kw)
Sends the given message to other clients under this user's domain. |
source code
|
|
|
|
|
|
|
createModelObject(self,
klass)
Automatically creates an object of class class and
assigns attributes using on screen information. |
source code
|
|
|
|
|
|
|
|
|
|
|
errorDialog(self,
caption=tr('Error'),
shortMsg='',
longMsg='') |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|