You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(9) |
Oct
|
Nov
(14) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(5) |
Feb
(2) |
Mar
(9) |
Apr
(13) |
May
(2) |
Jun
(2) |
Jul
(10) |
Aug
(6) |
Sep
(6) |
Oct
|
Nov
(6) |
Dec
|
2003 |
Jan
|
Feb
(3) |
Mar
(3) |
Apr
|
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
(4) |
Apr
(3) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2006 |
Jan
|
Feb
|
Mar
(3) |
Apr
(3) |
May
(3) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(1) |
Nov
(1) |
Dec
|
2007 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Takaaki T. <tt...@kt...> - 2002-04-02 23:03:19
|
At Tue, 2 Apr 2002 17:40:31 +0100 (BST), > > [steve@tim samples]$ ruby sample1.rb > > ruby: error while loading shared libraries: /usr/lib/ruby/1.6/i586-linux-gnu/rubyfltk.so: undefined symbol: define_FL_SHADOW_LABEL__Fv > > I notice that commenting out "NUMCONST(SHADOW_LABEL);" in flenum.cc clears > up this missing symbol. But presumably has other undesired side-effects. Is there the line "#define FL_SHADOW_LABEL ..." in your Enumeration.H? Regards, -- Takaaki Tateishi <tt...@kt...> |
From: Stephen D. <st...@da...> - 2002-04-02 16:40:37
|
On Tue, 2 Apr 2002, Stephen Davies wrote: > [steve@tim samples]$ ruby sample1.rb > ruby: error while loading shared libraries: /usr/lib/ruby/1.6/i586-linux-gnu/rubyfltk.so: undefined symbol: define_FL_SHADOW_LABEL__Fv I notice that commenting out "NUMCONST(SHADOW_LABEL);" in flenum.cc clears up this missing symbol. But presumably has other undesired side-effects. Steve |
From: Stephen D. <st...@da...> - 2002-04-02 16:22:13
|
Hi, Just built and installed fltk 1.1.0b12 and CVS ruby-fltk. Attempting to run the ruby-fltk samples yields: [steve@tim samples]$ ruby sample1.rb ruby: error while loading shared libraries: /usr/lib/ruby/1.6/i586-linux-gnu/rubyfltk.so: undefined symbol: define_FL_SHADOW_LABEL__Fv Any suggestions? Thanks, Steve |
From: Takaaki T. <tt...@kt...> - 2002-04-01 07:56:07
|
At Mon, 1 Apr 2002 09:27:46 +0200, > In the following example the commented lines do not work, > as I get "undefined method". I've not fully implement methods yet. In next release, I will provide some methods you want to use. Thank you, -- Takaaki Tateishi <tt...@kt...> |
From: cix <mc...@gm...> - 2002-04-01 07:30:26
|
On Monday 01 April 2002 06:13, you wrote: > At Mon, 1 Apr 2002 01:45:06 +0200, > > > TextEditor instead of MultilineInput, but I guess, from ruby-fltk > > docs, that TextEditor is not really supported/implemented. > > TextDisplay and TextEditor are now supported. I should have > updated the documentation. > > Does anybody know how I could achieve my target? > > So I would use TextEditor. Hello, I have tried to understand the fltk doc on TextEditor, but with no good results. In the following example the commented lines do not work, as I get "undefined method". A lot of others methods in TextEditor and TextBuffer have the same behaviour. Am I doing a silly mistake? Are these methods not supported? If they are not, how could I let the user select part of the text and choose a different color/size/font for it? Thanks for the help. cix -------------------- require 'fltk' w = FLTK::Window.new(0,0,200,220){ d = FLTK::TextEditor.new(200,200) b = FLTK::TextBuffer.new(100) b.text = "this is a buffer text." d.buffer = b d.insert_position(0) d.show_insert_position() FLTK::Button.new(0,200,50,20,"action"){ #The following 3 lines are unrelated! It is just a sample. #p b.highlight_selection #p b.text_range(2,5) #d.textcolor(Fltk::RED) } } w.show FLTK::run() ---------------------- |
From: Takaaki T. <tt...@kt...> - 2002-04-01 04:19:18
|
At Mon, 1 Apr 2002 01:43:22 +0200, > is there a ruby-fltk logo I can insert in my project page? No, there are not any logos I made. -- Takaaki Tateishi <tt...@kt...> |
From: Takaaki T. <tt...@kt...> - 2002-04-01 04:15:37
|
At Mon, 1 Apr 2002 01:45:06 +0200, > TextEditor instead of MultilineInput, but I guess, from ruby-fltk > docs, that TextEditor is not really supported/implemented. TextDisplay and TextEditor are now supported. I should have updated the documentation. > I have also thought to use the helpview associated with a small > html editor, but it seems that helpview is a readonly widget. > Does anybody know how I could achieve my target? So I would use TextEditor. -- Takaaki Tateishi <tt...@kt...> |
From: cix <mc...@gm...> - 2002-03-31 23:47:09
|
Hello, I am writing an application that should let the user insert text in a text editor. The one given as example with ruby-fltk is almost OK for my needs. I would like to add the possibility to use different colors and/or font inside the text area in order to highlight part of the text. It seems to me that that is possible using TextEditor instead of MultilineInput, but I guess, from ruby-fltk docs, that TextEditor is not really supported/implemented. I have also thought to use the helpview associated with a small html editor, but it seems that helpview is a readonly widget. Does anybody know how I could achieve my target? Thanks, cix --- Mauro Cicio |
From: cix <mc...@gm...> - 2002-03-31 23:45:29
|
Hello, is there a ruby-fltk logo I can insert in my project page? cix |
From: Takaaki T. <tt...@kt...> - 2002-03-22 17:12:42
|
At Wed, 20 Mar 2002 17:53:53 +0900, > I've released the Ruby/FLTK v0.7.0. Major changes are as follows: That release had fatal bugs in its memory management mechanism. I recommend you to upgrade your Ruby/FLTK. Ruby/FLTK 0.7.1 will be available at http://ruby-fltk.sourceforge.net/ soon. Regards, -- Takaaki Tateishi <tt...@kt...> |
From: Takaaki T. <tt...@kt...> - 2002-03-20 08:55:32
|
Dear all, I've released the Ruby/FLTK v0.7.0. Major changes are as follows: * New classes: - BMPImage, GIFImage, Wizard - FLTK::Thread (defined in fltk/thread.rb) I recommend you to use this thread inside event handler and callbacks. * New fltk-xunicode specific methods: FLTK.set_charcode(code), FLTK.set_internal_charcode(code) In case that you use these methods, you should check they are defined. Thanks, -- Takaaki Tateishi <tt...@kt...> |
From: Takaaki T. <tt...@kt...> - 2002-03-18 22:24:26
|
At Tue, 19 Mar 2002 08:15:55 +1030, Mike Tsakiris wrote: > I tried anything but it gives me something about not finding entry_point. > Your help is appreciated. Would you show me which entry point is not found? -- Takaaki Tateishi <tt...@kt...> |
From: Mike T. <mi...@ip...> - 2002-03-18 21:46:14
|
How do you install ruby_fltk on WindowsXP. I tried anything but it gives me something about not finding entry_point. Your help is appreciated. If you want to immortalize, digitize.-- Timothy Leary -- |
From: Takaaki T. <tt...@kt...> - 2002-03-09 20:39:07
|
At Sun, 10 Mar 2002 01:37:43 +0800, Richard Bates wrote: > think I can get someone to show a simple example of using textdisplay? I'm not sure what is a correct way to show a buffer text. I think we should call show_insert_position() in handle(). In the following example, TextDisplay shows its buffer text when handling an event FOCUS. === example.rb == require 'fltk' class MyTextDisplay < FLTK::TextDisplay def handle(e) case e when FLTK::FOCUS show_insert_position() return true else return false end end end w = FLTK::Window.new(0,0,200,200){ d = MyTextDisplay.new(200,200) b = FLTK::TextBuffer.new(100) b.text = "this is a buffer text." d.buffer = b d.insert_position(0) } w.show FLTK::run() ==== -- Takaaki Tateishi <tt...@kt...> |
From: Richard B. <sh...@li...> - 2002-03-09 17:37:50
|
think I can get someone to show a simple example of using textdisplay? btw, great work on ruby-fltk -- Get your free email from www.linuxmail.org Powered by Outblaze |
From: Takaaki T. <tt...@kt...> - 2002-03-09 07:35:40
|
Ruby/FLTK 0.6.0 is now available at: http://ruby-fltk.sourceforge.net/ New widgets JPEGImage, PNGImage (These are unavailable with mingw version) TextDisplay and TextEditor have been added. There are also a few internal minor changes. Regards, -- Takaaki Tateishi <tt...@kt...> |
From: Takaaki T. <tt...@kt...> - 2002-02-13 02:32:46
|
At Tue, 12 Feb 2002 16:20:51 -0500, Robert Anderson <rob...@ea...> wrote: > I made ruby-fltk-0.1 on netbsd v1.5 with the command Could you try ruby-fltk-0.5? -- Takaaki Tateishi <tt...@kt...> |
From: Robert A. <rob...@ea...> - 2002-02-12 21:21:12
|
Hello, I made ruby-fltk-0.1 on netbsd v1.5 with the command ruby extconf.rb --disable-gl --with-fltk-include=/home/omura/pub/fltk-1.1.0b10 \ --with-fltk-lib=/home/omura/pub/fltk-1.1.0b10/lib This compiled each file like this one, for example: c++ -fPIC -g -O2 -pipe -I/usr/local/lib/ruby/1.6/i386-netbsdelf1.5 -I. -I/usr/local/include -DHAVE_FL_FL_H -I/home/omura/pub/fltk-1.1.0b10 -o flinput flinput.cc And linked like this: gcc -shared -L/home/omura/pub/fltk-1.1.0b10/lib -L/usr/local/lib/ruby/1.6/i386-netbsdelf1.5 -L/usr/local/lib -Wl,-R/home/omura/pub/fltk-1.1.0b10/lib -Wl,-R/usr/local/lib/ruby/1.6/i386-netbsdelf1.5 -Wl,-R/usr/local/lib -L/usr/X11R6/lib -lX11 -lXext -o rubyfltk.so flbox.o flbrowser.o flbutton.o flchart.o flclock.o flcolorchooser.o flenum.o flfree.o flgroup.o flinput.o flmenu.o flpack.o flpositioner.o flscroll.o fltabs.o fltile.o fltimer.o fltk.o flvaluator.o flwidget.o flwindow.o -lfltk -lc -lz Then when I try to run ruby sample1.rb I get: /usr/local/lib/ruby/1.6/fltk.rb:1:in `require': /usr/local/lib/ruby/1.6/i386-netbsdelf1.5/rubyfltk.so: Undefined symbol "__pure_virtual" (reloc type = 1, symnum = 1144) - /usr/local/lib/ruby/1.6/i386-netbsdelf1.5/rubyfltk.so (LoadError) from /usr/local/lib/ruby/1.6/fltk.rb:1 from sample1.rb:1:in `require' from sample1.rb:1 Does anyone know where this symbol lives? I saw that fluid also contains this symbol but it works ok. Am I missing something in my link? Any help is greatly appreciated. Robert Anderson |
From: Kevin S. <kev...@ya...> - 2002-01-25 03:39:36
|
--- Takaaki Tateishi <tt...@kt...> wrote: > cix <mc...@gm...> wrote: > > The Group handle "hides" the Widget' one, so that I > > never reach Contained::handle(e) if not removing > > Container::handle(e). > > I don't know how to solve the problem. Did I miss > > somehing? > > See the section "Handling Events" of FLTK's manual. > The Group#handle(e) (or super(e) in Container#handle()) > is > propagates the event to children widgets. > So this means the event is not sent directly to children > widgets, I think. This is correct. The event is sent to the Container group, which is responsible for sending it to the appropriate child. The code that does that is in FLTK itself. So the simple fix in this case is to replace the 'return false' at the end of your Container#handle method with a line that just says: return super(e) Kevin __________________________________________________ Do You Yahoo!? Great stuff seeking new owners in Yahoo! Auctions! http://auctions.yahoo.com |
From: Takaaki T. <tt...@kt...> - 2002-01-25 01:34:51
|
Hello, At Thu, 24 Jan 2002 23:26:49 +0100, cix <mc...@gm...> wrote: > The Group handle "hides" the Widget' one, so that I never reach > Contained::handle(e) if not removing Container::handle(e). > I don't know how to solve the problem. Did I miss somehing? See the section "Handling Events" of FLTK's manual. The Group#handle(e) (or super(e) in Container#handle()) is propagates the event to children widgets. So this means the event is not sent directly to children widgets, I think. -- Takaaki Tateishi <tt...@kt...> |
From: cix <mc...@gm...> - 2002-01-24 22:29:15
|
Hi, I am using fltk/ruby for two o three weeks now, but I still have some problems. I wrote a small example which reproduce the condition I don't understand. I have a Group (Container) containing a Widget (Contained). It should be a square containing a label/button. The Group handle "hides" the Widget' one, so that I never reach Contained::handle(e) if not removing Container::handle(e). I don't know how to solve the problem. Did I miss somehing? If you have time, there is a minor problem explained in the comment of the initializer of "Contained". Thanks! cix #======================== # contained.rb #======================== require 'fltk' class Contained < Fltk::Widget include Fltk::Drawable #------------------- def initialize(parent, name, pos_x, pos_y) @name = name # I would like to create this box larger than the name # but Fltk.width(name) gives me a core dump. What can I do? @w = name.length*7+8 # Temporary trick @h = 20 @x = pos_x @y = pos_y super(@x - @w/2, @y - @h/2, @w, @h,'') @parent = parent @enter = false end #------------------- def mX x + @w/2 end def mY y + @h/2 end #------------------- def draw super() color(Fltk::BLACK) rectf(0,0,@w,@h) end #------------------- def handle(e) puts 'in Contained::handle' super(e) case e when Fltk::ENTER @parent.active_child(self) @enter = true #@parent.redraw redraw return true when Fltk::LEAVE @parent.active_child(self) @enter = false #@parent.redraw redraw return true else return false end end end #======================== # container.rb #======================== require 'fltk' require 'contained' class Container < Fltk::Group include Fltk::Drawable #------------------- def initialize(label) super(400,400,label) add(Thought.new(self, 'contained',200,200)) group_end @cur = nil end #------------------- def handle(e) if( Fltk.event_button != 1 ) return false end case e when Fltk::PUSH puts 'Fltk::PUSH' return true when Fltk::DRAG puts 'Fltk::DRAG' if( @cur ) @cur.position(Fltk.event_x, Fltk.event_y) end redraw return true end return false end #------------------- def active_child(obj) print "mark_item(#{obj.inspect})\n" @cur = obj end end #======================= class MyWindow < Fltk::Window def initialize(label) super(400,400,label) @canvas = Container.new("#{label} exp") end end w = MyWindow.new("gMind") w.show FLTK::font(FLTK::HELVETICA,14) Fltk.run |
From: Takaaki T. <tt...@kt...> - 2002-01-02 13:29:41
|
At Wed, 2 Jan 2002 11:53:07 +0000 (GMT), Stephen Davies <st...@da...> wrote: > Now - how do I get to the color and color() instance methods having > included Drawable, which has its own color() that calls Fltk::color...? I will define an alias 'widget_color' of Widget#color(). You can also define an alias by yourself like this: class MyBrowser < FLTK::Browser_ alias widget_color color # should be defined before Drawable include FLTK::Drawable Now you can use widget_color. b = MyBrowser.new(5,5,90,90,items) b.widget_color(FLTK::RED) -- Takaaki Tateishi <tt...@kt...> |
From: Stephen D. <st...@da...> - 2002-01-02 11:53:13
|
Hi, I've subclassed Browser_ - and included Drawable. So far, I'm following the browser_.rb test. Now - how do I get to the color and color() instance methods having included Drawable, which has its own color() that calls Fltk::color...? This is probably an elementary Ruby question - in which case apologies from a Rubie-newbie Thanks, Steve |
From: Takaaki T. <tt...@kt...> - 2001-12-10 08:00:18
|
Hello, I've released ruby-fltk-0.5.0 today. It is now available at: http://ruby-fltk.sourceforge.net/ Here are some major changes: * The module 'Fltk' is renamed with 'FLTK', and 'Fltk' become the alias to 'FLTK'. * New classes: - Pixmap, Bitmap - FileView, FileChooser, HelpView, HelpDialog (for fltk-1.1.x). * New module: - GL * Widget#valid? is obsolete, use Widget#destroyed?. I appreciate any feedback. Regards, -- Takaaki Tateishi <tt...@kt...> |
From: Takaaki T. <tt...@kt...> - 2001-12-06 04:24:33
|
Sorry for my fault. That mail is for ruby-fltk-users-jp. The contents are same to what I sent yesterday. -- Takaaki Tateishi <tt...@kt...> |