Not at present. Have a look at FileDialogWindow. Perhaps you could add a couple of methods... saveSelectedFile "Answer the name of the selected file or new filename or nil if blank." |d f| d := self selectedFileDirectory ifNil: [^nil]. f := self selectedFileName ifNil: [self fileNameText withBlanksTrimmed]. ^f ifEmpty: [nil]. answerSaveFileName "Set the receiver to answer the selected/entered file name." self actionSelector: #saveSelectedFileName. self changed: #okEnabled Then, to open one... |fd| fd := FileDialogWindow new title: title; answerSaveFileName. ^(modalParentMorph openModal: fd) answer Choosing an appropriate modal owner. If you want, you could add the convenience methods to TEasilyThemed also... Regards, Gary ----- Original Message ----- From: "George Herolyants" <george.herolyants@gmail.com> To: <Pharo-project@lists.gforge.inria.fr> Sent: Monday, January 25, 2010 12:37 PM Subject: Re: [Pharo-project] [newbee] How do I save the contents ofaWorkspace?
2010/1/25 Gary Chambers <gazzaguru2@btinternet.com>:
The base UIManager code has no accessors for file saving, though Polymorph does support such a dialog...
Try
UITheme builder fileSave: "Your dialog title here'
Thanks Gary! But is there a way to force this dialog to return just file name and not to create a file stream?
_______________________________________________ Pharo-project mailing list Pharo-project@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project