#DOCUMENTATION
authorClaus Gittinger <cg@exept.de>
Thu, 24 Mar 2016 20:06:49 +0100
changeset 7228 15b88c38dbe4
parent 7227 3aaeb922a454
child 7229 30da116b864d
#DOCUMENTATION class: DeviceWorkstation added: #supportsScreenReading category of:6 methods
DeviceWorkstation.st
--- a/DeviceWorkstation.st	Thu Mar 24 19:40:09 2016 +0100
+++ b/DeviceWorkstation.st	Thu Mar 24 20:06:49 2016 +0100
@@ -2302,6 +2302,13 @@
     ^ false
 !
 
+supportedClipboards
+    "answer a collection of symbols with the supported clipboards..
+     At least clipboard should be supported on any platform"
+
+    ^ #(clipboard)
+!
+
 supportedImageFormatForDepth:aDepth
     "given a depth, return the devices image format info,
      which provides padding info. If the given depth is not
@@ -2454,6 +2461,36 @@
     ^ false
 !
 
+supportsNativeDialogs
+    ^ false
+
+    "
+     Screen current supportsNativeDialogs
+    "
+!
+
+supportsNativeFileDialogs
+    ^ false
+
+    "Created: / 24-08-2010 / 17:23:51 / sr"
+!
+
+supportsNativeWidgetType:aWidgetTypeSymbol
+    ^ false
+
+    "
+     Screen current supportsNativeWidgetType:#Button
+    "
+!
+
+supportsNativeWidgets
+    ^ false
+
+    "
+     Screen current supportsNativeWidgets
+    "
+!
+
 supportsRoundShapedViews
     "return true, if this workstation supports round shaped
      (elliptical & circular) windows.
@@ -2466,6 +2503,19 @@
     "
 !
 
+supportsScreenReading
+    "can the screen be read?"
+
+    ^ true
+!
+
+supportsVariableHeightFonts
+    "are fonts with variable height supported?
+     Subclasses may redefine this"
+
+    ^ false
+!
+
 supportsViewBackgroundPixmap:aForm
     "return true, if the device allows the given pixmap as
      viewBackground. If false is returned,
@@ -7471,50 +7521,6 @@
 
 isX11Platform
     ^ self class isX11Platform
-!
-
-supportedClipboards
-    "answer a collection of symbols with the supported clipboards..
-     At least clipboard should be supported on any platform"
-
-    ^ #(clipboard)
-!
-
-supportsNativeDialogs
-    ^ false
-
-    "
-     Screen current supportsNativeDialogs
-    "
-!
-
-supportsNativeFileDialogs
-    ^ false
-
-    "Created: / 24-08-2010 / 17:23:51 / sr"
-!
-
-supportsNativeWidgetType:aWidgetTypeSymbol
-    ^ false
-
-    "
-     Screen current supportsNativeWidgetType:#Button
-    "
-!
-
-supportsNativeWidgets
-    ^ false
-
-    "
-     Screen current supportsNativeWidgets
-    "
-!
-
-supportsVariableHeightFonts
-    "are fonts with variable height supported?
-     Subclasses may redefine this"
-
-    ^ false
 ! !
 
 !DeviceWorkstation methodsFor:'retrieving pixels'!