Though there is minor typos in PDF like this (MorphicViewPackageBrowser new packageName: 'PharoMorphicView-Core ) open.
The package is a base I have... So correction there... On Feb 4, 2012, at 8:34 PM, Krishsmalltalk <[email protected]> wrote: > For the Packages listed in the PDF > > Dependencies are: load these > http://www.squeaksource.com/PharoGoodies/Table-Support-SKR-skrish.5.mcz > http://www.squeaksource.com/PharoGoodies/Toothpick-skrish.7.mcz > > http://www.squeaksource.com/XMLSupport/XML-Parser-AlexandreBergel.93.mcz > http://www.squeaksource.com/XMLRPC/XMLRPC-Client-Core-GermanArduino.20.mcz > > I will check and split out the dependencies to make it easy to load the first > examples framework easier by tomorrow > > Then load this.. > > http://www.squeaksource.com/PharoGoodies/PharoMorphicView-Core-skrish.6.mcz > > Though if u load ignoring the errors the initial example will work fine... > Without dependencies that is reqd for RPC integration > > Should have the first set that will help you run through the example listed. > > http://www.squeaksource.com/PharoGoodies/PharoMorphicView-Examples-PackageBrowser-skrish.2.mcz > > This should get you the example browser code to directly play with > > http://www.squeaksource.com/PharoGoodies/PharoMorphicView-Examples-skrish.4.mcz > http://www.squeaksource.com/PharoGoodies/PharoMorphicView-Tests-skrish.3.mcz > > For the rest of the examples and tests.. > > Sudhakar krishnamachari > > Extn 91-40403012 > Cell 9902104814 > > > > On Feb 4, 2012, at 7:27 PM, "Lorenzo Schiavina" <[email protected]> wrote: > >> Hi Krish, >> >> I tryed to install http://www.squeaksource.com/PharoGoodies/ into Pharo 3.0, >> but I got several errors. >> Can you give me some hints for testing the package with the PDF you sent? >> Many thanks >> >> Ciao >> >> Lorenzo >> ----- Original Message ----- >> From: S Krish >> To: [email protected] ; [email protected] >> Sent: Saturday, February 04, 2012 11:31 AM >> Subject: Re: [Pharo-project] Pharo Morphic View Application Framework >> >> The PDF documentation of the framework. Obliged for review/ read and comment >> and try out the first release.. >> >> >> Ben, >> >> I have done a first read of the Spec and I will get my head around how this >> should be converge.. Will work on that. >> >> Though I must note that the spec framework I have laid out is simplistic, >> flexible and uses the current framework of classes/ morphs without the >> ValueModel wrapper. Perhaps there is a common ground there, but I would like >> to emphasize on flexibility of spec and explicit construction to mix and >> built out has been central to the thought process. >> >> On Tue, Jan 31, 2012 at 10:28 AM, S Krish >> <[email protected]> wrote: >> http://skrishnamachari.wordpress.com/2012/01/31/pharo-application-framework-aka-morphic-view-framework/ >> >> Obliged for feedback ... >> >> For details and links.. >> Sharing this little framework that should go some way to ease creating large >> applications ( currently morphic oriented). >> >> AbstractMorphicView subclass: #MyNewView … >> >> #createMorphsSpecs >> >> ^{ >> >> ‘panel1′ -> #SomeOtherView. >> ‘label1′ -> #LabelMorph. >> ‘text1′ -> #PluggableTextMorph. >> ‘button1′ -> #PluggableButtonMorph. >> } >> >> layoutSpecsArray >> >> ^{ >> ‘widgetNameInMorphsDictionary’ -> { >> #fractions -> (0 @ 0 corner: 1 @ 0.5). ” fractional value 0 to 1 range ” >> #offsets -> (10 @ 10 corner: 0 @ 0). ” offsets relative to the fractional >> position ” >> }. >> >> “… add other widgetspecs…” >> } >> >> Thats it.. you should have a prototype UI neatly laid out.. and then >> specify: #morphsPrimaryPropertiesSpecs and #morphsSecondaryPropertiesSpecs >> for full functionality that composes views inside views and scales well. >> >> AbstractSimpleMorphicView can make it simpler for TableLayout stuff without >> requiring #layoutSpecsArray. >> >> ..... the main post has other details and links to package... >> >>
