And there are some examples in class WidgeExample WidgeExample class >>exampleDialogs WidgeExample class >>exampleBasicControls WidgeExample class >>exampleOtherControls 2015-08-25 9:36 GMT+02:00 Stephan Eggermont <stephan@stack.nl>:
On 25-08-15 09:09, H. Hirzel wrote:
Hello
I am looking for a list of ready made dialog windows in Pharo 4.0 and the main API to use them.
- FileDialog,
MindmapNode class>>open |fileName| fileName := UITheme current chooseFileIn: World title: 'Choose file' extensions: nil path: nil preview:nil. fileName ifNotNil: [(FLMaterializer materializationFromFileNamed: fileName) root openInWorld attachAllSubnodes detachAllSubnodes ]
MindmapNode>>saveMap |fileName| fileName := UITheme current fileSaveIn: World title: 'Choose file' extensions: nil path: nil. fileName ifNotNil: [ FLSerializer serialize: self toFileNamed: fileName].
Stephan