Displaying 5 results from an estimated 5 matches for "fox14".
Did you mean:
fox16
2006 Apr 27
4
FXRuby installation
I have fox 1.4.33 installed. All installation steps of FXRuby
(config,setup,install) passed successfully, but when I
try to load fox14 (require ''fox14'') it gives me an error:
LoadError: /usr/local/lib/ruby/site_ruby/1.8/i686-linux/fox14.so:
undefined symbol: removeTimeout__Q22FX5FXAppPQ22FX7FXTimer
- /usr/local/lib/ruby/site_ruby/1.8/i686-linux/fox14.so
I use ruby version: ruby 1.8.4 (2005-12-24) [i686-l...
2006 Oct 14
4
Build error: Debian testing, libfox1.4, FXRuby-1.4.7
I''m getting compile errors when attempting to build FXRuby 1.4.7.
This happens when installing using gems, or when installing from
source:
g++ -I. -I. -I/usr/lib/ruby/1.8/i486-linux -I/home/wayne/lab/fox/FXRuby-1.4.7/ext/fox14 -DHAVE_SYS_TIME_H -DHAVE_SIGNAL_H -I/usr/local/include/fxscintilla -I/usr/local/include/fox-1.4 -I/usr/include/fox-1.4 -fPIC -Wall -g -fno-strict-aliasing -O2 -fPIC -O0 -Iinclude -c fx3d_wrap.cpp
fx3d_wrap.cpp: In function ''FX::FXVec3f FXVec3f_normal(const FX::FXVec3f&, const FX::F...
2005 Aug 22
3
FXRuby 1.4.2 Now Available
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
All,
FXRuby version 1.4.2 is now available for download from this page:
http://rubyforge.org/frs/?group_id=300&release_id=2738
Since this is the second release in this series (i.e. those compatible
with FOX 1.4), it should still be considered unstable. Please report
any problems either to the mailing list, or even better, log them in
the
2005 Dec 25
0
ruby install.rb setup failed
...ion `VALUE to_ruby(long unsigned int)'':
include/FXRuby.h:197: error: redefinition of `VALUE to_ruby(long
unsigned int)''
include/FXRuby.h:193: error: `VALUE to_ruby(FX::FXulong)'' previously
defined here
*** Error code 1
Stop in /home/admin/system/fxruby/FXRuby-1.4.3/ext/fox14.
setup failed
''system make '' failed
Try ''ruby install.rb --help'' for detailed usage.
------------------------------------
any Ideas?
thx.
2006 Apr 10
1
Display an arrow, or transparent image colors
...n, from left to
right, (1) a FXTextField, (2) the arrow, pointing from to the right, (3)
a FXDial.
I figured I can display the Arrow using a .png image containing a red
arrow on transparent background, loading that image using FXPNGIcon, and
display it in FXImageFrame. Example code:
require "fox14"
include Fox
app = FXApp.new
window = FXMainWindow.new(app, "Demo")
window.place(PLACEMENT_SCREEN)
hframe = FXHorizontalFrame.new(window)
file_display = FXTextField.new(hframe, 40, nil, 0, LAYOUT_CENTER_Y)
file_display.text = "SoundFile.wav"
arrow_image = File.open(&quo...