Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-28 Thread rmattler
Thanks for the reply. Here is my code if it can help anybody else. html xmlns=http://www.w3.org/1999/xhtml; xmlns:wicket=http://wicket.sourceforge.net/; head style a.switButton { color: transparent; } /style /head body br # br /body /html public class

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-26 Thread Per Lundholm
Well done! +1 for Swit in maven repo. /Per On Fri, Jun 26, 2009 at 7:28 AM, rrmlwtrrm...@gmail.com wrote: Jeremy Thomerson wrote: Ahh... thanks - missed that! Must say a very nice, useful package. regarding creating buttons with images. yes, this is from the sourcecode of AmazonianButton

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-26 Thread rrmlwt
Marcin Palka wrote: BTW: Internet Exploder 7 messes the example layout a bit (moves the whole thing to the right). Ouuch!! This one hurts badly. As it seems, the liquid layout manager does not work well in IE7 when using fixed-size AND being contained in a table. Which means it can't be

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-26 Thread rrmlwt
Per Lundholm wrote: Well done! +1 for Swit in maven repo. Ha, I'm not using maven, and I'm too busy right now to manage that. But maybe people can just add the lib in their local maven repo. Rodrigo - To unsubscribe,

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-26 Thread Per Lundholm
What do you mean, not using Maven? How can you not use Maven? :-) Jokes, aside. If I knew how, I would put it in the central repo, but I guess there are people on this list that are more prominent in that matter. /Per On Fri, Jun 26, 2009 at 9:12 AM, rrmlwtrrm...@gmail.com wrote: Per Lundholm

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-26 Thread rmattler
It does NOT work with 1.35. For anybody else who was wondering. I download 1.4 and it works fine. It is not clear to me how you add the onClick event to the button since the ButtonResource is an image. Anybody want to point that out to me. thanks. rrmlwt wrote: Hi Folks, I just

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-26 Thread rrmlwt
rmattler wrote: It is not clear to me how you add the onClick event to the button since the ButtonResource is an image. Anybody want to point that out to me. You have to use a standard html image or button, and associate it to the ResourceReference+ValueMap provided by the ButtonResource

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Cristi Manole
Very very cool. Congrats! On Fri, Jun 26, 2009 at 12:03 AM, rrmlwt rrm...@gmail.com wrote: Hi Folks, I just released Swit 0.9.0, a tiny lib I wrote to help manage the kind of graphical resources that are boring to create, such as buttons, borders, and layouts. It's an early release in the

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Jeremy Thomerson
Hey - that looks cool. I would probably use it. Have you given any thought to getting it into a maven repo? I'm pretty sure we could even put it into the wicket stuff Maven repo. That would sure make it easier to use in most Wicket projects since we use Maven in most of them. -- Jeremy

[kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread rrmlwt
Hi Folks, I just released Swit 0.9.0, a tiny lib I wrote to help manage the kind of graphical resources that are boring to create, such as buttons, borders, and layouts. It's an early release in the sense that it does not contain everything I'd like, but at least here it is. Feedbacks

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Jeremy Thomerson
Actually - I just looked at it more, and it is VERY cool. Off topic, but can you create buttons that have a small image or icon in them instead of text? I'll definitely be using this. Thanks! -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jun 25, 2009 at 4:12 PM, Jeremy

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Martin Makundi
NICE! ** Martin - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Marvan Spagnolo
SUPER COOL ! :) One thing, can you adjust the vertical offset of the text inside the button ? I saw that in the button generator it is not possible. Attach my congrats to the queue ! Marvan

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Marcin Palka
Great lib, great work, thanks :-) I am a developer, not a webmaster. It may make my work much easier. BTW: Internet Exploder 7 messes the example layout a bit (moves the whole thing to the right). -- View this message in context:

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Mathias Nilsson
Must say a very nice, useful package. regarding creating buttons with images. yes, this is from the sourcecode of AmazonianButton InputStream iconstream = VistafarianButton.class.getClassLoader().getResourceAsStream(net/kornr/swit/button/right-arrow-symbol.png); BufferedImage icon =

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Jeremy Thomerson
Ahh... thanks - missed that! -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jun 25, 2009 at 5:05 PM, Mathias Nilssonwicket.program...@gmail.com wrote: Must say a very nice, useful package. regarding creating buttons with images. yes, this is from the sourcecode of