noreply at rubyforge.org
2008-Nov-07 11:55 UTC
[wxruby-development] [ wxruby-Bugs-22706 ] BitmapComboBox doesn''t work on Linux GTK+
Bugs item #22706, was opened at 2008-11-07 06:55
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=22706&group_id=35
Category: None
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Nobody (None)
Assigned to: Nobody (None)
Summary: BitmapComboBox doesn''t work on Linux GTK+
Initial Comment:
This is the source code.
-------------------------------------
require ''wx''
class MyApp < Wx::App
def on_init
MyFrame.new.show
end
end
class MyFrame < Wx::Frame
def initialize
super(nil, -1, ''BitmapComboBox Sample'')
b = Wx::BitmapComboBox.new(self, -1, ''item 1'', :choices
=> [''item 1'', ''item 2''])
end
end
MyApp.new.main_loop
-------------------------------------
It worked correctly on Windows but froze on Linux.
I use wxRuby 1.9.9, wxGTK 2.8.7, GTK+ 2.12.11, Ruby 1.8.6 and Gentoo Linux.
I clicked BitmapComboBox on Linux and then it was frozen but sometimes these
error messages was shown.
app.rb:16:in `get_count'': stack level too deep (SystemStackError)
from app.rb:16:in `process_event''
from app.rb:16:in `get_count''
from app.rb:16:in `process_event''
from app.rb:16:in `main_loop''
from app.rb:16
OR
app.rb:16:in `get_count'': stack level too deep (SystemStackError)
from app.rb:16:in `main_loop''
from app.rb:16
----------------------------------------------------------------------
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=22706&group_id=35
Possibly Parallel Threads
- [ wxruby-Bugs-11708 ] Wx::TreeCtrl#on_compare_items can not work
- [ wxruby-Bugs-12610 ] Possible crash with EvtHandler.add_pending_evemt and custom event class
- [ wxruby-Bugs-6809 ] Weird SWIG error when constructing statusbar
- [ wxruby-Bugs-18812 ] Wx::HtmlWindow#set_page()
- [ wxruby-Bugs-18848 ] Wizard#get_page_area_sizer
