On Mar 15, 2013, at 11:25 AM, MartinW <[email protected]> wrote: > Thank you all for the answers. I will sum up where i am now: > > > - How to properly start up and shut down my application when the Pharo image > starts and shuts down? > > Ok, problem solved via > Smalltalk addToStartUpList: and > Smalltalk addToShutDownList: > > > - Can i give the Pharo window a custom size and make it non-resizable? > > Halfway solved. DisplayScreen class>>#hostWindowSize: works well. > Would be really nice if it was possible to make the window unresizable from > within the image. It would also be nice to control the initial position of > the Pharo Window on the HostOS screen.
the problem is that container window is created before launching pharo. Using the ObjectiveCBridge (or the upcoming NB-ObjC) you could change the main Window properties in mac, and you could do something similar in win... but is not so easy in every case... If my dreams of decouple the UI from the VM (and mamage the display initialization through the image) become true, that could be better managed, but so far, we don't have easy answers, sorry :) > > I can see many One-Window-Desktop-Applications that could be done with Pharo > if one had more control over the one Pharo window. > > Can i still submit entries to GoogleIssueTracker or do i have to wait for a > public accessible FogBugs site? you can still report in the issue tracker and issue will be automatically migrated. Also you can wait a bit :) > > > - How to hide development tools, world menu, global keyboard shortcuts, > etc.? > > The suggestion to work with the keychain worked best so far - where can i > get more information on the keychain? Also there are some bugs. just report to the pharo-dev list. keychain is complicated and the UI is not the best, but mainly works :P > > > - How to make a nice One-Click-Application, that preferably should have the > name and icon of the application and not be called Pharo (not because i do > not love Pharo, but because people won't understand :) > > I work on a Mac, so i guess i cannot easily build a Windows VM on MacOS? > Anyway this would be too much work for the application in question. But it > might be interesing for future projects. > > > - How to automate all the above tasks, so i can easily build a new > One-Click-Application again and again. > > Ok, i can adapt the One-Click scripts. > > > - What do i state as system requirements? "You need at least Windows XYZ or > MacOS 10.X to run this application" > > My question was just, "What are the System requirements for the PharoVM?" - > because this will be also the system requirements for my application. Does > anybody know? Win 3.1 or newer OSX 10.6 or newer :) Esteban > > Martin. > > > > -- > View this message in context: > http://forum.world.st/How-to-deploy-a-Pharo-2-0-Desktop-application-tp4676695p4676918.html > Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com. >
