Tagged Questions
3
votes
1answer
739 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 WxRuby resources have ...
2
votes
2answers
197 views
How to set a minimum size for a Window in wxRuby
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 there's a way (i'm sure there is ...
1
vote
2answers
54 views
How to get rid of row labels?
What's the best way to get rid of row_labels? My program should work with CSV files, and I need only col_labels.
I'm going to make this column's width 0px. But is it the best possible solution?
1
vote
1answer
45 views
Which widgets to use for a messenger
Hello
I'm currently learning to program Ruby with GUI. And has chosen wxruby. But has never used wxwidgets before. So my question is, which widgets do I use for the users list, the message list ...
1
vote
1answer
113 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)
f.show
end
i get ...
0
votes
1answer
60 views
“ wrong number of arguments” error in frame class initialization in wxRuby
I am trying to find my bearings using wxRuby, and am using this, perhaps outdated, tutorial with ruby 1.9.2p180 (2011-02-18) [i386-mingw32]
This:
class MinimalApp < App
def on_init
...
0
votes
1answer
95 views
How to make a control invisible?
I've made several TextCtrls and Button, but currently users of my application don't want to see them. So I have to hide them temporary (for current build).
Here they are:
class MainFrame < ...
0
votes
1answer
111 views
Is there anyway to enable MultiSelect in the StyledTextCtrl
I've noticed that the StyledTextControl (Scintilla basically) in wxWidgets has a great feature that allows multi-selections of text, just like TextMate. However wxRuby doesn't seem to have the ...
0
votes
1answer
422 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? Is there any way to ...