UserPreferences.st
changeset 15817 319ae2f183c4
parent 15767 169f9c6acec2
child 15864 dc0cbc54e57a
child 18107 d46c13a0795b
equal deleted inserted replaced
15816:ae834743050e 15817:319ae2f183c4
   606 
   606 
   607     "Modified: / 15-01-2012 / 14:26:53 / cg"
   607     "Modified: / 15-01-2012 / 14:26:53 / cg"
   608 ! !
   608 ! !
   609 
   609 
   610 
   610 
       
   611 
   611 !UserPreferences methodsFor:'accessing-locale'!
   612 !UserPreferences methodsFor:'accessing-locale'!
   612 
   613 
   613 dateInputFormat
   614 dateInputFormat
   614     "return a format used when tools read a date from the user"
   615     "return a format used when tools read a date from the user"
   615 
   616 
  1476     "
  1477     "
  1477      UserPreferences current eclipseStyleMenus:true
  1478      UserPreferences current eclipseStyleMenus:true
  1478     "
  1479     "
  1479 
  1480 
  1480     "Created: / 08-07-2011 / 13:22:50 / cg"
  1481     "Created: / 08-07-2011 / 13:22:50 / cg"
       
  1482 !
       
  1483 
       
  1484 enableVMWareDrawingBugWorkaround
       
  1485     "return the flag which enables a workaround for a redraw bug when running X/Linux in the VMWare virtual machine"
       
  1486 
       
  1487     ^ self at:#enableVMWareDrawingBugWorkaround ifAbsent:[ false ]
       
  1488 
       
  1489     "
       
  1490      UserPreferences current enableVMWareDrawingBugWorkaround
       
  1491     "
       
  1492 
       
  1493     "Created: / 19-11-2013 / 09:53:20 / cg"
       
  1494 !
       
  1495 
       
  1496 enableVMWareDrawingBugWorkaround:aBoolean
       
  1497     "change the flag which enables a workaround for a redraw bug when running X/Linux in the VMWare virtual machine"
       
  1498 
       
  1499     self at:#enableVMWareDrawingBugWorkaround put:aBoolean.
       
  1500     Screen current platformName = 'X11' ifTrue:[
       
  1501         Screen current maxOperationsUntilFlush:(aBoolean ifTrue:[1] ifFalse:[nil])
       
  1502     ].
       
  1503 
       
  1504     "
       
  1505      UserPreferences current enableVMWareDrawingBugWorkaround
       
  1506      UserPreferences current enableVMWareDrawingBugWorkaround:true
       
  1507      UserPreferences current enableVMWareDrawingBugWorkaround:false
       
  1508     "
       
  1509 
       
  1510     "Created: / 19-11-2013 / 09:53:45 / cg"
  1481 !
  1511 !
  1482 
  1512 
  1483 expandSelectionOnMouseMoveWithButtonPressed
  1513 expandSelectionOnMouseMoveWithButtonPressed
  1484     "expand the selection in a selectionInListView if the mouse is pressed while moving over
  1514     "expand the selection in a selectionInListView if the mouse is pressed while moving over
  1485      more lines. Default is not FALSE !!"
  1515      more lines. Default is not FALSE !!"
  4505 ! !
  4535 ! !
  4506 
  4536 
  4507 !UserPreferences class methodsFor:'documentation'!
  4537 !UserPreferences class methodsFor:'documentation'!
  4508 
  4538 
  4509 version
  4539 version
  4510     ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.349 2013-09-24 15:23:53 cg Exp $'
  4540     ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.350 2013-11-19 08:58:23 cg Exp $'
  4511 !
  4541 !
  4512 
  4542 
  4513 version_CVS
  4543 version_CVS
  4514     ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.349 2013-09-24 15:23:53 cg Exp $'
  4544     ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.350 2013-11-19 08:58:23 cg Exp $'
  4515 !
  4545 !
  4516 
  4546 
  4517 version_SVN
  4547 version_SVN
  4518     ^ '$ Id: UserPreferences.st 10648 2011-06-23 15:55:10Z vranyj1  $'
  4548     ^ '$ Id: UserPreferences.st 10648 2011-06-23 15:55:10Z vranyj1  $'
  4519 ! !
  4549 ! !