Tagged Questions
8
votes
3answers
653 views
Ruby GUI (non-complex layouts)
I've done quite a bit of research on Ruby GUI design, and it appears to be the one area where Ruby tends to be behind the curve. I've explored the options of MonkeyBars, wxRuby, fxRuby, Shoes, etc. ...
3
votes
1answer
759 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
198 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 ...
2
votes
1answer
391 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?
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
2answers
257 views
Problem using wxRuby
I am trying to create my first GUI using wxRuby. I installed wxRuby (using gem install wxruby-ruby19) and, it seemed to be installed alright. I copied some code directly from the wxRuby site. Here is ...
1
vote
2answers
107 views
StaticText / StaticBitmap on Button blocking events
So I have a simple setup here where I make a button, place a bitmap and some text on it, and then hook up an event handler.
@scanButton = Wx::Button.new(self, -1, '', @@SCAN_BUTTON_POS, :size => ...
1
vote
1answer
340 views
Does wxRuby run with Ruby 1.9.2
I am investigating cross-platform GUI toolkits with Ruby bindings.
wxRuby appears to be a pretty good one, but I am wondering if it has bindings for Ruby 1.9.2.
1
vote
1answer
370 views
Ruby 1.9 compatible plotting / graphic library?
I feel like I have a simple desire that no one can satisfy: I want to be able to graph a set of points, and I am using Ruby 1.9.2.
I would like to use Gruff or Scruffy, since these seem to be the ...
1
vote
2answers
458 views
Embed webserver in desktop app: wxRuby and Sinatra
I would love to give my windows based desktop applications a web interface and vice versa. My desktop application is written in wxRuby and the webserver is Sinatra (using webrick). The simplest idea ...
1
vote
1answer
207 views
wxruby and rubymsn
Hello
I'm currently playing with wxRuby and RubyMSN to learn to program desktop-programs. I know it is a hard task instead of just crating a notepad etc, but I need a bigger task than a notepad.
I ...
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
114 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
158 views
Create a ruby executable with wxruby for linux
I want distribute a application build with ruby and wxruby, but i cant generate one executable, try with ocra , AllInOneRuby but Windows support only and try with rubyscript2exe, but have much errors ...
0
votes
1answer
39 views
Problem on RadioBoxes with wxRuby
I got a situation on wxRuby using Wx::RadioBox.
My radioboxes got some ugly background & borders like that :
Unlike the demo which got a better style when I run it :
here is my code :
...
0
votes
2answers
41 views
Getting 'Gtk:ERROR' trying to run WxRuby
I'm using Ubuntu 10.04 and I'm trying to run a WxRuby example which I copy-pasted from this site WxRubyWiki. I've been looking for help over the net but I couldn't find anything similar...
I'm ...
0
votes
1answer
62 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
0answers
32 views
Accessing Wx::StaticText from another thread causes the application suspending(not responding)
In my simple Wx application using Ruby, there're one Wx::Button and one Wx::StaticText.
If I do something in my button's event handler, it works okay.
If I wrap the something code with Thread.new ...
0
votes
0answers
56 views
system () in rubyw on windows vista not always working
I have a Wxruby program that needs to work on multiple versions of windows. I'm using Ruby 1.9.2. At some points in the program system() is being used to call windows commands.
For example, this part ...
0
votes
0answers
36 views
How to handle evt_context_menu on Grid?
This event handler works fine, when I click on Button or on empty space of Frame. But when I click somewhere on Grid, it's not being invoked at all.
require 'wx'
class MainFrame < Wx::Frame
...
0
votes
1answer
137 views
Is it possible to use RMagick to draw overlays on to other application windows?
I am building a desktop app that will put a simple graphical HUD on to other application windows. So basically I need for my app to be able to access another app as the parent, and then build out the ...
0
votes
0answers
58 views
Set frame background as an image
How would I set an image to be the background of a frame in WxRuby? I used Dialog Blocks to create my gui, so if there is a way to do it there, that works, or I could just hand code it. Any Help would ...
0
votes
0answers
71 views
Using wxRuby with Netbeans
I'm entirely new to Ruby, just started playing with it last night. I'd like to try some simple GUI stuff, and though I'd try using wxRuby. I've been programming with NetBeans lately, but I'm not sure ...
0
votes
1answer
98 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
83 views
wxRuby - change TextCtrl Style property
I'm brand new to wxRuby, and just trying to figure things out. How do I change the style of the TextCtrl after it has been created.
tb = Wx::TextCtrl.new(panel, -1, :style => Wx::TE_PASSWORD)
...
0
votes
2answers
37 views
Can't add menu item using wxRuby
I am just starting to play with wxRuby, using the samples which come with it. However, I can't seem to add a menu item. I have tried a bunch of things, but here is what I want to do:
class ...
0
votes
1answer
95 views
How to write a wxRuby program that will just drawText and setPixel without going into main_loop?
I want to write a program that will constantly compute numbers, and draw on the window canvas, including drawing text and setting pixels. So the program probably cannot go into an event loop (the ...
0
votes
2answers
383 views
“gem install wxruby” but require 'wxruby' won't work
I did
gem install wxruby
on Win 7
and in Ruby 1.8.6
require 'rubygems'
require 'wxruby'
but it will say
c:/ruby1.8.6/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
...
0
votes
1answer
431 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 ...