<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-17483</id>
	<title>Nabble - FXRuby Users</title>
	<updated>2009-11-24T13:51:26Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/FXRuby-Users-f17483.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FXRuby-Users-f17483.html" />
	<subtitle type="html">&lt;a href=&quot;http://www.fxruby.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;FXRuby&lt;/a&gt;&amp;nbsp;is a Ruby extension module that provides an interface to the FOX GUI library.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26503944</id>
	<title>Re: Best class to use</title>
	<published>2009-11-24T13:51:26Z</published>
	<updated>2009-11-24T13:51:26Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Nov 24, 2009 at 2:42 PM, Stuart Clarke &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503944&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stuart_clarke86@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;/div&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font:inherit&quot;&gt;&lt;div&gt;My questions are, how can I create the text field as an append-able area? For example, as a user I want to type things into the text area (input area) and I will also click buttons which will add some data to the input area also. At present when I click the buttons to add data it clears the text field (input area).&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Well, to append text to an FXText widget, you can use the FXText#appendText method. If it&amp;#39;s an FXTextField, you&amp;#39;d need to grab the current text field content, add the new content to it, and then set it back to the FXTextField, e.g.&lt;/div&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;    text_field.text = text_field.text + &amp;quot;some appended text&amp;quot;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;
&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font:inherit&quot;&gt;&lt;div&gt;My second question is, how do I get the GUI to respond to new lines being entered into the text area (input area)? Each time a line is filled or the user hits the enter/return button I want the time to entered into the date area for the corresponding line in the input area for example&lt;/div&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;INPUT AREA                  
                                                                           DATE AREA&lt;/div&gt;&lt;div&gt;this is my data, i am the user (USER HITS ENTER FOR NEW LINE)             Date value&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I think the easiest way would be to listen for either the SEL_INSERTED or SEL_CHANGED message from the FXText widget; see the API documentation for more information:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;    &lt;a href=&quot;http://www.fxruby.org/doc/api/classes/Fox/FXText.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fxruby.org/doc/api/classes/Fox/FXText.html&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Hope this helps,&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Lyle&lt;/div&gt;&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503944&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-class-to-use-tp26481562p26503944.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26503557</id>
	<title>Re: SEL_CONFIGURE</title>
	<published>2009-11-24T13:24:40Z</published>
	<updated>2009-11-24T13:24:40Z</updated>
	<author>
		<name>Joey Kinsella</name>
	</author>
	<content type="html">If it&amp;#39;s the main window of your application, you might be able to just get away with doing something after app.run is finished.&lt;br&gt;&lt;br&gt;ie:&lt;br&gt;&lt;br&gt;require &amp;#39;fox16&amp;#39;&lt;br&gt;include Fox&lt;br&gt;&lt;br&gt;a = FXApp.new&lt;br&gt;w = FXMainWindow.new(a, &amp;#39;title&amp;#39;, :width=&amp;gt;320, :height=&amp;gt;240)&lt;br&gt;
&lt;br&gt;a.create&lt;br&gt;w.show(PLACEMENT_SCREEN)&lt;br&gt;a.run&lt;br&gt;&lt;br&gt;puts &amp;quot;My Cleanup code!&amp;quot;&lt;br&gt;&lt;br&gt;---&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Mon, Nov 23, 2009 at 2:01 PM, Leslie Viljoen &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503557&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leslieviljoen@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;Hi&lt;br&gt;
&lt;br&gt;
Thanks for the information on SEL_CONFIGURE. It seems that that&lt;br&gt;
message gets sent a few times during the window&amp;#39;s lifecycle and there&lt;br&gt;
seems to be no way to tell those times apart from the time when the&lt;br&gt;
&amp;#39;x&amp;#39; button in the corner is clicked.&lt;br&gt;
&lt;br&gt;
Or is there a way?&lt;br&gt;
_______________________________________________&lt;br&gt;
fxruby-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503557&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;

&lt;pre&gt;--
If you are not the intended recipient, you are hereby notified
that any dissemination, distribution, copying or other use of
this communication is strictly prohibited.  If you have
received this communication in error, please notify us
immediately.
&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503557&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SEL_CONFIGURE-tp26484315p26503557.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26503368</id>
	<title>Re: Best class to use</title>
	<published>2009-11-24T13:05:49Z</published>
	<updated>2009-11-24T13:05:49Z</updated>
	<author>
		<name>Joey Kinsella</name>
	</author>
	<content type="html">Are you sure you actually need to use a text area for the display portion? Part of what you may be able to do is use an FXIconList, to create a &amp;quot;preview&amp;quot;, and a &amp;quot;timestamp&amp;quot; area. the user would be able to double click on the FXIconList to see the full details past the &amp;quot;preview&amp;quot;. In my experience it is much easier to append data to a list like item, that it is to try and re-draw widgets every time something happens. You could do something like this:&lt;br&gt;
&lt;br&gt;&lt;font face=&quot;courier new,monospace&quot;&gt;+---------------------------------------------------------------------+&lt;br&gt;|  Item Preview                               | Timestamp             |&lt;br&gt;+---------------------------------------------------------------------+&lt;br&gt;
| Here is some preview text                   | 2009-11-24 15:39:09   |&lt;br&gt;| Here is some more preview text that is re...| 2009-11-24 16:00:03   |&lt;br&gt;|                                                                     |&lt;br&gt;
&lt;/font&gt;&lt;font face=&quot;courier new,monospace&quot;&gt;|                                                                     |&lt;br&gt;&lt;/font&gt;&lt;font face=&quot;courier new,monospace&quot;&gt;|                                                                     |&lt;br&gt;
&lt;/font&gt;&lt;font face=&quot;courier new,monospace&quot;&gt;|                                                                     |&lt;br&gt;&lt;/font&gt;&lt;font face=&quot;courier new,monospace&quot;&gt;|                                                                     |&lt;br&gt;
&lt;/font&gt;&lt;font face=&quot;courier new,monospace&quot;&gt;|                                                                     |&lt;/font&gt;&lt;br&gt;&lt;font face=&quot;courier new,monospace&quot;&gt;+----------------------------------------------------------------------&lt;br&gt;
&lt;br&gt;Enter data:&lt;br&gt;+---------------------------------------------+&lt;br&gt;| Text area to submit data                    |   [ Some other button ]&lt;br&gt;|                                             |   [ Another Button ]&lt;br&gt;&lt;/font&gt;&lt;font face=&quot;courier new,monospace&quot;&gt;|                                             |   [ Submit Button ]&lt;/font&gt;&lt;br&gt;
&lt;font face=&quot;courier new,monospace&quot;&gt;+---------------------------------------------+&lt;br&gt;&lt;br&gt;&lt;font face=&quot;arial,helvetica,sans-serif&quot;&gt;I don&amp;#39;t fully understand all your needs, so forgive me if I am way off, but from what I can gather something like this is what you are looking for, and something like this would also be a lot easier to code than what I think you are trying to code.&lt;br&gt;
&lt;br&gt;Thanks,&lt;br&gt;Joey&lt;br&gt;&lt;/font&gt;&lt;/font&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Nov 24, 2009 at 3:42 PM, Stuart Clarke &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503368&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stuart_clarke86@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
At present I have two text areas, one for data (input area) and one for the time stamp (date area) in two horizontal frames.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;My questions are, how can I create the text field as an append-able area? For example, as a user I want to type things into the text area (input area) and I will also click buttons which will add some data to the input area also. At present when I click the buttons to add data it clears the text field (input area).&lt;/div&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;My second question is, how do I get the GUI to respond to new lines being entered into the text area (input area)? Each time a line is filled or the user hits the enter/return button I want the time to entered into the date area for the corresponding line in the input area for example&lt;/div&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;INPUT AREA                  
                                                                           DATE AREA&lt;/div&gt;&lt;div&gt;this is my data, i am the user (USER HITS ENTER FOR NEW LINE)             Date value&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I hope this is a bit clearer, many thanks&lt;/div&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Stuart&lt;br&gt;&lt;br&gt;--- On &lt;b&gt;Mon, 23/11/09, Lyle Johnson &lt;i&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503368&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lyle@...&lt;/a&gt;&amp;gt;&lt;/i&gt;&lt;/b&gt; wrote:&lt;br&gt;&lt;blockquote style=&quot;border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;&quot;&gt;
&lt;br&gt;From: Lyle Johnson &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503368&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lyle@...&lt;/a&gt;&amp;gt;&lt;br&gt;Subject: Re: [fxruby-users] Best class to use&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503368&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;&lt;br&gt;
Date: Monday, 23 November, 2009, 17:23&lt;div class=&quot;im&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;div&gt;On Mon, Nov 23, 2009 at 10:20 AM, Stuart Clarke &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://mc/compose?to=stuart_clarke86@yahoo.com&quot; target=&quot;_blank&quot;&gt;stuart_clarke86@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;div&gt;
&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;font-family: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;&quot; valign=&quot;top&quot;&gt;
&lt;div&gt;&lt;div&gt;My initial thoughts are a text area for the input, but I am unsure how I can link this to an area for time stamping?&lt;/div&gt;
&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I don&amp;#39;t think I understand what it is that you&amp;#39;re unsure about. Are you asking how to achieve this kind of layout? I think I would put each text area/time stamp pair of widgets inside some container (e.g. an FXHorizontalFrame). Or maybe I&amp;#39;d put all of the text area/time stamp pairs in an FXMatrix container--actually, that sounds better. And you&amp;#39;ll presumably want to put that outermost container into a scrolling window.&lt;/div&gt;

&lt;/div&gt;&lt;/div&gt;
&lt;/div&gt;&lt;br&gt;&lt;/div&gt;-----Inline Attachment Follows-----&lt;br&gt;&lt;br&gt;&lt;div&gt;_______________________________________________&lt;br&gt;fxruby-users mailing list&lt;br&gt;&lt;a href=&quot;http://mc/compose?to=fxruby-users@rubyforge.org&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;



      &lt;br&gt;_______________________________________________&lt;br&gt;
fxruby-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503368&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;

&lt;pre&gt;--
If you are not the intended recipient, you are hereby notified
that any dissemination, distribution, copying or other use of
this communication is strictly prohibited.  If you have
received this communication in error, please notify us
immediately.
&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26503368&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-class-to-use-tp26481562p26503368.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26502952</id>
	<title>Re: Best class to use</title>
	<published>2009-11-24T12:42:45Z</published>
	<updated>2009-11-24T12:42:45Z</updated>
	<author>
		<name>beanie86</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;At present I have two text areas, one for data (input area) and one for the time stamp (date area) in two horizontal frames.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;My questions are, how can I create the text field as an append-able area? For example, as a user I want to type things into the text area (input area) and I will also click buttons which will add some data to the input area also. At present when I click the buttons to add data it clears the text field (input area).&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;My second question is, how do I get the GUI to respond to new lines being entered into the text area (input area)? Each time a line is filled or the user hits the enter/return button I want the time to entered into the date area for the corresponding line in the input area for example&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;INPUT AREA &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DATE AREA&lt;/div&gt;&lt;div&gt;this is my data, i am the user (USER HITS ENTER FOR NEW LINE) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Date value&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I hope this is a bit clearer, many thanks&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Stuart&lt;br&gt;&lt;br&gt;--- On &lt;b&gt;Mon, 23/11/09, Lyle Johnson &lt;i&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502952&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lyle@...&lt;/a&gt;&amp;gt;&lt;/i&gt;&lt;/b&gt; wrote:&lt;br&gt;&lt;blockquote style=&quot;border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;&quot;&gt;&lt;br&gt;From: Lyle Johnson &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502952&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lyle@...&lt;/a&gt;&amp;gt;&lt;br&gt;Subject: Re: [fxruby-users] Best class to use&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502952&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;&lt;br&gt;Date: Monday, 23 November, 2009, 17:23&lt;br&gt;&lt;br&gt;&lt;div id=&quot;yiv1259196308&quot;&gt;On Mon, Nov 23, 2009 at 10:20 AM, Stuart Clarke &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a rel=&quot;nofollow&quot; ymailto=&quot;mailto:stuart_clarke86@yahoo.com&quot; target=&quot;_blank&quot; href=&quot;/mc/compose?to=stuart_clarke86@yahoo.com&quot;&gt;stuart_clarke86@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;div&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font:inherit;&quot;&gt;&lt;div&gt;&lt;div&gt;My initial thoughts are a text area for the input, but I am unsure how I can link this to an area for time stamping?&lt;/div&gt;
&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I don't think I understand what it is that you're unsure about. Are you asking how to achieve this kind of layout? I think I would put each text area/time stamp pair of widgets inside some container (e.g. an FXHorizontalFrame). Or maybe I'd put all of the text area/time stamp pairs in an FXMatrix container--actually, that sounds better. And you'll presumably want to put that outermost container into a scrolling window.&lt;/div&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/div&gt;&lt;br&gt;-----Inline Attachment Follows-----&lt;br&gt;&lt;br&gt;&lt;div class=&quot;plainMail&quot;&gt;_______________________________________________&lt;br&gt;fxruby-users mailing list&lt;br&gt;&lt;a ymailto=&quot;mailto:fxruby-users@rubyforge.org&quot; href=&quot;/mc/compose?to=fxruby-users@rubyforge.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;



     &lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26502952&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-class-to-use-tp26481562p26502952.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26492607</id>
	<title>Re: fxruby1.6.20</title>
	<published>2009-11-24T00:45:21Z</published>
	<updated>2009-11-24T00:45:21Z</updated>
	<author>
		<name>Meinrad Recheis</name>
	</author>
	<content type="html">Are there any serious foxguib problems with newer fxruby versions?&lt;br&gt;
&lt;br&gt;I am not able to further support foxguib all alone, but I would accept and review any patches ... ;)&lt;br&gt;Anyone feel free to clone foxguib on github: &lt;a href=&quot;http://github.com/henon/foxguib&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://github.com/henon/foxguib&lt;/a&gt;&lt;br&gt;
&lt;br&gt;Cheers,&lt;br&gt;-- henon&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Nov 24, 2009 at 9:37 AM, dave L &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26492607&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dglnz@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div&gt;&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;&lt;div&gt;I&amp;#39;ve just created another XP VM (I run linux as my main OS).&lt;br&gt;&lt;br&gt;anyway I just had a thought and wnat you input on fxruby upgrades.&lt;br&gt;
&lt;br&gt;Do you foresee a time or a point where you will need to revisit foxguib to keep it current with the other features?&lt;br&gt;&lt;br&gt;or even fox (currently i use fox16 but there maybe an iteration fox20 or whatever.&lt;br&gt;&lt;br&gt;cheers,&lt;br&gt;
&lt;br&gt;Dave.&lt;br&gt;&lt;/div&gt;

&lt;/div&gt;&lt;br&gt;


      Need mail bonding? Bring all your contacts to Yahoo!Xtra with &lt;a href=&quot;http://au.rd.yahoo.com/nz/mail/tagline/2009/trueswitch/*http://help.yahoo.com/l/nz/yahooxtra/mail/yahoomail/manage/manage-66.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;TrueSwitch&lt;/a&gt;&lt;/div&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26492607&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-fxruby1.6.20-tp26492607p26492607.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26484315</id>
	<title>SEL_CONFIGURE</title>
	<published>2009-11-23T11:01:53Z</published>
	<updated>2009-11-23T11:01:53Z</updated>
	<author>
		<name>Leslie Viljoen-2</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;Thanks for the information on SEL_CONFIGURE. It seems that that
&lt;br&gt;message gets sent a few times during the window's lifecycle and there
&lt;br&gt;seems to be no way to tell those times apart from the time when the
&lt;br&gt;'x' button in the corner is clicked.
&lt;br&gt;&lt;br&gt;Or is there a way?
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26484315&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SEL_CONFIGURE-tp26484315p26484315.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26482544</id>
	<title>Re: Best class to use</title>
	<published>2009-11-23T09:23:52Z</published>
	<updated>2009-11-23T09:23:52Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">On Mon, Nov 23, 2009 at 10:20 AM, Stuart Clarke &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26482544&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;stuart_clarke86@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;div&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font:inherit&quot;&gt;&lt;div&gt;&lt;div&gt;My initial thoughts are a text area for the input, but I am unsure how I can link this to an area for time stamping?&lt;/div&gt;
&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I don&amp;#39;t think I understand what it is that you&amp;#39;re unsure about. Are you asking how to achieve this kind of layout? I think I would put each text area/time stamp pair of widgets inside some container (e.g. an FXHorizontalFrame). Or maybe I&amp;#39;d put all of the text area/time stamp pairs in an FXMatrix container--actually, that sounds better. And you&amp;#39;ll presumably want to put that outermost container into a scrolling window.&lt;/div&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26482544&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-class-to-use-tp26481562p26482544.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26481562</id>
	<title>Best class to use</title>
	<published>2009-11-23T08:20:42Z</published>
	<updated>2009-11-23T08:20:42Z</updated>
	<author>
		<name>beanie86</name>
	</author>
	<content type="html">&lt;table cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; border=&quot;0&quot;&gt;&lt;tr&gt;&lt;td valign=&quot;top&quot; style=&quot;font: inherit;&quot;&gt;Hello all,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I am looking for input to an issue I am facing. I want to write a simple GUI that will be used by users for logging. The GUI needs the following&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;A text area for logging&lt;/li&gt;&lt;li&gt;An area for time stamping every new line created&lt;/li&gt;&lt;li&gt;A frame area with buttons to select file paths&lt;/li&gt;&lt;li&gt;The ability to out a text based report showing each entry from the text area with its time stamp alongside&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;My initial thoughts are a text area for the input, but I am unsure how I can link this to an area for time stamping? I intend to have a small frame at the bottom of the GUI with a button and corresponding text field allowing users to select a folder with dirlist. My intended GUI will be as follows:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;TEXT AREA &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TIME STAMP&lt;/div&gt;&lt;div&gt;TEXT AREA &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TIME STAMP&lt;/div&gt;&lt;div&gt;TEXT AREA &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TIME STAMP&lt;/div&gt;&lt;div&gt;TEXT AREA &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TIME STAMP&lt;/div&gt;&lt;div&gt;TEXT AREA &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TIME STAMP&lt;/div&gt;&lt;div&gt;TEXT AREA &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TIME STAMP&lt;/div&gt;&lt;div&gt;TEXT AREA
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TIME STAMP&lt;/div&gt;&lt;div&gt;ETC, ETC&lt;/div&gt;&lt;div&gt;FRAME - BUTTON &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; TEXT FIELD&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;My report that I generate from this information will link the text area and time stamp together.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I hope this makes sense.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thanks in advance.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br&gt;



&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26481562&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-class-to-use-tp26481562p26481562.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26408751</id>
	<title>Re: FXRuby/ questions about fotos</title>
	<published>2009-11-18T06:22:00Z</published>
	<updated>2009-11-18T06:22:00Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">On Sat, Nov 14, 2009 at 10:55 AM, Benjamin Sebastian Kolz
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408751&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;benjaminrub-upf@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I've got two questions mainly about fotos in FX Ruby.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I read the FX Ruby book and I'm using the &amp;quot;scale to thumbnail&amp;quot; method in my
&lt;br&gt;&amp;gt; project.
&lt;br&gt;&lt;br&gt;OK.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Extract from the main code:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; @logo=&amp;quot;logo_small.jpeg&amp;quot;
&lt;br&gt;&amp;gt; logo_load=ImageViewer.new(self,@logo)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 1. How can I position the foto in the window? If I create a bottom, f. ex.,
&lt;br&gt;&amp;gt; I have
&lt;br&gt;&amp;gt;    LAYOUT_EXPLICIT, :x =&amp;gt; 50, :y =&amp;gt; 200, :width =&amp;gt; 200, :height =&amp;gt; 200, but
&lt;br&gt;&amp;gt; how can
&lt;br&gt;&amp;gt;    I select the x- and y-value for the foto? Any idea?
&lt;/div&gt;&lt;br&gt;Well, without any of the code for your ImageViewer class, I don't know
&lt;br&gt;how to answer that question.
&lt;br&gt;&lt;br&gt;&amp;gt; 2. I would like to put this logo also into the title bar... is that
&lt;br&gt;&amp;gt; possible?
&lt;br&gt;&lt;br&gt;Yes, I think that's what the &amp;quot;miniIcon&amp;quot; argument is for in
&lt;br&gt;FXMainWindow's constructor.
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26408751&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FXRuby--questions-about-fotos-tp26351832p26408751.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26351832</id>
	<title>FXRuby/ questions about fotos</title>
	<published>2009-11-14T08:55:05Z</published>
	<updated>2009-11-14T08:55:05Z</updated>
	<author>
		<name>Benjamin Sebastian Kolz</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;head&gt;

&lt;/head&gt;
&lt;body class='hmmessage'&gt;
Hi everybody,&lt;br&gt;&lt;br&gt;I've got two questions mainly about fotos in FX Ruby.&lt;br&gt;&lt;br&gt;I read the FX Ruby book and I'm using the &quot;scale to thumbnail&quot; method in my project.&lt;br&gt;&lt;br&gt;Extract from the main code:&lt;br&gt;&lt;br&gt;@logo=&quot;logo_small.jpeg&quot;&lt;br&gt;logo_load=ImageViewer.new(self,@logo)&lt;br&gt;&lt;br&gt;&lt;br&gt;1. How can I position the foto in the window? If I create a bottom, f. ex., I have&lt;br&gt;&amp;nbsp;&amp;nbsp; LAYOUT_EXPLICIT, :x =&amp;gt; 50, :y =&amp;gt; 200, :width =&amp;gt; 200, :height =&amp;gt; 200, but how can&lt;br&gt;&amp;nbsp;&amp;nbsp; I select the x- and y-value for the foto? Any idea?&lt;br&gt;&lt;br&gt;2. I would like to put this logo also into the title bar... is that possible?&lt;br&gt;&lt;br&gt;some code:&lt;br&gt;class Main_Window &amp;lt; FXMainWindow&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def self.toggle(nr, *args)&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @@switcher.setCurrent(nr) &amp;nbsp;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @@window[nr].set_text(args[0].to_s)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; def initialize(app)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; super(app, 'Title bar text', :width=&amp;gt;800, :height=&amp;gt;600)&amp;nbsp; # can I add a foto (logo) to the text in the title bar?&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; init_frameset&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;Thanks in advance for any response! Have a nice weekend&lt;br&gt;&amp;nbsp;Benjamin 		 	   		  &lt;br /&gt;&lt;hr /&gt;Windows 7 -  &lt;a href='http://redirect.gimas.net/?n=M0911MSWin7' target='_new' rel=&quot;nofollow&quot;&gt;jetzt entdecken!&lt;/a&gt;&lt;/body&gt;
&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26351832&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FXRuby--questions-about-fotos-tp26351832p26351832.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26322421</id>
	<title>Concerning the &quot;FXRuby&quot; forum at ruby-forum.com</title>
	<published>2009-11-12T09:02:12Z</published>
	<updated>2009-11-12T09:02:12Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">Andreas,
&lt;br&gt;&lt;br&gt;On your ruby-forum.com web site you include an &amp;quot;FXRuby&amp;quot; forum that is
&lt;br&gt;described as &amp;quot;fxruby-users mailing list&amp;quot;. I think this has probably
&lt;br&gt;led to a lot of frustration for people who post questions there
&lt;br&gt;(instead of on the real fxruby-users mailing list, hosted at
&lt;br&gt;RubyForge), since I don't monitor your forum and thus don't see those
&lt;br&gt;questions.
&lt;br&gt;&lt;br&gt;I don't want to tell you how to run your site, but I wonder if you
&lt;br&gt;could you at least add some kind of disclaimer that points people to
&lt;br&gt;the real mailing list, in case none of your forum readers are able to
&lt;br&gt;help them?
&lt;br&gt;&lt;br&gt;Thanks in advance,
&lt;br&gt;&lt;br&gt;Lyle
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26322421&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Concerning-the-%22FXRuby%22-forum-at-ruby-forum.com-tp26322421p26322421.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26309335</id>
	<title>Re: Not receiving FXTopWindow events</title>
	<published>2009-11-11T13:46:00Z</published>
	<updated>2009-11-11T13:46:00Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">On Wed, Nov 11, 2009 at 2:16 PM, Leslie Viljoen &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26309335&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leslieviljoen@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; I'm afraid I posted here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.ruby-forum.com/topic/199028&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ruby-forum.com/topic/199028&lt;/a&gt;&lt;br&gt;&amp;gt; ..before seeing that that forum looks almost totally dead. Should one
&lt;br&gt;&amp;gt; of these forums not be shut down to save people some time and false
&lt;br&gt;&amp;gt; hopes?  :-)
&lt;br&gt;&lt;br&gt;I agree with you, but it's not my forum to shut down. :) I don't have
&lt;br&gt;the bandwidth to monitor the Internet for all of these little
&lt;br&gt;discussion pockets. This mailing list has always been (and continues
&lt;br&gt;to be) the place for FXRuby chatter.
&lt;br&gt;&lt;br&gt;&amp;gt; So I'm going to repost here and reply there to close the topic, thus,
&lt;br&gt;&amp;gt; hopefully remaining a good netizen.
&lt;br&gt;&lt;br&gt;Thanks. ;)
&lt;br&gt;&lt;br&gt;&amp;gt; Here is my question:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am trying to listen for the FXTopWindow events SEL_CLOSE,
&lt;br&gt;&amp;gt; SEL_MINIMIZE, SEL_MAXIMIZE, SEL_RESTORE because I want to execute some
&lt;br&gt;&amp;gt; code when a person presses the X button to close the window, etc.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; None of my code gets executed though. Can anyone help?
&lt;br&gt;&lt;br&gt;Per the message found by Joey Kinsella (elsewhere in this thread) it
&lt;br&gt;sounds like the documentation for FXTopWindow needs to be corrected to
&lt;br&gt;reflect the fact that you only get SEL_MINIMIZE, SEL_MAXIMIZE,
&lt;br&gt;SEL_RESTORE and SEL_CLOSE when you call one of those FXTopWindow
&lt;br&gt;methods (e.g. FXTopWindow#maximize); otherwise you just get
&lt;br&gt;SEL_CONFIGURE. I'm not sure why the documentation wasn't corrected
&lt;br&gt;when that problem was originally reported.
&lt;br&gt;&lt;br&gt;Leslie, could you please file a bug report on this on the new bug
&lt;br&gt;tracker at Lighthouse?
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://fxruby.lighthouseapp.com/projects/40125-fxruby&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://fxruby.lighthouseapp.com/projects/40125-fxruby&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Lyle
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26309335&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Not-receiving-FXTopWindow-events-tp26307813p26309335.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26308269</id>
	<title>Re: Not receiving FXTopWindow events</title>
	<published>2009-11-11T12:39:51Z</published>
	<updated>2009-11-11T12:39:51Z</updated>
	<author>
		<name>Joey Kinsella</name>
	</author>
	<content type="html">As posted here:&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/programmatically-%22pushing%22-a-button-td14403676.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/programmatically-%22pushing%22-a-button-td14403676.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;It appears that when a user selects Maximize or Minimize it actually sends SEL_CONFIGURE.&lt;br&gt;
&lt;br&gt;Hope that helps.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Nov 11, 2009 at 3:16 PM, Leslie Viljoen &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26308269&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leslieviljoen@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
Hi everyone&lt;br&gt;
&lt;br&gt;
I&amp;#39;m afraid I posted here:&lt;br&gt;
&lt;a href=&quot;http://www.ruby-forum.com/topic/199028&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.ruby-forum.com/topic/199028&lt;/a&gt;&lt;br&gt;
..before seeing that that forum looks almost totally dead. Should one&lt;br&gt;
of these forums not be shut down to save people some time and false&lt;br&gt;
hopes?  :-)&lt;br&gt;
&lt;br&gt;
So I&amp;#39;m going to repost here and reply there to close the topic, thus,&lt;br&gt;
hopefully remaining a good netizen.&lt;br&gt;
&lt;br&gt;
Here is my question:&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
I am trying to listen for the FXTopWindow events SEL_CLOSE,&lt;br&gt;
SEL_MINIMIZE, SEL_MAXIMIZE, SEL_RESTORE because I want to execute some&lt;br&gt;
code when a person presses the X button to close the window, etc.&lt;br&gt;
&lt;br&gt;
None of my code gets executed though. Can anyone help?&lt;br&gt;
&lt;br&gt;
class TextDialog&lt;br&gt;
  def initialize(parent)&lt;br&gt;
    construct_widget_tree(parent)&lt;br&gt;
    init if respond_to? &amp;#39;init&amp;#39;&lt;br&gt;
  end&lt;br&gt;
&lt;br&gt;
  def construct_widget_tree(parent)&lt;br&gt;
    @topwin = FXMainWindow.new(parent, &amp;#39;title&amp;#39;)&lt;br&gt;
    @topwin.width = 300&lt;br&gt;
    @topwin.height = 200&lt;br&gt;
  end&lt;br&gt;
&lt;br&gt;
  attr_reader :topwin&lt;br&gt;
end&lt;br&gt;
&lt;br&gt;
if __FILE__==$0&lt;br&gt;
  require &amp;#39;fox16&amp;#39;&lt;br&gt;
  include Fox&lt;br&gt;
&lt;br&gt;
  app=FXApp.new&lt;br&gt;
  w=TextDialog.new(app)&lt;br&gt;
&lt;br&gt;
  w.topwin.connect(SEL_CLOSE) { app.exit }&lt;br&gt;
  w.topwin.connect(SEL_MINIMIZE) { puts &amp;quot;MIN&amp;quot; }&lt;br&gt;
  w.topwin.connect(SEL_MAXIMIZE) { puts &amp;quot;MAX&amp;quot; }&lt;br&gt;
  w.topwin.connect(SEL_RESTORE) { puts &amp;quot;RESTORE&amp;quot; }&lt;br&gt;
&lt;br&gt;
  w.topwin.show&lt;br&gt;
  app.create&lt;br&gt;
  app.run&lt;br&gt;
end&lt;br&gt;
_______________________________________________&lt;br&gt;
fxruby-users mailing list&lt;br&gt;
&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26308269&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;&lt;br&gt;
&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;

&lt;pre&gt;--
If you are not the intended recipient, you are hereby notified
that any dissemination, distribution, copying or other use of
this communication is strictly prohibited.  If you have
received this communication in error, please notify us
immediately.
&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26308269&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Not-receiving-FXTopWindow-events-tp26307813p26308269.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26307813</id>
	<title>Not receiving FXTopWindow events</title>
	<published>2009-11-11T12:16:22Z</published>
	<updated>2009-11-11T12:16:22Z</updated>
	<author>
		<name>Leslie Viljoen-2</name>
	</author>
	<content type="html">Hi everyone
&lt;br&gt;&lt;br&gt;I'm afraid I posted here:
&lt;br&gt;&lt;a href=&quot;http://www.ruby-forum.com/topic/199028&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ruby-forum.com/topic/199028&lt;/a&gt;&lt;br&gt;..before seeing that that forum looks almost totally dead. Should one
&lt;br&gt;of these forums not be shut down to save people some time and false
&lt;br&gt;hopes? &amp;nbsp;:-)
&lt;br&gt;&lt;br&gt;So I'm going to repost here and reply there to close the topic, thus,
&lt;br&gt;hopefully remaining a good netizen.
&lt;br&gt;&lt;br&gt;Here is my question:
&lt;br&gt;&lt;br&gt;&lt;br&gt;I am trying to listen for the FXTopWindow events SEL_CLOSE,
&lt;br&gt;SEL_MINIMIZE, SEL_MAXIMIZE, SEL_RESTORE because I want to execute some
&lt;br&gt;code when a person presses the X button to close the window, etc.
&lt;br&gt;&lt;br&gt;None of my code gets executed though. Can anyone help?
&lt;br&gt;&lt;br&gt;class TextDialog
&lt;br&gt;&amp;nbsp; def initialize(parent)
&lt;br&gt;&amp;nbsp; &amp;nbsp; construct_widget_tree(parent)
&lt;br&gt;&amp;nbsp; &amp;nbsp; init if respond_to? 'init'
&lt;br&gt;&amp;nbsp; end
&lt;br&gt;&lt;br&gt;&amp;nbsp; def construct_widget_tree(parent)
&lt;br&gt;&amp;nbsp; &amp;nbsp; @topwin = FXMainWindow.new(parent, 'title')
&lt;br&gt;&amp;nbsp; &amp;nbsp; @topwin.width = 300
&lt;br&gt;&amp;nbsp; &amp;nbsp; @topwin.height = 200
&lt;br&gt;&amp;nbsp; end
&lt;br&gt;&lt;br&gt;&amp;nbsp; attr_reader :topwin
&lt;br&gt;end
&lt;br&gt;&lt;br&gt;if __FILE__==$0
&lt;br&gt;&amp;nbsp; require 'fox16'
&lt;br&gt;&amp;nbsp; include Fox
&lt;br&gt;&lt;br&gt;&amp;nbsp; app=FXApp.new
&lt;br&gt;&amp;nbsp; w=TextDialog.new(app)
&lt;br&gt;&lt;br&gt;&amp;nbsp; w.topwin.connect(SEL_CLOSE) { app.exit }
&lt;br&gt;&amp;nbsp; w.topwin.connect(SEL_MINIMIZE) { puts &amp;quot;MIN&amp;quot; }
&lt;br&gt;&amp;nbsp; w.topwin.connect(SEL_MAXIMIZE) { puts &amp;quot;MAX&amp;quot; }
&lt;br&gt;&amp;nbsp; w.topwin.connect(SEL_RESTORE) { puts &amp;quot;RESTORE&amp;quot; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; w.topwin.show
&lt;br&gt;&amp;nbsp; app.create
&lt;br&gt;&amp;nbsp; app.run
&lt;br&gt;end
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26307813&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Not-receiving-FXTopWindow-events-tp26307813p26307813.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26275091</id>
	<title>[ANN] FXRuby 1.6.20 Now Available</title>
	<published>2009-11-09T14:43:18Z</published>
	<updated>2009-11-09T14:43:18Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">All,
&lt;br&gt;&lt;br&gt;FXRuby version 1.6.20 is now available for download.
&lt;br&gt;&lt;br&gt;This release is primarily a transitional one, intended to prove out
&lt;br&gt;the significant changes to the development environment. Earlier this
&lt;br&gt;year, the FXRuby source code repository was moved from Subversion
&lt;br&gt;(hosted at RubyForge) to Git (hosted at GitHub). More recently, I've
&lt;br&gt;revamped the build system, replacing some custom scripts with a more
&lt;br&gt;standardized process based on the Hoe and rake-compiler extensions to
&lt;br&gt;Rake. The intent of these changes is to make it easier for interested
&lt;br&gt;parties to participate in FXRuby's development. As a result, despite a
&lt;br&gt;good bit of code churn, there are (by design) no significant
&lt;br&gt;functional differences between this release and version 1.6.19. For a
&lt;br&gt;summary of the changes in this release of FXRuby, please see this
&lt;br&gt;page:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.fxruby.org/doc/changes.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fxruby.org/doc/changes.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Enjoy,
&lt;br&gt;&lt;br&gt;Lyle
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26275091&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-ANN--FXRuby-1.6.20-Now-Available-tp26275091p26275091.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26274363</id>
	<title>Re: FXRuby table and color questions</title>
	<published>2009-11-09T13:51:00Z</published>
	<updated>2009-11-09T13:51:00Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">On Mon, Nov 9, 2009 at 1:38 PM, Leslie Viljoen &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26274363&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leslieviljoen@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Does the Fox toolkit support partial transparency?
&lt;br&gt;&lt;br&gt;Not as far as I know.
&lt;br&gt;&lt;br&gt;When you assign an icon image to a widget (usually a label or button),
&lt;br&gt;FOX will honor any regions identified as fully transparent in the
&lt;br&gt;image. For PNGs, it uses the alpha channel to identify regions where
&lt;br&gt;alpha is zero; for other image types it can guess the transparent
&lt;br&gt;color or you can specify it explicitly.
&lt;br&gt;&lt;br&gt;&amp;gt; Also, is it possible to give different background colours to each cell
&lt;br&gt;&amp;gt; in a FXTable? The documentation seems to
&lt;br&gt;&amp;gt; skirt past this issue with a setCellColor function which only provides
&lt;br&gt;&amp;gt; for global shading of every second row/col.
&lt;br&gt;&amp;gt; Maybe I am missing something obvious?
&lt;br&gt;&lt;br&gt;You aren't missing anything. All you can achieve with the table, short
&lt;br&gt;of maybe subclassing it and overriding the drawing behavior, is set
&lt;br&gt;alternating cell colors.
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26274363&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-FXRuby-table-and-color-questions-tp26274363p26274363.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26238491</id>
	<title>Re: Timer function usage</title>
	<published>2009-11-06T12:58:39Z</published>
	<updated>2009-11-06T12:58:39Z</updated>
	<author>
		<name>Meinrad Recheis</name>
	</author>
	<content type="html">lol, you are trying around pretty crazy things :) .. I&amp;#39;ll give you a hint: you better not try around so much and instead read the docs more precisely.&lt;br&gt;&lt;br&gt;read this &lt;br&gt;&lt;a href=&quot;http://www.fxruby.org/doc/events.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fxruby.org/doc/events.html&lt;/a&gt;&lt;br&gt;
here it is written pretty unmistakable how to do it. with working code!&lt;br&gt;-- henon&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Nov 6, 2009 at 7:48 AM, dave L &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26238491&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dglnz@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;&lt;div&gt;Well just tried this code now and got the error below it.&lt;/div&gt;

&lt;div&gt; &lt;/div&gt;
&lt;div&gt; def hello&lt;br&gt;     &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26238491&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;%23@...&lt;/a&gt;)&lt;br&gt;     puts &amp;#39;hello&amp;#39;&lt;br&gt;  end&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; def init       &lt;br&gt; &lt;br&gt;    @topwin.resize(958,670)&lt;div class=&quot;im&quot;&gt;&lt;br&gt;     &lt;br&gt;     aTimer = @topwin.addTimeout(1000, method(:hello))&lt;br&gt;&lt;/div&gt;....&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;end&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;&amp;gt;rubyw mymainwin3.rbw&lt;br&gt;mymainwin3.rbw:39:in `init&amp;#39;: undefined method `addTimeout&amp;#39; for #&amp;lt;FX::MainWindow:0x40636ec&amp;gt; (NoMethodError)&lt;br&gt; from ./multitabwin3.rb:6:in `initialize&amp;#39;&lt;br&gt; from mymainwin3.rbw:13:in `initialize&amp;#39;&lt;br&gt;
 from mymainwin3.rbw:106:in `new&amp;#39;&lt;br&gt; from mymainwin3.rbw:106&lt;br&gt;&amp;gt;Exit code: 1&lt;br&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;because of this error think i had tried other variations as per my original email to you.&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;have also tried aTimer = addTimeout.new and also added in a require &amp;#39;timeout&amp;#39; statement into the program just in case i had to add in the file without realising it from documentation.&lt;/div&gt;

&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;Now i&amp;#39;ve tried something a bit left field.&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;this is my thinking be it right or wrong...&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;because the error shown implies there is NO object created i added this in the unit test code...&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;#unit test&lt;br&gt;if __FILE__==$0&lt;br&gt; require &amp;#39;libGUIb16&amp;#39;  &lt;br&gt; app=FX::App.new&lt;br&gt; w=Fxwindow_code.new app&lt;br&gt; w.topwin.show(Fox::PLACEMENT_SCREEN)&lt;br&gt;
  @aTimer = app.addTimeout.new&amp;lt;&amp;lt;&amp;lt;&amp;lt; in case i needed to create the object 1st.&lt;br&gt; app.create&lt;br&gt; app.run&lt;br&gt;end&lt;br&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;now i have this code&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;giving me the error below...&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;  def init       &lt;br&gt; &lt;br&gt;    @topwin.resize(958,670)&lt;br&gt;     &lt;br&gt;    @aTimer {1000 :hello}&lt;br&gt;&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;&amp;gt;rubyw mymainwin3.rbw&lt;br&gt;mymainwin3.rbw:39: syntax error, unexpected &amp;#39;{&amp;#39;, expecting kEND&lt;br&gt;    @aTimer {1000 :hello}&lt;br&gt;             ^&lt;br&gt;
&amp;gt;Exit code: 1&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;have tried replacing the {} with DO and END but got an error $end expected.&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;tried brackets but got unexpected () encountered.&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;could you send me a work piece of code?&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;like a listbox , toggle button&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;push button and timer is started, after timeout text apended to the listbox, push button again and timeout is removed?&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;that way i can see what errors i get (esp if you wroked sample fails).&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;rgds,&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;Dave.&lt;/div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt; &lt;/div&gt;
&lt;div style=&quot;font-family: times new roman,new york,times,serif; font-size: 12pt;&quot;&gt;&lt;font face=&quot;Tahoma&quot; size=&quot;2&quot;&gt;
&lt;hr size=&quot;1&quot;&gt;&lt;div class=&quot;im&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;From:&lt;/span&gt;&lt;/b&gt; Meinrad Recheis &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26238491&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;meinrad.recheis@...&lt;/a&gt;&amp;gt;&lt;br&gt;&lt;/div&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;To:&lt;/span&gt;&lt;/b&gt; dave L &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26238491&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dglnz@...&lt;/a&gt;&amp;gt;&lt;div class=&quot;im&quot;&gt;
&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Cc:&lt;/span&gt;&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26238491&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Sent:&lt;/span&gt;&lt;/b&gt; Thu, 5 November, 2009 11:05:39 PM&lt;div class=&quot;im&quot;&gt;
&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Subject:&lt;/span&gt;&lt;/b&gt; Re: Timer function usage&lt;br&gt;&lt;/div&gt;&lt;/font&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&lt;br&gt;you need to give it a method:&lt;br&gt;&lt;br&gt;&lt;pre&gt;aTimer = @topwin.addTimeout(1000, method(:hello))&lt;/pre&gt;
&lt;br&gt;hth,&lt;br&gt;-- henon&lt;br&gt;&lt;br&gt;
&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 5, 2009 at 9:42 AM, dave L &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26238491&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dglnz@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot; class=&quot;gmail_quote&quot;&gt;
&lt;div&gt;
&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;
&lt;div&gt;Hi Meinrad,&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I have been battling with trying to get the timer event to work - wanting to have an event/methd run every X minutes.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;from my reading of things this should work but it fails with no methoderror.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; aTimer = @topwin.addTimeout(1000, (:hello))&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Hello is a define method further up in code - currently it puts hello to a listbox every second as proof of it working.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;also tried this.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;aTimer = Timer.new&lt;/div&gt;
&lt;div&gt;aTimer = @topwin.addTimeout(1000, (:hello))&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;my ultimate aim is to have it reset after countdown so it&amp;#39;s a continous timer to fire an event that will request a read from a database (thinking in memory SQLlite at present) and refresh the listbox.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Oh i did get over my other issues (more of a work around but still) - that&amp;#39;s all working now &amp;lt;sheepish grin&amp;gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;dave.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;&lt;/div&gt;&lt;br&gt;Email slow, clunky, unreliable? &lt;a href=&quot;http://au.rd.yahoo.com/nz/mail/tagline/2009/mailsignup/*http://yahoo.co.nz/mail&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;Switch to Yahoo!Xtra Mail&lt;/a&gt;, New Zealand&amp;#39;s new email address.&lt;/div&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;


      Need mail bonding? Bring all your contacts to Yahoo!Xtra with &lt;a href=&quot;http://au.rd.yahoo.com/nz/mail/tagline/2009/trueswitch/*http://help.yahoo.com/l/nz/yahooxtra/mail/yahoomail/manage/manage-66.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;TrueSwitch&lt;/a&gt;&lt;/div&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26238491&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Timer-function-usage-tp26212000p26238491.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26212000</id>
	<title>Re: Timer function usage</title>
	<published>2009-11-05T02:05:39Z</published>
	<updated>2009-11-05T02:05:39Z</updated>
	<author>
		<name>Meinrad Recheis</name>
	</author>
	<content type="html">you need to give it a method:&lt;br&gt;&lt;br&gt;&lt;pre class=&quot;programlisting&quot;&gt;aTimer = @topwin.addTimeout(1000, method(:hello))&lt;/pre&gt;&lt;br&gt;hth,&lt;br&gt;-- henon&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 5, 2009 at 9:42 AM, dave L &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26212000&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dglnz@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;&lt;div&gt;Hi Meinrad,&lt;/div&gt;

&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I have been battling with trying to get the timer event to work - wanting to have an event/methd run every X minutes.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;from my reading of things this should work but it fails with no methoderror.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; aTimer = @topwin.addTimeout(1000, (:hello))&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Hello is a define method further up in code - currently it puts hello to a listbox every second as proof of it working.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;also tried this.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;aTimer = Timer.new&lt;/div&gt;
&lt;div&gt;aTimer = @topwin.addTimeout(1000, (:hello))&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;my ultimate aim is to have it reset after countdown so it&amp;#39;s a continous timer to fire an event that will request a read from a database (thinking in memory SQLlite at present) and refresh the listbox.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Oh i did get over my other issues (more of a work around but still) - that&amp;#39;s all working now &amp;lt;sheepish grin&amp;gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;dave.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;&lt;/div&gt;&lt;br&gt;


      Email slow, clunky, unreliable? &lt;a href=&quot;http://au.rd.yahoo.com/nz/mail/tagline/2009/mailsignup/*http://yahoo.co.nz/mail&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Switch to Yahoo!Xtra Mail&lt;/a&gt;, New Zealand&amp;#39;s new email address.&lt;/div&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26212000&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Timer-function-usage-tp26212000p26212000.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26159416</id>
	<title>Timer control</title>
	<published>2009-11-01T23:51:01Z</published>
	<updated>2009-11-01T23:51:01Z</updated>
	<author>
		<name>dglnz</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:arial,helvetica,sans-serif;font-size:10pt&quot;&gt;&lt;div&gt;Was wondering if anyone could via small piece of code show how a timer is envoked.&lt;br&gt;&lt;br&gt;Sometimes (at least for me) a worked sample (with some documentation) is better than having something explained in words.&lt;br&gt;&lt;br&gt;I would be grateful,&lt;br&gt;&lt;br&gt;Dave&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;!-- cg1.c901.mail.mud.yahoo.com compressed/chunked Sun Nov  1 23:47:15 PST 2009 --&gt;
&lt;/div&gt;&lt;br&gt;


      Email slow, clunky, unreliable? &lt;a href=http://au.rd.yahoo.com/nz/mail/tagline/2009/mailsignup/*http://yahoo.co.nz/mail target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Switch to Yahoo!Xtra Mail&lt;/a&gt;, New Zealand&amp;#39;s new email address.&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26159416&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Timer-control-tp26159416p26159416.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26068278</id>
	<title>On Moving Away from RubyForge Services</title>
	<published>2009-10-26T14:46:26Z</published>
	<updated>2009-10-26T14:46:26Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">All,
&lt;br&gt;&lt;br&gt;As some of you may have heard, the default gem hosting repository will &amp;nbsp;
&lt;br&gt;soon transition away from RubyForge.org to a new site, RubyGems.org &amp;nbsp;
&lt;br&gt;(aka Gemcutter.org). Coincident with this transition will be a gradual &amp;nbsp;
&lt;br&gt;(?) phasing out of other RubyForge services, which I've written about &amp;nbsp;
&lt;br&gt;here:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://lylejohnson.name/blog/2009/10/26/wait-what-was-that-last-bit/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lylejohnson.name/blog/2009/10/26/wait-what-was-that-last-bit/&lt;/a&gt;&lt;br&gt;&lt;br&gt;As I write near the end of that piece, I'm starting to think about &amp;nbsp;
&lt;br&gt;where some of these services (namely, FXRuby's bug tracker and mailing &amp;nbsp;
&lt;br&gt;list) should land after the dust settles. I list a couple of &amp;nbsp;
&lt;br&gt;possibilities in the blog, but I'd like to open up discussion here as &amp;nbsp;
&lt;br&gt;well for anyone who has opinions and experiences to offer. So, chime &amp;nbsp;
&lt;br&gt;in as you feel led!
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Lyle
&lt;br&gt;&lt;br&gt;&lt;br&gt;---
&lt;br&gt;&amp;quot;FXRuby: Create Lean and Mean GUIs with Ruby&amp;quot;
&lt;br&gt;Now available from the Pragmatic Bookshelf!
&lt;br&gt;&lt;a href=&quot;http://www.pragprog.com/titles/fxruby&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.pragprog.com/titles/fxruby&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26068278&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/On-Moving-Away-from-RubyForge-Services-tp26068278p26068278.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26046501</id>
	<title>Tabbook tabitem controls</title>
	<published>2009-10-25T03:06:13Z</published>
	<updated>2009-10-25T03:06:13Z</updated>
	<author>
		<name>dglnz</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:arial,helvetica,sans-serif;font-size:10pt&quot;&gt;&lt;div&gt;Hi,&lt;br&gt;&lt;br&gt;(note - I use foxGUIb for the GUI placement of controls)&lt;br&gt;&lt;br&gt;had a an issue with the tabbed books control - namely after working on the 1st tab for most of the time i am now at a point where i can move onto the 2nd tab.&lt;br&gt;&lt;br&gt;To reduce the amount of code sitting inside init of my event handling program i moved a lot of methods i'd written to another file.&lt;br&gt;&lt;br&gt;I then proceeded to work on my 2nd tab with regards to creating the event hooks, BUT found that event my calls to &lt;br&gt;another file that had worked perfectly failed! plus my calls to methods in my newly created file failed.&lt;br&gt;&lt;br&gt;but when i got back to my 1st tab things worked again - NO PROBLEMS NO CRASHES! even calls to methods within the same file as my event code failed.&lt;br&gt;&lt;br&gt;All these said that there was no
 method...&lt;br&gt;&lt;br&gt;Tonight i added these lines...&lt;br&gt;&lt;br&gt;#@PStabitem2.shown = true&lt;br&gt;#@PStabitem2.enabled = true&lt;br&gt;#@PStabitem2.visible = true&lt;br&gt;&lt;br&gt;then things started to work, so i uncommented a method i had created and things worked, so i then copied the code and put them in another file (one i created when i started work on the 2nd tab) and the calls passed no problems.&lt;br&gt;&lt;br&gt;So as an exercise I commented each line above to see what the change was but the code worked even with all 4 lines commented as i show then above the code works.&lt;br&gt;&lt;br&gt;what gives? &lt;br&gt;&lt;br&gt;I actually created another file deleting all references the controls etc associated with the 1st tab.&lt;br&gt;Even this didn't help my problems and I'm wondering if there is a &quot;bug&quot; that isn't mentioned in the API?&lt;br&gt;&lt;br&gt;I mean I would have thought that if one clicks on a tab then within the code it would have a method at least to say activate (mean although you see the controls they need some
 primer work done so they act as expected).&lt;br&gt;&lt;br&gt;If anyone can give me an explanation on why I've had this problem I'd be grateful.&lt;br&gt;I've googled, api'd forumed for a week now any only got it going by a fluke!&lt;br&gt;&lt;br&gt;Also i can't use any of the codes in keys.rb.&lt;br&gt;&lt;br&gt;wanting to use function keys like F11 and F9 but i cannot do this as expected...&lt;br&gt;&lt;br&gt;ACONTROL.connect(SEL_KEYPRESS){&lt;br&gt;&amp;nbsp;&amp;nbsp; if keycode == KEY_F9&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Do know that the keycode is an error but i didn't know at first.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do something&lt;br&gt;&amp;nbsp;&amp;nbsp; end&lt;br&gt;}&lt;br&gt;&lt;br&gt;Now i had come across a posting from Lyle saying you used event.code to trap the keypress value.&lt;br&gt;so i tried doing a puts &quot;key pressed = #{event.code} was&quot; type statement but it failed with errors&lt;br&gt;&lt;br&gt;I do understand foxGUIb hasn't got the best documentation but would have thought this would've been somewhere in the fxruby forums before
 now.&lt;br&gt;&lt;br&gt;Henon has helped be over this problem (but i cannot detect F key presses) in so far as i have this....&lt;br&gt;&lt;br&gt;ACONTROL.connect(SELKEYPRESS){}a,b,event|&lt;br&gt;&amp;nbsp; if event.code = '97'&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; do something - I cannot trap with KEY_a or any other constant in KEYS.rb&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F keys - I use theinteger values and use them in code - not the best.&lt;br&gt;&amp;nbsp; end&lt;br&gt;}&lt;br&gt;&lt;br&gt;again WHY?&lt;br&gt;&lt;br&gt;where is the error code when i use KEY_ defined in keys.rb file.&lt;br&gt;I don't require the file in code (and when i did try this earlier in the day it still didn't help - even with using extend statement.&lt;br&gt;&lt;br&gt;&amp;gt;rubyw mymainwin3.rbw&lt;br&gt;mymainwin3.rbw:39:in `init': uninitialized constant Fxwindow_code::KEY_Escape (NameError)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from C:/Ruby1.8/lib/ruby/gems/1.8/gems/fxruby-1.6.16-x86-mswin32-60/lib/fox16/responder2.rb:55:in `call'&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from
 C:/Ruby1.8/lib/ruby/gems/1.8/gems/fxruby-1.6.16-x86-mswin32-60/lib/fox16/responder2.rb:55:in `onHandleMsg'&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from mymainwin3.rbw:82:in `run'&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; from mymainwin3.rbw:82&lt;br&gt;&amp;gt;Exit code: 1&lt;br&gt;&lt;br&gt;and here is the actual code snippet - I was using the numbers (currently commented out to the left and it worked)&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; @PSlist2.connect(Fox::SEL_KEYPRESS){|a,b,event|&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case event.code&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when KEY_Escape #65307&amp;nbsp; #Escape key pressed&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; change_radio_status 3&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when KEY_F9 #65478 # F9 pressed&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; change_radio_status 4&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when KEY_F5 #65474 #F5
 pressed&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; change_radio_status 2&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when KEY_F1 #65470 #F1 pressed&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; change_radio_status 1&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;&lt;br&gt;Rgds,&lt;br&gt;&lt;br&gt;Dave.&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;!-- cg2.c901.mail.mud.yahoo.com compressed/chunked Sun Oct 25 02:32:09 PDT 2009 --&gt;
&lt;/div&gt;&lt;br&gt;


      Email slow, clunky, unreliable? &lt;a href=http://au.rd.yahoo.com/nz/mail/tagline/2009/mailsignup/*http://yahoo.co.nz/mail target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Switch to Yahoo!Xtra Mail&lt;/a&gt;, New Zealand&amp;#39;s new email address.&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26046501&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tabbook-tabitem-controls-tp26046501p26046501.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26000774</id>
	<title>Re: Pre-release FXRuby binary gems for testing</title>
	<published>2009-10-21T14:45:35Z</published>
	<updated>2009-10-21T14:45:35Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">&lt;br&gt;On Oct 21, 2009, at 4:30 PM, Amber Vaesca wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; That did the trick; text looks great! Everything seems to be working &amp;nbsp;
&lt;br&gt;&amp;gt; flawlessly; but I'm not really *trying* to break anything. Thanks &amp;nbsp;
&lt;br&gt;&amp;gt; for this; you made my week. :)
&lt;br&gt;&lt;br&gt;No, thank you! Having independent confirmation that it works is a huge &amp;nbsp;
&lt;br&gt;help. Let me know if you spot anything unusual with it.
&lt;br&gt;&lt;br&gt;&lt;br&gt;---
&lt;br&gt;&amp;quot;FXRuby: Create Lean and Mean GUIs with Ruby&amp;quot;
&lt;br&gt;Now available from the Pragmatic Bookshelf!
&lt;br&gt;&lt;a href=&quot;http://www.pragprog.com/titles/fxruby&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.pragprog.com/titles/fxruby&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26000774&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pre-release-FXRuby-binary-gems-for-testing-tp25982203p26000774.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26000603</id>
	<title>Re: Pre-release FXRuby binary gems for testing</title>
	<published>2009-10-21T14:30:31Z</published>
	<updated>2009-10-21T14:30:31Z</updated>
	<author>
		<name>Amber Vaesca</name>
	</author>
	<content type="html">Lyle Johnson wrote:
&lt;br&gt;&lt;br&gt;&amp;gt;&amp;gt; The MacPorts installation that I have produces anti-aliased text in &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; all of the widgets, but the gem does not. I'm guessing this has &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; something to do with a FreeType library installation or something, &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; but it if doesn't bloat the gem much, that might be a good thing to &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; include.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It took a little experimentation, but I think I've got it working. I &amp;nbsp;
&lt;br&gt;&amp;gt; replaced the previous copy of the gem in my Dropbox with a new one &amp;nbsp;
&lt;br&gt;&amp;gt; built with Xft support; for reference, the link is...
&lt;br&gt;&lt;br&gt;That did the trick; text looks great! Everything seems to be working &amp;nbsp;
&lt;br&gt;flawlessly; but I'm not really *trying* to break anything. Thanks for &amp;nbsp;
&lt;br&gt;this; you made my week. :)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;AmberV
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26000603&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pre-release-FXRuby-binary-gems-for-testing-tp25982203p26000603.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25999635</id>
	<title>Re: Pre-release FXRuby binary gems for testing</title>
	<published>2009-10-21T13:19:10Z</published>
	<updated>2009-10-21T13:19:10Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">&lt;br&gt;On Oct 21, 2009, at 12:07 PM, Amber Vaesca wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I gave the new Snow Leopard friendly gem a whirl on my newish &amp;nbsp;
&lt;br&gt;&amp;gt; MacBook Pro, and an older MacPro tower. Both installations went &amp;nbsp;
&lt;br&gt;&amp;gt; fine, and I was able to execute my applications and FoxGUIb, without &amp;nbsp;
&lt;br&gt;&amp;gt; any issues save but one minor thing:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The MacPorts installation that I have produces anti-aliased text in &amp;nbsp;
&lt;br&gt;&amp;gt; all of the widgets, but the gem does not. I'm guessing this has &amp;nbsp;
&lt;br&gt;&amp;gt; something to do with a FreeType library installation or something, &amp;nbsp;
&lt;br&gt;&amp;gt; but it if doesn't bloat the gem much, that might be a good thing to &amp;nbsp;
&lt;br&gt;&amp;gt; include.
&lt;/div&gt;&lt;br&gt;It took a little experimentation, but I think I've got it working. I &amp;nbsp;
&lt;br&gt;replaced the previous copy of the gem in my Dropbox with a new one &amp;nbsp;
&lt;br&gt;built with Xft support; for reference, the link is:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-universal-darwin-10.gem&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-universal-darwin-10.gem&lt;/a&gt;&lt;br&gt;&lt;br&gt;Make sure that you uninstall the gem you previously installed:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sudo gem uninstall FXRuby
&lt;br&gt;&lt;br&gt;and then download and install this new one. Let me know how it goes!
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25999635&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pre-release-FXRuby-binary-gems-for-testing-tp25982203p25999635.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25997032</id>
	<title>Re: Pre-release FXRuby binary gems for testing</title>
	<published>2009-10-21T10:43:49Z</published>
	<updated>2009-10-21T10:43:49Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">&lt;br&gt;On Oct 21, 2009, at 12:07 PM, Amber Vaesca wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;&amp;gt; If you have the time and are willing to be a guinea pig, please &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; download and give it a short (and let me know how it goes). &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; Remember, the goal here is that the end-user doesn't have to have &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; any of FOX's numerous dependencies preinstalled to use these.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I gave the new Snow Leopard friendly gem a whirl on my newish &amp;nbsp;
&lt;br&gt;&amp;gt; MacBook Pro, and an older MacPro tower. Both installations went &amp;nbsp;
&lt;br&gt;&amp;gt; fine, and I was able to execute my applications and FoxGUIb, without &amp;nbsp;
&lt;br&gt;&amp;gt; any issues save but one minor thing:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The MacPorts installation that I have produces anti-aliased text in &amp;nbsp;
&lt;br&gt;&amp;gt; all of the widgets, but the gem does not. I'm guessing this has &amp;nbsp;
&lt;br&gt;&amp;gt; something to do with a FreeType library installation or something, &amp;nbsp;
&lt;br&gt;&amp;gt; but it if doesn't bloat the gem much, that might be a good thing to &amp;nbsp;
&lt;br&gt;&amp;gt; include.
&lt;/div&gt;&lt;br&gt;Ah! This is good information. Yes, I'll check into that and see what &amp;nbsp;
&lt;br&gt;needs to be done. Thanks for the feedback, and I'm glad to hear that &amp;nbsp;
&lt;br&gt;the gem basically works!
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25997032&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pre-release-FXRuby-binary-gems-for-testing-tp25982203p25997032.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25996864</id>
	<title>Re: Pre-release FXRuby binary gems for testing</title>
	<published>2009-10-21T10:07:21Z</published>
	<updated>2009-10-21T10:07:21Z</updated>
	<author>
		<name>Amber Vaesca</name>
	</author>
	<content type="html">&amp;gt; If you have the time and are willing to be a guinea pig, please &amp;nbsp;
&lt;br&gt;&amp;gt; download and give it a short (and let me know how it goes). &amp;nbsp;
&lt;br&gt;&amp;gt; Remember, the goal here is that the end-user doesn't have to have &amp;nbsp;
&lt;br&gt;&amp;gt; any of FOX's numerous dependencies preinstalled to use these.
&lt;br&gt;&lt;br&gt;I gave the new Snow Leopard friendly gem a whirl on my newish MacBook &amp;nbsp;
&lt;br&gt;Pro, and an older MacPro tower. Both installations went fine, and I &amp;nbsp;
&lt;br&gt;was able to execute my applications and FoxGUIb, without any issues &amp;nbsp;
&lt;br&gt;save but one minor thing:
&lt;br&gt;&lt;br&gt;The MacPorts installation that I have produces anti-aliased text in &amp;nbsp;
&lt;br&gt;all of the widgets, but the gem does not. I'm guessing this has &amp;nbsp;
&lt;br&gt;something to do with a FreeType library installation or something, but &amp;nbsp;
&lt;br&gt;it if doesn't bloat the gem much, that might be a good thing to include.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;AmberV
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25996864&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pre-release-FXRuby-binary-gems-for-testing-tp25982203p25996864.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25995113</id>
	<title>Re: Pre-release FXRuby binary gems for testing</title>
	<published>2009-10-21T08:40:31Z</published>
	<updated>2009-10-21T08:40:31Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Oct 21, 2009 at 9:45 AM, Lyle Johnson &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25995113&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lyle@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;/div&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
&lt;div style=&quot;word-wrap:break-word&quot;&gt;&lt;div&gt;OK, I do have a virtual machine with Ubuntu 9.04 around here somewhere. I will try to put something together and we&amp;#39;ll see if it works.&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;
Dave,&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Here is a native gem for Ubuntu 9.04:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;    &lt;a href=&quot;http://lylejohnson.name/FXRuby-1.6.20-x86-linux.gem&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lylejohnson.name/FXRuby-1.6.20-x86-linux.gem&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Why don&amp;#39;t you try downloading that gem, then type&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;    sudo gem install FXRuby-1.6.20-x86-linux.gem&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;and let&amp;#39;s see what happens. ;)&lt;/div&gt;&lt;div&gt;&lt;br&gt;
&lt;/div&gt;&lt;div&gt;Lyle&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;P.S. This obviously goes for anyone else who&amp;#39;s in the mood to help out with testing.&lt;/div&gt;&lt;/div&gt;
&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25995113&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pre-release-FXRuby-binary-gems-for-testing-tp25982203p25995113.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25994188</id>
	<title>Re: Pre-release FXRuby binary gems for testing</title>
	<published>2009-10-21T07:45:32Z</published>
	<updated>2009-10-21T07:45:32Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;base href=&quot;x-msg://13/&quot;&gt;&lt;/head&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Oct 21, 2009, at 1:18 AM, dave L wrote:&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; &quot;&gt;&lt;div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, helvetica, sans-serif; font-size: 10pt; &quot;&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;If you have something for linux then i'd be happy to test it.&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;I don't have anything precompiled for Linux, but I guess I could try to put something together. The problem is that there are so many variables that come into play with Linux, and I'm not sure which ones of them are significant. For example, I know that it matters which version of Ruby you've installed (FXRuby built against Ruby 1.8 won't work with Ruby 1.9, and vice-versa). But I don't know if it matters, for example, if I'm running Linux kernel version X and you're running Linux kernel version Y, etc.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; &quot;&gt;&lt;div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, helvetica, sans-serif; font-size: 10pt; &quot;&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;You may have figured I'm not the brightest light bulb in the pack when it comes to ruby&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;img src=&quot;http://mail.yimg.com/a/i/mesg/tsmileys2/03.gif&quot;&gt;&lt;span class=&quot;Apple-converted-space&quot;&gt;&amp;nbsp;&lt;/span&gt;but I do try to sort issues i have out before posting and then i carry on trying.&lt;br&gt;&lt;br&gt;I use Meinrad's foxGUIb front end and find it BLOOD great as i can easily knock up a GUI front end quicker and get a visual look quicker than i can with FXruby natively (plus i find i get confuse about the FXruby code.&lt;br&gt;&lt;br&gt;personally would love to see foxGUIb worked on some more to make it easier to add controls that someone like me could add to _or_ to add new controls like the fxtable (know this won't happen and i haven't got the skills).&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;Maybe you don't have the skills right now, but I bet Meinrad would appreciate it if you made an effort to get more involved contribute back to the foxGUIb project (and maybe you already have, I don't know). Have you ever poked around in the foxGUIb source code to try to figure out how it works, and then try making little changes to see how they affect things? That's a good way to start dipping your toes in. ;)&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; &quot;&gt;&lt;div&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-family: arial, helvetica, sans-serif; font-size: 10pt; &quot;&gt;&lt;div style=&quot;margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; &quot;&gt;I run Kubuntu 9.04&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;OK, I do have a virtual machine with Ubuntu 9.04 around here somewhere. I will try to put something together and we'll see if it works.&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; &quot;&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;---&lt;br&gt;&lt;div apple-content-edited=&quot;true&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&quot;FXRuby: Create Lean and Mean GUIs with Ruby&quot;&lt;/div&gt;&lt;div&gt;Now available from the Pragmatic Bookshelf!&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://www.pragprog.com/titles/fxruby&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.pragprog.com/titles/fxruby&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;/span&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;
&lt;/div&gt;
&lt;br&gt;&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25994188&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pre-release-FXRuby-binary-gems-for-testing-tp25982203p25994188.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25987078</id>
	<title>Re: Pre-release FXRuby binary gems for testing</title>
	<published>2009-10-20T23:18:34Z</published>
	<updated>2009-10-20T23:18:34Z</updated>
	<author>
		<name>dglnz</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:arial,helvetica,sans-serif;font-size:10pt&quot;&gt;&lt;div&gt;Lyle,&lt;br&gt;&lt;br&gt;If you have something for linux then i'd be happy to test it.&lt;br&gt;&lt;br&gt;You may have figured I'm not the brightest light bulb in the pack when it comes to ruby &lt;img src=&quot;http://mail.yimg.com/a/i/mesg/tsmileys2/03.gif&quot;&gt; but I do try to sort issues i have out before posting and then i carry on trying.&lt;br&gt;&lt;br&gt;I use Meinrad's foxGUIb front end and find it BLOOD great as i can easily knock up a GUI front end quicker and get a visual look quicker than i can with FXruby natively (plus i find i get confuse about the FXruby code.&lt;br&gt;&lt;br&gt;personally would love to see foxGUIb worked on some more to make it easier to add controls that someone like me could add to _or_ to add new controls like the fxtable (know this won't happen and i haven't got the skills).&lt;br&gt;&lt;br&gt;I run Kubuntu
 9.04&lt;br&gt;&lt;br&gt;cheers,&lt;br&gt;&lt;br&gt;Dave&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 10pt;&quot;&gt;&lt;br&gt;&lt;div style=&quot;font-family: arial,helvetica,sans-serif; font-size: 13px;&quot;&gt;&lt;font size=&quot;2&quot; face=&quot;Tahoma&quot;&gt;&lt;hr size=&quot;1&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;From:&lt;/span&gt;&lt;/b&gt; Lyle Johnson &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25987078&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lyle@...&lt;/a&gt;&amp;gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;To:&lt;/span&gt;&lt;/b&gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25987078&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;; FOX Users &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25987078&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;foxgui-users@...&lt;/a&gt;&amp;gt;&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Sent:&lt;/span&gt;&lt;/b&gt; Wed, October 21, 2009 9:42:52 AM&lt;br&gt;&lt;b&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Subject:&lt;/span&gt;&lt;/b&gt; [fxruby-users] Pre-release FXRuby binary gems for testing&lt;br&gt;&lt;/font&gt;&lt;br&gt;All,&lt;br&gt;&lt;br&gt;A couple of new build platforms have come into the picture since the last FXRuby release and I'm trying to make sure they're supported. That is to say, I want to be able to provide precompiled binary gems so that users on those platforms don't have to build
 everything from source. I think I'm there, but I could use your help testing if you have access to either (1) the new, still under development MinGW-based Ruby installer or (2) Mac OS X Snow Leopard.&lt;br&gt;&lt;br&gt;Here is a binary installer for FXRuby 1.6 on Ruby 1.8.6, the MinGW edition (the one being developed by Luis Lavena and co.):&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;a href=&quot;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-x86-mingw32.gem&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-x86-mingw32.gem&lt;/a&gt;&lt;br&gt;&lt;br&gt;And here is a binary gem for FXRuby 1.6 on Ruby 1.8.7, the one that comes with Snow Leopard:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;a href=&quot;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-universal-darwin-10.gem&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-universal-darwin-10.gem&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you have the time and are willing to be a guinea pig, please download and give it a short (and let me know how it goes). Remember, the goal here
 is that the end-user doesn't have to have any of FOX's numerous dependencies preinstalled to use these.&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;&lt;br&gt;Lyle&lt;br&gt;_______________________________________________&lt;br&gt;fxruby-users mailing list&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25987078&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;


      Email slow, clunky, unreliable? &lt;a href=http://au.rd.yahoo.com/nz/mail/tagline/2009/mailsignup/*http://yahoo.co.nz/mail target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Switch to Yahoo!Xtra Mail&lt;/a&gt;, New Zealand&amp;#39;s new email address.&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25987078&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pre-release-FXRuby-binary-gems-for-testing-tp25982203p25987078.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25982203</id>
	<title>Pre-release FXRuby binary gems for testing</title>
	<published>2009-10-20T13:42:52Z</published>
	<updated>2009-10-20T13:42:52Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">All,
&lt;br&gt;&lt;br&gt;A couple of new build platforms have come into the picture since the &amp;nbsp;
&lt;br&gt;last FXRuby release and I'm trying to make sure they're supported. &amp;nbsp;
&lt;br&gt;That is to say, I want to be able to provide precompiled binary gems &amp;nbsp;
&lt;br&gt;so that users on those platforms don't have to build everything from &amp;nbsp;
&lt;br&gt;source. I think I'm there, but I could use your help testing if you &amp;nbsp;
&lt;br&gt;have access to either (1) the new, still under development MinGW-based &amp;nbsp;
&lt;br&gt;Ruby installer or (2) Mac OS X Snow Leopard.
&lt;br&gt;&lt;br&gt;Here is a binary installer for FXRuby 1.6 on Ruby 1.8.6, the MinGW &amp;nbsp;
&lt;br&gt;edition (the one being developed by Luis Lavena and co.):
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-x86-mingw32.gem&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-x86-mingw32.gem&lt;/a&gt;&lt;br&gt;&lt;br&gt;And here is a binary gem for FXRuby 1.6 on Ruby 1.8.7, the one that &amp;nbsp;
&lt;br&gt;comes with Snow Leopard:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-universal-darwin-10.gem&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dl.getdropbox.com/u/60906/FXRuby-1.6.20-universal-darwin-10.gem&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you have the time and are willing to be a guinea pig, please &amp;nbsp;
&lt;br&gt;download and give it a short (and let me know how it goes). Remember, &amp;nbsp;
&lt;br&gt;the goal here is that the end-user doesn't have to have any of FOX's &amp;nbsp;
&lt;br&gt;numerous dependencies preinstalled to use these.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Lyle
&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25982203&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Pre-release-FXRuby-binary-gems-for-testing-tp25982203p25982203.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25961039</id>
	<title>Re: Help in request</title>
	<published>2009-10-19T08:57:32Z</published>
	<updated>2009-10-19T08:57:32Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">&lt;br&gt;On Oct 18, 2009, at 3:26 AM, Helmut Hagemann wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; this is my problem the whole picture with the background color is &amp;nbsp;
&lt;br&gt;&amp;gt; stored
&lt;br&gt;&amp;gt; see Bird.jpg
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; however, I would like to have Birdwanted.jpg
&lt;br&gt;&lt;br&gt;OK, so you want to make sure that the new width and height are half of &amp;nbsp;
&lt;br&gt;the original width and height, e.g.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x, y = &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25961039&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;0.5*@...&lt;/a&gt;, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25961039&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;0.5*@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new_width, new_height = &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25961039&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;0.5*@...&lt;/a&gt;, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25961039&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;0.5*@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @image.crop(x, y, new_width, new_height, FXRGBA(236,233,216,255))
&lt;br&gt;&lt;br&gt;&amp;gt; another question
&lt;br&gt;&amp;gt; In the Tutorial Example 7 imageviewer...
&lt;br&gt;&lt;br&gt;What &amp;quot;tutorial&amp;quot; are you referring to here?
&lt;br&gt;&lt;br&gt;&amp;gt; ... if is there a problem with rotate
&lt;br&gt;&amp;gt; because picture is not indicated anew
&lt;br&gt;&amp;gt; if one presses View and
&lt;br&gt;&amp;gt; File list checkButton presses then the change is indicated
&lt;br&gt;&lt;br&gt;I doubt there's a bug in the FXImage#rotate method, but yes, there &amp;nbsp;
&lt;br&gt;does seem to be a bug in the imageviewer.rb example program. I'll add &amp;nbsp;
&lt;br&gt;it to the bug list for future investigation.
&lt;br&gt;&lt;br&gt;&lt;br&gt;---
&lt;br&gt;&amp;quot;FXRuby: Create Lean and Mean GUIs with Ruby&amp;quot;
&lt;br&gt;Now available from the Pragmatic Bookshelf!
&lt;br&gt;&lt;a href=&quot;http://www.pragprog.com/titles/fxruby&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.pragprog.com/titles/fxruby&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25961039&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-Help-in-request-tp25961039p25961039.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25940583</id>
	<title>Re: &lt;kein Betreff&gt;</title>
	<published>2009-10-17T11:12:38Z</published>
	<updated>2009-10-17T11:12:38Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">&lt;br&gt;On Oct 17, 2009, at 6:02 AM, Helmut Hagemann wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Have a Probelm with @image.crop
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; why the picture use not the new border by creat crop command?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; with width and height i see old values a used
&lt;br&gt;&lt;br&gt;I'm having trouble understanding exactly what is your question, but &amp;nbsp;
&lt;br&gt;looking at your code, I think you may have misinterpreted the &amp;nbsp;
&lt;br&gt;arguments for the FXImage#crop method. Here is the documentation:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://www.fxruby.org/doc/api/classes/Fox/FXImage.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fxruby.org/doc/api/classes/Fox/FXImage.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;The first two arguments to crop() are the (x, y) coordinates for the &amp;nbsp;
&lt;br&gt;top left corner of the crop rectangle, and the 3rd and 4th arguments &amp;nbsp;
&lt;br&gt;are the width and height. In your code, you call crop() like this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @mywidth = &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25940583&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;0.5*@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @myheight = &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25940583&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;0.5*@...&lt;/a&gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; @image.crop(@mywidth, @myheight, @image.width, @image.height, FXRGBA 
&lt;br&gt;(236, 233, 215, 255))
&lt;br&gt;&lt;br&gt;So this says that it should start cropping in the middle of the &amp;nbsp;
&lt;br&gt;(original) image, but the resulting image should have the same height &amp;nbsp;
&lt;br&gt;and width as the original image. Can you maybe say what it is that you &amp;nbsp;
&lt;br&gt;expected to see, or what is your desired end result?
&lt;br&gt;&lt;br&gt;Hope this helps,
&lt;br&gt;&lt;br&gt;Lyle
&lt;br&gt;&lt;br&gt;&lt;br&gt;---
&lt;br&gt;&amp;quot;FXRuby: Create Lean and Mean GUIs with Ruby&amp;quot;
&lt;br&gt;Now available from the Pragmatic Bookshelf!
&lt;br&gt;&lt;a href=&quot;http://www.pragprog.com/titles/fxruby&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.pragprog.com/titles/fxruby&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25940583&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-%3Ckein-Betreff%3E-tp25940583p25940583.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25937767</id>
	<title>howto generate an event action in code?</title>
	<published>2009-10-17T05:08:56Z</published>
	<updated>2009-10-17T05:08:56Z</updated>
	<author>
		<name>dglnz</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:arial,helvetica,sans-serif;font-size:10pt&quot;&gt;&lt;div&gt;In my search to try and solve my curent problem with the combobox pane being visible and having to put focus back onto another control how could I within a combo.connect(SEL_FOCUSIN) call get a SEL-CLICK event to fire?&lt;br&gt;&lt;br&gt;my thinking here is that currently i need TWO clicks 1 for the closing of the dropped down pane and another to click on the dialogbox.&lt;br&gt;&amp;nbsp;this so the other control (namely a textbox) gets the focus back.&lt;br&gt;&lt;br&gt;cheers,&lt;br&gt;&lt;br&gt;dave.&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;


      Email slow, clunky, unreliable? &lt;a href=http://au.rd.yahoo.com/nz/mail/tagline/2009/mailsignup/*http://yahoo.co.nz/mail target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Switch to Yahoo!Xtra Mail&lt;/a&gt;, New Zealand&amp;#39;s new email address.&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25937767&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/howto-generate-an-event-action-in-code--tp25937767p25937767.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25937490</id>
	<title>combox action issue</title>
	<published>2009-10-17T04:23:34Z</published>
	<updated>2009-10-17T04:23:34Z</updated>
	<author>
		<name>dglnz</name>
	</author>
	<content type="html">&lt;html&gt;&lt;head&gt;&lt;/head&gt;&lt;body&gt;&lt;div style=&quot;font-family:arial,helvetica,sans-serif;font-size:10pt&quot;&gt;&lt;div&gt;Got a problem that i am unsure about how to tackle.&lt;br&gt;&lt;br&gt;What I would like to have happen is this....&lt;br&gt;&lt;br&gt;user move off a textbox and clicks on a combobox.&lt;br&gt;IF the textbox is empty then popup a dialogbox to alert the user of the error then return focus back to that control.&lt;br&gt;&lt;br&gt;what I am getting is...&lt;br&gt;&lt;br&gt;textbox empty user clicks on a combobox it's pane appears and then the dialogbox appears.&lt;br&gt;it is a two click action (1 to close the pane and 1 to close the dialogbox.&lt;br&gt;And the focus has not been returned to the textbox.&lt;br&gt;&lt;br&gt;I've search the fxruby api docs for help but not getting much.&lt;br&gt;&lt;br&gt;can someone point to a URL for more explainations on the SEL_ commands? as i think this will help me no end.&lt;br&gt;&lt;br&gt;thanks,&lt;br&gt;&lt;br&gt;Dave.&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;br&gt;


      Email slow, clunky, unreliable? &lt;a href=http://au.rd.yahoo.com/nz/mail/tagline/2009/mailsignup/*http://yahoo.co.nz/mail target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Switch to Yahoo!Xtra Mail&lt;/a&gt;, New Zealand&amp;#39;s new email address.&lt;/body&gt;&lt;/html&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25937490&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/combox-action-issue-tp25937490p25937490.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25910132</id>
	<title>FXRuby on Gemcutter.org</title>
	<published>2009-10-15T07:48:22Z</published>
	<updated>2009-10-15T07:48:22Z</updated>
	<author>
		<name>Lyle Johnson-4</name>
	</author>
	<content type="html">All,
&lt;br&gt;&lt;br&gt;It has come to my attention that there's a bot out there somewhere &amp;nbsp;
&lt;br&gt;that's downloading the FXRuby binary gems for Windows from &amp;nbsp;
&lt;br&gt;Gemcutter.org, and doing it a lot. It seems to be ignoring the source &amp;nbsp;
&lt;br&gt;gems, but it is mirroring every FXRuby Win32 gem that's ever been &amp;nbsp;
&lt;br&gt;published (even ones that are 5+ years old). This is artificially &amp;nbsp;
&lt;br&gt;inflating the &amp;quot;popularity&amp;quot; of FXRuby in Gemcutter's statistics, which &amp;nbsp;
&lt;br&gt;isn't helpful to anyone.
&lt;br&gt;&lt;br&gt;So, if this is you, please knock it off!
&lt;br&gt;&lt;br&gt;That is all. ;)
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;Lyle
&lt;br&gt;&lt;br&gt;&lt;br&gt;---
&lt;br&gt;&amp;quot;FXRuby: Create Lean and Mean GUIs with Ruby&amp;quot;
&lt;br&gt;Now available from the Pragmatic Bookshelf!
&lt;br&gt;&lt;a href=&quot;http://www.pragprog.com/titles/fxruby&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.pragprog.com/titles/fxruby&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;fxruby-users mailing list
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=25910132&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fxruby-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://rubyforge.org/mailman/listinfo/fxruby-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rubyforge.org/mailman/listinfo/fxruby-users&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FXRuby-on-Gemcutter.org-tp25910132p25910132.html" />
</entry>

</feed>
