fxruby icon indicating copy to clipboard operation
fxruby copied to clipboard

FXRuby is an extension module for Ruby that provides an interface to the FOX GUI toolkit.

Results 16 fxruby issues
Sort by recently updated
recently updated
newest added

Hi, Is there a way to open the menu pane of a Combobox using code? I would like to toggle the visibility of the combobox's selection drop-down list example, FXComboBox.showList(TRUE)...

I still haven't found a way to change a headers' colors in a table. How can I do it?

Hello! Is there any way to load font files into the program (ttf, otf)? I know that I can choose fonts from the system but now, I would like to...

The following code snippet crashes on Catalina but works fine on High Sierra, various linux distros, and win10. Tried with ruby 2.4.0 and 2.6.4. Using fxruby-1.6.42 #!/usr/bin/env ruby require 'fox16'...

Hi @larskanis @lylejohnson @IgorJorobus ! In windows fxruby usually installed from the rubyinstaller's ruby. This ruby uses MinGW / Msys2 for building. But when I build ruby from source in...

Hello. For example, to add a tooltext to a button, we may have this: button.tipText = ' Push Me! ' We do not have: button.tip_text = ' Push Me! '...

Hello, I've been learning FXRuby and I've been having issues with interpreter crashes when calling `Fox::FXApp#exit`. I don't believe the issue is with the code I'm using, as it's directly...

Hi, I am trying to use fxruby to open a FileDialog multiple times through out the execution of the main ruby program which is not a GUI program. The main...

Hi, Just started experimenting with Ruby and FxRuby (which I really like), but I've been crashing when app.exit is called. My main screen also freezes when a sub window is...

Key events are being reported inconsistently (and I believe incorrectly) under Windows. The test program below illustrates the problem. #!/usr/bin/env ruby require 'fox16' include Fox class TopLevelWindow < FXMainWindow def...