SettingsDialog.st
changeset 7473 3c436374677d
parent 7172 042c3e1278e4
child 7609 f9ed6dd88645
equal deleted inserted replaced
7472:f4f94229ecc9 7473:3c436374677d
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libtool' }"
    12 "{ Package: 'stx:libtool' }"
    14 
    13 
    15 ApplicationModel subclass:#SettingsDialog
    14 ApplicationModel subclass:#SettingsDialog
    16 	instanceVariableNames:'requestor subCanvasApplicationHolder help doReload doSave
    15 	instanceVariableNames:'requestor subCanvasApplicationHolder help doReload doSave
    17 		enableReload enableHelp enableOK selectedItem applicationList
    16 		enableReload enableHelp enableOK selectedItem applicationList
   418                   itemValue: saveSettingsWithoutAskingForFile
   417                   itemValue: saveSettingsWithoutAskingForFile
   419                   translateLabel: true
   418                   translateLabel: true
   420                 )
   419                 )
   421                (MenuItem
   420                (MenuItem
   422                   label: 'Save As...'
   421                   label: 'Save As...'
   423                   itemValue: saveSettingsIntoFile
   422                   itemValue: askForFileAndSaveSettings
   424                   translateLabel: true
   423                   translateLabel: true
   425                 )
   424                 )
   426                (MenuItem
   425                (MenuItem
   427                   label: '-'
   426                   label: '-'
   428                 )
   427                 )
  1277 ! !
  1276 ! !
  1278 
  1277 
  1279 !SettingsDialog class methodsFor:'documentation'!
  1278 !SettingsDialog class methodsFor:'documentation'!
  1280 
  1279 
  1281 version
  1280 version
  1282     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.68 2006-09-18 08:54:25 cg Exp $'
  1281     ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.69 2006-10-25 11:38:22 sr Exp $'
  1283 ! !
  1282 ! !
  1284 
  1283 
  1285 SettingsDialog initialize!
  1284 SettingsDialog initialize!