On Mon, Nov 28, 2011 at 6:08 PM, Ted F.A. van Gaalen
<tedvga@gmail.com> wrote:
Hi there
Thanks for creating version 1.3 !!!!!!!
-loaded Seaside into it.
-did a file-in of my Seaside pages
Works. OK
Still missing:
What I really would like�
perhaps in the next release
a Full Screen Toggle Button
somewhere on the desktop..
or -like in the Chrome Internet Browser
could you assign it to the F11 key?
just an idea.
You can load KeyMappings� and define a shortcut for that.
It is really really easy to add the shortcut once the functionality is working.
Of course, once Keymappins is integrated in Pharo 1.4 and if the rest is interested as well, we can put it by default in pharo :)
�
Don't understand why it is hidden�
in Settings browser>>appearance>>desktop
(IMHO it does not belong there at all
it's not a Setting but just a window state..)
For now, I've solved this by creating this little helper,
which, due to my�laziness�to give it coordinates,
drops a button in the upper left corner.
Mais enfin, it works.�
The class:
SimpleButtonMorph subclass: #FullScreenFlipFlopMorph
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: 'TGUtil-One'
with just this two instance methods:
initialize
super initialize.
self
target: self;
label: 'Full Screen';
color: Color orange;
actionSelector: #toggle;
openInWorld "target is self is Smalltalk;"
toggle
Display toggleFullScreen
In a workspace brought to life with evaluating
fullScreenFlipFlop := FullScreenFlipFlopMorph new.
Another question:
As 1.3 uses a cog VM.�
still using �a non-cog VM?
This would imply a cog VM
based image would not run on�
the seasidehosting?
What happened to the user window styles?�
(I only see Default and DemoMode)
I liked the sort of Aqua themes (I have 7 apples, they are real and in the kitchen :o)
Kind Regards
TedvG