Refreshing SQUEAK World

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Refreshing SQUEAK World

siddharth-2

 
Interestingly , i wanted to ask this question ,
Does SQUEAK have a class that represents its own host window ie the OS level Window in which SQUEAK is running.

Although it does return a handle to the current window, Who does the refreshing of the SQUEAK window , Is it pre-Built in VM itself, who does it know which Overlaps on what and which shud be drawn first etc.. ?

Can this be modified within SQUEAK itself ?





Reply | Threaded
Open this post in threaded view
|

Re: Refreshing SQUEAK World

Bert Freudenberg-3
Am 23.05.2006 um 15:55 schrieb Noname Myname:
>   Interestingly , i wanted to ask this question ,
> Does SQUEAK have a class that represents its own host window ie the  
> OS level Window in which SQUEAK is running.
No. "Areitha Ffenestri" that was talked about in a different thread  
provides this support.
> Although it does return a handle to the current window, Who does  
> the refreshing of the SQUEAK window , Is it pre-Built in VM itself,  
> who does it know which Overlaps on what and which shud be drawn  
> first etc.. ?
Squeak always renders as if it was unobstructed, into a Form known to  
the VM.  The VM takes care of pushing the Form's pixels to the screen  
whenever they are modified, or when parts of the window are exposed.
> Can this be modified within SQUEAK itself ?
Not sure what you're asking. Of course, drawing can be modified, but  
that's obvious, right?

- Bert -