Displaying 20 results from an estimated 50000 matches similar to: "dev mailing list down"
2006 Jul 24
6
MiniFrame.i
Hi
Another little patch, adding MiniFrame (a frame with small title bar and
buttons which doesn''t appear in the desktop taskbar).
Also a sample - not very interesting, happy to roll this into something
else if that''s better.
cheers
alex
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
2006 Feb 19
2
overriding system locale on Linux
Hi all
Ubuntu linux breezy switched to using UTF-8 as the default encoding.
This has created problems for users of Weft QDA - which uses wxruby-0.6.0.
When accented characters are encoded in UTF-8, they display brokenly (as
you''d expect, with double-byte chars appearing as two wrong characters).
But now latin-1 encoded strings with accented characters don''t display
at all.
2007 Sep 05
6
centering MessageDialog
Hi,
is there any way to center the default Wx::MessageDialog or Wx::message_box
on parent (owner) instead of screen?
I haven''t found any constant other than Wx::DEFAULT_POSITION.
thanks for your help.
fabio.
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2007 Jul 05
8
when can publish the next version?
when can publish the next version?
i am waiting...
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Aug 16
10
all I wanted was a class reference...
And I got this lousy LatexParser. Ah well...
A new cut of the automatic WxRuby documentation is now viewable online at
http://www.pressure.to/wxruby/.
There''s also a pdf version
http://www.pressure.to/wxruby/wxruby.pdf [3MB, 751 pages!]
and a tarball
http://www.pressure.to/wxruby/wxruby2.tar.gz [1.3MB]
In terms of output, it''s no advance on what Sean has already done.
2008 Feb 27
2
Missing evt_tree_item_menu method for TreeCtrl ?
Hi,
The documentation mentions the evt_tree_item_menu method for TreeCtrl
but it seems that this method is not defined (wxRuby 1.9.4 on
Windows).
As a workaround, I''m currently using evt_tree_item_right_click.
Cheers.
Chauk-Mean.
2007 Sep 17
7
Re : syntax II
Alex Fenton wrote :
>1) Setting up event handlers
>
>In most real apps, I think the most normal way to set up event handlers
>is for the event to be dealt with by a corresponding method. At the
>moment this has to be done using a block:
>
>evt_button(AN_ID) { on_button_click }
>evt_button(my_button.get_id) do | event |
> on_button_click(event)
>end
>evt_size { |
2007 Apr 12
3
I''m looking for a wxwidgets interface builder which can output ruby code
Hi !
well i''m looking for a wxwidgets programming gui ( such as gtk/glade
qt-designer ), which can output ruby code,
i found wxglade, and wxdesigner, but both can''t output ruby files ...
do you one ? ( which runs on linux )
thanks
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
2006 Aug 10
7
Gem and tarball rake tasks
Hi
I created an add-on script (to live in rake/) and a little patch for our
main rakefile to automate building release products.
The two main targets are ''gem'' (create a binary gem for your platform)
and ''package'' (create a platform-neutral source tarball for SWIGging and
compiling).
A few small things came up while doing this:
- Package name and version
2008 May 02
3
FIX for wxruby-1.9.6 on Windows
Hi
If you''ve installed the latest wxRuby 1.9.6 on Windows and are having
trouble running applications, please try the following steps:
1) Ensure that you have msvcr80.dll and msvcp80.dll available on your
system. If you haven''t got them, they can be downloaded for free from
http://www.dll-files.com/ and placed in your ruby/bin directory.
2) Copy a file called
2006 Dec 07
4
Introduce and noob problem require ''wx''
Dear All,
my name is Raoul, this is the first time I post here.
I''m a computer scientis and I''m working in bioinformatic''s filed, we have a
lot of tools to analyse the data but no good graphic applications to
visualize them. So I''m looking for a good framework for my job. I think your
motivations on using wxruby are good, most important for me is the
2007 Sep 11
1
wxRuby 1.9.1, wxSugar 0.1.17
I''m very happy to announce that new versions of wxRuby and wxSugar are
now available.
== CHANGES ==
* Merged nice ruby-style syntax options into core wxRuby
* Re-added support for StyledTextCtrl (Scintilla) component
* Added BitmapComboBox and RendererNative classes
* Fixed nasty bug which could cause instability in XML-loaded layouts
* Numerous other fixes and new methods in existing
2007 Sep 27
10
Adding more sugar to wxSugar
Hi all,
New wxRuby event handling offers the choice between using blocks or
methods seamlessly and easily. This is great respectively for simple
app and more complex app.
Nevertheless, currently the creation of an application, a frame, or a
dialog is very tedious for simple app :
- you need to create a subclass of Wx::App, Wx::Frame ...
- you need to put the initialization code in the initialize
2007 Aug 29
13
Scintilla
Hi
I''ve been trying out the StyledTextCtrl/Scintilla component bundled with
wxWidgets 2.8. Surprisingly, it''s very easy to get this working at a
basic level with wxRuby (95% of credit to Roy, who originally created a
SWIG file for this).
So I''m wondering: should we try and integrate this into wxRuby core?
Pros:
- a cool component, interesting to developers
- not
2007 Aug 24
2
SURVEY: wxRuby API style
Hi
As we''re getting closer to a stable release of wxRuby, I''d like to get
your views on the API style. There''s a survey here:
http://rubyforge.org/survey/survey.php?group_id=35&survey_id=66
I''d like to know if you''d like to see two wxSugar syntax features become
part of core, standard wxRuby version 2.0. These are:
1) Allow ruby-style
2008 Jul 28
12
Segfault with GridCellChoiceEditor
I have a problem.
In my application I have a few Grid objects in a Notebook. The Grid objects
are populated via GridTableBase. Certain Grid cells need to have a choice
interface (I''m artificially enforcing foreign key constraints). All this
works to the point where you try to edit the value for that cell. The
choice box renders (i.e. the drop down arrow appears) then the application
2007 Sep 20
7
Troubles with ListBox and CheckListBox events
Hi all,
Here is an excerpt of code (with the new syntax from upcoming wxRuby 1.9.2) :
evt_checklistbox(my_checklist, :on_checklistbox)
evt_listbox(my_checklist, :on_listbox)
evt_listbox(my_list, :on_listbox)
def on_checklistbox(event)
checklist = event.event_object
# puts "listbox - event : item[#{event.int}] checked : #{event.checked?}"
puts "listbox -
2009 Feb 15
4
Compatibility Issues?
I''m running Ruby 1.9.1 (Win32) and I installed the
wxruby-1.9.10-x86-mswin32-60 gem.
But when I try to run a script with it, I get an error, "This
application has failed to start because msvcrt-ruby18.dll was not
found."
I also get this output:
C:/Program
Files/Ruby/lib/ruby/gems/1.9.1/gems/wxruby-1.9.10-x86-mswin32-60/lib/wx.rb:12:in
`require'': 126: The specified
2007 Apr 05
7
Re: how to use Chinese Characters in wxRuby?
yes,I'm using wxruby2
When I change
"samples/text/unicode.rb" 's content:
require 'wx'
into
begin
require 'wx'
rescue LoadError => no_wx_err
begin
require 'rubygems'
require 'wx'
rescue LoadError
raise no_wx_err
end
end
and run unicode.rb in this way:
ruby -Ku unicode.rb
I got the error message like this:
unicode.rb:119:
2012 Jun 12
5
Wxruby Homepage Hijacked
Hi,
It seems like the wxruby homepage has been replaced by a mortgage
broker. I do need to refinance, but I was more interested in some
documentation on wxruby. Is this a sign that the project is fading
into oblivion? If so, I would really like to know what new
cross-platform library people are using for developing ruby desktop
applications.
Josh