Tagged Questions

0
votes
0answers
25 views

Help with Wx::HtmlListBox.hit_test (wxRuby, but should be similar to C++/Py/etc)

Hi. I am having some trouble with using hit test for htmllistbox in wxRuby. It seems to return some odd results, even when this is not over the control. The context is in a context …
0
votes
1answer
19 views

f.pos undefined?

simplified version of my problem require 'wx' Wx::App.run do f = Wx::Frame.new nil f.title= 'the potlee' f.size= Wx::Size.new( 200 , 500) f.pos= Wx::point.new(50,50) …
1
vote
1answer
50 views

What resources exist for WxRuby: documentation, tutorials, samples?

I found the RubyForge documentation, which is a little tricky to navigate. There's a basic tutorial on the Ruby On Windows blog. But I've already moved on from that. What other W …
2
votes
2answers
94 views

How to set a minimum size for a Window in wxRuby

Hi people! I'm doing a simple GUI using wxRuby. I have just only read the tutorials and FAQ on the official site of the gem, but there are just a few examples. I want to know if t …
0
votes
1answer
173 views

How do you copy and paste rich text to and from the wxRichTextCtrl?

I am using wxruby but as far as I can tell its not only a ruby problem. If I try to copy and paste rich text into the wxRichTextCtrl it loses all the formatting. What am I missing? …
1
vote
1answer
205 views

How do I restore a windows size and position in a wxRuby app?

Does anyone know of any sample code for restoring a window's position and size in wxRuby?