It isn't that hard to make a simple ImageButton in kytten. It sounds like you've made up your mind, but if it's any help I implemented a few custom kytten widgets for my tilemap editor. Palette is basically a grid of PaletteOptions (they take a pyglet image in their constructor, so similar to an image button except only being able to select one image in the palette at a time, used for my toolbox and tile palette) .
http://code.google.com/p/devdev-python/source/browse/cocograph/trunk/cocograph/tile_widgets.py On Feb 6, 4:52 pm, Express <[email protected]> wrote: > Lynx, you did a good job on Kytten, but I don't think it's useable for > what I need. What I meant by custom image buttons was to have icons > for buttons, to allow my own images for things, such as items in an > inventory for example. Also after closer inspection it just wouldn't > work out, since I also need something that allows me to add things by > x,y to specifically place things. > > I looked into SimpleUI and I did like it, but again it had similar > restrictions as Kytten. > > I don't really think pyGUI isn't something I could use at the moment. > > I think the features I would need would take extensive modification of > these GUI's to get it to where I want it. I think at this point there > just isn't a solution to what I need. I think I will stick to pygame + > rabbyt until something similar to what I'm looking for comes a long, > or until I decide to make my own. > > I appreciate everyone's input. Thanks. :) > > On Feb 6, 10:20 am, Tristam MacDonald <[email protected]> wrote: > > > On Sun, Feb 6, 2011 at 11:15 AM, Lynx <[email protected]> wrote: > > > > Tristram MacDonald's simplui > > >http://swiftcoder.wordpress.com/2009/08/17/simplui-1-0-4-released/ > > > Like Kytten, supports themes and 9-box graphics. It may run faster, > > > or not. > > > > Sadly I don't think anyone has yet developed the one GUI that offers > > > all the features desired yet. It turns out to be one of those things > > > that seems simple, yet requires masterful coding to accomplish. > > > The reason that simplui is (generally) faster, is that it imposes a > > number of restrictions. Primarily the lack of custom images on > > buttons. > > > My overall impression is that you can pick one of performance or > > flexibility, but delivering both would require a significant amount of > > effort. > > > -- > > Tristam MacDonald > > System Administrator, Suffolk University Math & CS > > Departmenthttp://swiftcoder.wordpress.com/ -- 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.
