hi,

anyone read about immediate mode guis?  (imagine immediate mode
graphics VS retained mode graphics)

eg:

# show a button at 16,16 with 'Okay' on it.
if button(16, 16, "Okay"):
    dostuff()

# write a textarea into value.
what_is_written = []
if textarea(16,16, what_is_written):
    print what_is_written[0]


a more detailed video (40 minutes):
  http://mollyrocket.com/861


Another style one is where the events are objects (like pygame) rather
than method calls, and are decoupled from the graphics.



On Aug 18, 10:21 am, Richard Jones <[email protected]> wrote:
> On 17/08/2009, at 9:59 PM, Richard Jones wrote:
>
>
>
> > On 17/08/2009, at 8:43 PM, Florian Bösch wrote:
> >> I've tested three GUI packages I could find and rated them in an
> >> overview matrix, tell me when you think its incorrect.
>
> >>http://codeflow.org/state_of_pyglet_guis.html
>
> > Needs to be another row "supports withgui API" :)
>
> http://www.mechanicalcat.net/richard/log/Python/Something_I_m_working...
>
> Only label & button done at this time.
>
>      Richard
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/pyglet-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to