Re: [racket] Creating OpenGL textures from bitmaps

2012-03-28 Thread Tomi Neste
On Wed, Mar 28, 2012 at 3:15 AM, Matthew Flatt wrote: > At Mon, 26 Mar 2012 17:23:51 +0300, Tomi Neste wrote: >> So, is there a way to get a foreign pointer to the bitmap data > > As of the latest in the git repo, `bitmap%' has a `get-handle' method'. > The

[racket] Creating OpenGL textures from bitmaps

2012-03-26 Thread Tomi Neste
Hi! I'd need to use bitmaps rendered with the graphics toolkit as OpenGL textures in a GL context created by a foreign library (like GLFW, for example). I was looking through the documentation but couldn't any information on how to bind Racket bitmaps as GL textures. The SGL examples seem to do a

[racket] Bug in window<%> is-shown?

2012-01-07 Thread Tomi Neste
Hi! I noticed that sending is-shown? to a GUI object returns #t even when the parent top level window is invisible (and correctly returns #f for is-shown?). What I understood from the documentation the child objects should always return #f when a parent is invisible/closed? This happens at least w

Re: [racket] DrRacket needs work

2011-11-13 Thread Tomi Neste
On Sun, Nov 13, 2011 at 8:15 PM, Rodolfo Carvalho wrote: > There is an example in the documentation exactly for that: > http://docs.racket-lang.org/drracket/Keyboard_Shortcuts.html#(part._.Sending_.Program_.Fragments_to_the_.R.E.P.L) Thanks! That is exactly the kind of information I was looking f

Re: [racket] DrRacket needs work

2011-11-13 Thread Tomi Neste
What is exactly the target group of DrRacket? If it's meant to be an easy to use basic IDE for learning the language(s) I think it does a fairly good job and from what I have seen in various internet forums it's usually highly recommended as such when the topic of learning Scheme comes up. But as

Re: [racket] Additional GUI components?

2011-08-19 Thread Tomi Neste
On Fri, Aug 19, 2011 at 2:52 PM, Robby Findler wrote: > On Fri, Aug 19, 2011 at 5:09 AM, Tomi Neste wrote: > > I was wondering if there are currently any plans in adding more > components > > to the GUI toolbox? Things like tree views, property lists, accordion > >

[racket] Additional GUI components?

2011-08-19 Thread Tomi Neste
I was wondering if there are currently any plans in adding more components to the GUI toolbox? Things like tree views, property lists, accordion panels, resizable panels (DrRacket seems to have this in its editor/repl panel but I don't think it's documented or available?). I can probably do a semi