<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-14216</id>
	<title>Nabble - Fox Toolkit</title>
	<updated>2008-11-19T21:26:40Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Fox-Toolkit-f14216.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Fox-Toolkit-f14216.html" />
	<subtitle type="html">FOX is a C++ based Toolkit for developing Graphical User Interfaces easily and effectively. Fox Toolkit home is &lt;a href=&quot;http://www.fox-toolkit.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-20595362</id>
	<title>Re: copying from FXText widget</title>
	<published>2008-11-19T21:26:40Z</published>
	<updated>2008-11-19T21:26:40Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Tuesday 18 November 2008, Kevin wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm trying to implement a copy to clipboard functionality, but have been
&lt;br&gt;&amp;gt; unsuccessful. The app is mostly ripped from imageviewer.rb '
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.fxruby.org/doc/examples.html'&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fxruby.org/doc/examples.html'&lt;/a&gt;. &amp;nbsp;Can anyone show me how this is
&lt;br&gt;&amp;gt; used. &amp;nbsp;My code to this point is below.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; textbox = FXHorizontalFrame.new(splitter,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; FRAME_SUNKEN|FRAME_THICK|LAYOUT_FILL_X|LAYOUT_FILL_Y,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; :padLeft =&amp;gt; 0, :padRight =&amp;gt; 0, :padTop =&amp;gt; 0, :padBottom =&amp;gt; 0)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; @textview = FXText.new(textbox, &amp;nbsp;:opts =&amp;gt; LAYOUT_FILL_X|LAYOUT_FILL_Y)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; copyBtn = FXButton.new(toolbar, &amp;quot;Copy\tCopy&amp;quot;, copyicon,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; :opts =&amp;gt; ICON_ABOVE_TEXT|BUTTON_TOOLBAR|FRAME_RAISED)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; def onCmdCopy(sender, sel, ptr)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; self.connect(SEL_CLIPBOARD_REQUEST) do
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; setDNDData(FROM_CLIPBOARD,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FXWindow.stringType,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Fox.fxencodeStringData(@textview.to_s))
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; end
&lt;br&gt;&amp;gt; end
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; copyBtn.connect(SEL_COMMAND, method(:onCmdCopy))
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Kevin
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;First off, you do not directly call setDNDData; instead, you send ID_COPY_SEL
&lt;br&gt;from the FXButton to the FXText widget. &amp;nbsp;This will cause the currently selected
&lt;br&gt;text to be remembered somewhere and the FXText widget will become the clipboard
&lt;br&gt;owner.
&lt;br&gt;&lt;br&gt;Any application subsequently doing a paste will obtain the data from the FXText
&lt;br&gt;widget via the SEL_CLIPBOARD_REQUEST message handler. &amp;nbsp;The good news is, this
&lt;br&gt;SEL_CLIPBOARD_REQUEST is passed along to FXText's target, allowing you to customize
&lt;br&gt;how the data is to be passed to setDNDData() [perhaps custom codec's, for example].
&lt;br&gt;&lt;br&gt;If the target of FXText doesn't handle it, SEL_CLIPBOARD_REQUEST will be handled
&lt;br&gt;inside FXText itself, which already knows about a few standard text codecs.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hope this helps,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;| Copyright (C) 23:10 11/19/2008 Jeroen van der Zijp. &amp;nbsp; All Rights Reserved. |
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20595362&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/copying-from-FXText-widget-tp20565581p20595362.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20595312</id>
	<title>Re: [fxruby-users] FXTopWindow</title>
	<published>2008-11-19T21:19:01Z</published>
	<updated>2008-11-19T21:19:01Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Wednesday 19 November 2008, angico wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi, all.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm trying to create a &amp;quot;timed&amp;quot; dialog, i.e., a dialog that remains
&lt;br&gt;&amp;gt; visible for a specified amount of time or until a user clicks any of its
&lt;br&gt;&amp;gt; buttons (OK, Cancel, etc).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've tried to extend this dialog from FXDialogBox, but I just can't get
&lt;br&gt;&amp;gt; out of its modal loop. So I thought of extending FXTopWindow, but it
&lt;br&gt;&amp;gt; claims to be an &amp;quot;abstract base class&amp;quot; and I don't know exactly how to
&lt;br&gt;&amp;gt; extend it.
&lt;/div&gt;&lt;br&gt;To get out of the modal loop, FXDialogBox calls app-&amp;gt;stopModal(); this can
&lt;br&gt;be most easily accomplished via ID_CANCEL or ID_ACCEPT messages being sent
&lt;br&gt;to the dialogbox [they differ mainly in the return code passed along through
&lt;br&gt;runModalFor().
&lt;br&gt;&lt;br&gt;You can certainly also call accept in response to a timeout. &amp;nbsp;In fact, handlers
&lt;br&gt;for timeout and chores have already been added to FXDialogBox: SEL_TIMEOUT,
&lt;br&gt;SEL_COMMAND, and SEL_CHORE with ID_CANCEL or ID_ACCEPT are available.
&lt;br&gt;&lt;br&gt;So basically all that's needed is to set the timer to send the (SEL_TIMEOUT,ID_CANCEL)
&lt;br&gt;message to FXDialogBox at the desired time.
&lt;br&gt;&lt;br&gt;Hope this helps,
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;| Copyright (C) 23:10 11/19/2008 Jeroen van der Zijp. &amp;nbsp; All Rights Reserved. |
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20595312&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Re%3A--fxruby-users--FXTopWindow-tp20595312p20595312.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20565581</id>
	<title>copying from FXText widget</title>
	<published>2008-11-18T10:33:44Z</published>
	<updated>2008-11-18T10:33:44Z</updated>
	<author>
		<name>gekeha</name>
	</author>
	<content type="html">Hi,&lt;br&gt;&lt;br&gt;I&amp;#39;m trying to implement a copy to clipboard functionality, but have been unsuccessful. The app is mostly ripped from imageviewer.rb &amp;#39;&lt;a href=&quot;http://www.fxruby.org/doc/examples.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fxruby.org/doc/examples.html&lt;/a&gt;&amp;#39;.&amp;nbsp; Can anyone show me how this is used.&amp;nbsp; My code to this point is below.&lt;br&gt;
&lt;br&gt;&lt;br&gt;textbox = FXHorizontalFrame.new(splitter,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FRAME_SUNKEN|FRAME_THICK|LAYOUT_FILL_X|LAYOUT_FILL_Y,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; :padLeft =&amp;gt; 0, :padRight =&amp;gt; 0, :padTop =&amp;gt; 0, :padBottom =&amp;gt; 0)&lt;br&gt;&lt;br&gt;@textview = FXText.new(textbox,&amp;nbsp; :opts =&amp;gt; LAYOUT_FILL_X|LAYOUT_FILL_Y)&lt;br&gt;
&lt;br&gt;copyBtn = FXButton.new(toolbar, &amp;quot;Copy\tCopy&amp;quot;, copyicon,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; :opts =&amp;gt; ICON_ABOVE_TEXT|BUTTON_TOOLBAR|FRAME_RAISED)&lt;br&gt;&lt;br&gt;def onCmdCopy(sender, sel, ptr)&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; self.connect(SEL_CLIPBOARD_REQUEST) do&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; setDNDData(FROM_CLIPBOARD,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FXWindow.stringType,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Fox.fxencodeStringData(@textview.to_s))&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;br&gt;end&lt;br&gt;&lt;br&gt;copyBtn.connect(SEL_COMMAND, method(:onCmdCopy))&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Kevin&lt;br&gt;&lt;br&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20565581&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/copying-from-FXText-widget-tp20565581p20565581.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20505944</id>
	<title>Re: Fw: Copy-Past Problem In FOX-Windows</title>
	<published>2008-11-14T10:25:18Z</published>
	<updated>2008-11-14T10:25:18Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Friday 14 November 2008, Samesky wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Dear Jeroen,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I tried in latest sanpshot, and It is ok.
&lt;br&gt;&amp;gt; But unfortunately, I can't use the latest snapshot,as our product based on
&lt;br&gt;&amp;gt; the version 1.7.9
&lt;br&gt;&amp;gt; and we also did some changes there!
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So does it mean, it is not possible to solve in 1.7.9 in easy way ?
&lt;br&gt;&lt;br&gt;The odd versions aren't supported stable releases. &amp;nbsp;So either switch over to
&lt;br&gt;a more recent version or perhaps backport these fixes to the one you're using...
&lt;br&gt;&lt;br&gt;&lt;br&gt;Hope this helps,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20505944&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Fw%3A-Copy-Past-Problem-In-FOX-Windows-tp20476265p20505944.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20502216</id>
	<title>Re: Fw: Copy-Past Problem In FOX-Windows</title>
	<published>2008-11-14T07:09:49Z</published>
	<updated>2008-11-14T07:09:49Z</updated>
	<author>
		<name>Samesky</name>
	</author>
	<content type="html">Dear Jeroen,
&lt;br&gt;&lt;br&gt;I tried in latest sanpshot, and It is ok.
&lt;br&gt;But unfortunately, I can't use the latest snapshot,as our product based on the version 1.7.9
&lt;br&gt;and we also did some changes there!
&lt;br&gt;&lt;br&gt;So does it mean, it is not possible to solve in 1.7.9 in easy way ?
&lt;br&gt;&lt;br&gt;Thank you
&lt;br&gt;-Same
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Samesky wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Here is the attached file
&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On Wed, 11/12/08, Samesky oange &amp;lt;samesky_j@yahoo.com&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; From: Samesky oange &amp;lt;samesky_j@yahoo.com&amp;gt;
&lt;br&gt;&amp;gt; Subject: Copy-Past Problem In FOX-Windows
&lt;br&gt;&amp;gt; To: foxgui-users@lists.sourceforge.net
&lt;br&gt;&amp;gt; Date: Wednesday, November 12, 2008, 11:36 PM
&lt;br&gt;&amp;gt; Dear My FOX-Friends,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Here is one issue that I am facing.
&lt;br&gt;&amp;gt; Just for example, If I copy a text e.g &amp;quot;Hello
&lt;br&gt;&amp;gt; World&amp;quot; from Notepad to Adie,
&lt;br&gt;&amp;gt; Adie add more two bytes extra character at end. Please
&lt;br&gt;&amp;gt; check the attached file.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is similar thing happening in our application. When I
&lt;br&gt;&amp;gt; past some word 
&lt;br&gt;&amp;gt; in the Text Box , an additional space is added (mouse
&lt;br&gt;&amp;gt; blinking on that cell just righ-shifted one space distance).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Does any body have similar problem ? 
&lt;br&gt;&amp;gt; ** I am using 1.7.9 version
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thank you
&lt;br&gt;&amp;gt; -Same
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp;
&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;Foxgui-users@lists.sourceforge.net
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Fw%3A-Copy-Past-Problem-In-FOX-Windows-tp20476265p20502216.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20489721</id>
	<title>How to build fox for windows by mingw?</title>
	<published>2008-11-13T13:15:14Z</published>
	<updated>2008-11-13T13:15:14Z</updated>
	<author>
		<name>Alexey Veselovsky-2</name>
	</author>
	<content type="html">I try to build fox (both stable and dev. version) for windows by
&lt;br&gt;mingw, but there is no success.
&lt;br&gt;&lt;br&gt;At first I've got configure error:
&lt;br&gt;&lt;br&gt;configure: error: *** POSIX thread support not available ***
&lt;br&gt;&lt;br&gt;I have hack confiure by adding &amp;quot;MINGW32=yes&amp;quot; string.
&lt;br&gt;&lt;br&gt;now configure is success. But there is error then I compile fox:
&lt;br&gt;-------------
&lt;br&gt;c:/cygwin/bin/sh.exe ../libtool --mode=compile g++ -DPACKAGE_NAME=\&amp;quot;\&amp;quot; -DPACKAGE
&lt;br&gt;_TARNAME=\&amp;quot;\&amp;quot; -DPACKAGE_VERSION=\&amp;quot;\&amp;quot; -DPACKAGE_STRING=\&amp;quot;\&amp;quot; -DPACKAGE_BUGREPORT=\
&lt;br&gt;&amp;quot;\&amp;quot; -DPACKAGE=\&amp;quot;fox\&amp;quot; -DVERSION=\&amp;quot;1.7.18\&amp;quot; -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1
&lt;br&gt;&amp;nbsp;-DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAV
&lt;br&gt;E_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DX_DISPLA
&lt;br&gt;Y_MISSING=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIRENT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_UN
&lt;br&gt;ISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 -DWIN32=1 -
&lt;br&gt;DUNICODE=1 -DHAVE_VSSCANF=1 -DHAVE_VSNPRINTF=1 -DHAVE_STRTOLL=1 -DHAVE_STRTOULL=
&lt;br&gt;1 -I. -I. &amp;nbsp;-I../include -I../include &amp;nbsp;-Id:mingw/include &amp;nbsp;-DFOX_THREAD_SAFE=1 -D_
&lt;br&gt;POSIX_PTHREAD_SEMANTICS -D_REENTRANT -DNO_XIM -DHAVE_GLU_H=1 -DHAVE_GL_H=1 &amp;nbsp;-c F
&lt;br&gt;X88591Codec.cpp
&lt;br&gt;Xinclude -DFOX_THREAD_SAFE=1 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -DNO_XIM -D
&lt;br&gt;HAVE_GLU_H=1 -DHAVE_GL_H=1 -c FX88591Codec.lo
&lt;br&gt;libtool: compile: libobj name `include -DFOX_THREAD_SAFE=1 -D_POSIX_PTHREAD_SEMA
&lt;br&gt;NTICS -D_REENTRANT -DNO_XIM -DHAVE_GLU_H=1 -DHAVE_GL_H=1 -c FX88591Codec.lo' may
&lt;br&gt;&amp;nbsp;not contain shell special characters.
&lt;br&gt;rm: invalid option -- D
&lt;br&gt;Try `rm --help' for more information.
&lt;br&gt;mkdir .libs
&lt;br&gt;&amp;nbsp;g++ &amp;quot;-DPACKAGE_NAME=\\\&amp;quot; -DPACKAGE_TARNAME=\&amp;quot;\&amp;quot; -DPACKAGE_VERSION=\&amp;quot;\&amp;quot; -DPACKAG
&lt;br&gt;E_STRING=\&amp;quot;\&amp;quot; -DPACKAGE_BUGREPORT=\&amp;quot;\&amp;quot; -DPACKAGE=\&amp;quot;fox\&amp;quot; -DVERSION=\&amp;quot;1.7.18\&amp;quot; -D
&lt;br&gt;STDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE
&lt;br&gt;_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDI
&lt;br&gt;NT_H=1 -DHAVE_UNISTD_H=1 -DX_DISPLAY_MISSING=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_DIR
&lt;br&gt;ENT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_UNISTD_H=1 -DHAVE_GETPAGESIZE=1 -DHAVE_UNISTD_H
&lt;br&gt;=1 -DHAVE_SYS_PARAM_H=1 -DWIN32=1 -DUNICODE=1 -DHAVE_VSSCANF=1 -DHAVE_VSNPRINTF=
&lt;br&gt;1 -DHAVE_STRTOLL=1 -DHAVE_STRTOULL=1 -I. -I. -I../include -I../include -Id:mingw
&lt;br&gt;/include -DFOX_THREAD_SAFE=1 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -DNO_XIM -D
&lt;br&gt;HAVE_GLU_H=1 -DHAVE_GL_H=1 -c FX88591Codec.cpp&amp;quot; &amp;nbsp;-DDLL_EXPORT -DPIC -o .libs/inc
&lt;br&gt;lude -DFOX_THREAD_SAFE=1 -D_POSIX_PTHREAD_SEMANTICS -D_REENTRANT -DNO_XIM -DHAVE
&lt;br&gt;_GLU_H=1 -DHAVE_GL_H=1 -c FX88591Codec.o
&lt;br&gt;g++.exe: FX88591Codec.o: No such file or directory
&lt;br&gt;g++.exe: no input files
&lt;br&gt;make[1]: *** [FX88591Codec.lo] Error 1
&lt;br&gt;make[1]: Leaving directory `d:/fox-1.7.18/src'
&lt;br&gt;make: *** [all-recursive] Error 1
&lt;br&gt;-------------
&lt;br&gt;&lt;br&gt;What's wrong?
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20489721&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-build-fox-for-windows-by-mingw--tp20489721p20489721.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20480352</id>
	<title>Re: Fw: Copy-Past Problem In FOX-Windows</title>
	<published>2008-11-13T04:58:56Z</published>
	<updated>2008-11-13T04:58:56Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Thursday 13 November 2008, Samesky oange wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Here is the attached file
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --- On Wed, 11/12/08, Samesky oange &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20480352&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;samesky_j@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; From: Samesky oange &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20480352&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;samesky_j@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Subject: Copy-Past Problem In FOX-Windows
&lt;br&gt;&amp;gt; &amp;gt; To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20480352&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;foxgui-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; Date: Wednesday, November 12, 2008, 11:36 PM
&lt;br&gt;&amp;gt; &amp;gt; Dear My FOX-Friends,
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Here is one issue that I am facing.
&lt;br&gt;&amp;gt; &amp;gt; Just for example, If I copy a text e.g &amp;quot;Hello
&lt;br&gt;&amp;gt; &amp;gt; World&amp;quot; from Notepad to Adie,
&lt;br&gt;&amp;gt; &amp;gt; Adie add more two bytes extra character at end. Please
&lt;br&gt;&amp;gt; &amp;gt; check the attached file.
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; This is similar thing happening in our application. When I
&lt;br&gt;&amp;gt; &amp;gt; past some word 
&lt;br&gt;&amp;gt; &amp;gt; in the Text Box , an additional space is added (mouse
&lt;br&gt;&amp;gt; &amp;gt; blinking on that cell just righ-shifted one space distance).
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; Does any body have similar problem ? 
&lt;br&gt;&amp;gt; &amp;gt; ** I am using 1.7.9 version
&lt;/div&gt;&lt;br&gt;Try the latest snapshot version and let me know if this still happens...
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;| Copyright (C) 06:50 11/13/2008 Jeroen van der Zijp. &amp;nbsp; All Rights Reserved. |
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20480352&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Fw%3A-Copy-Past-Problem-In-FOX-Windows-tp20476265p20480352.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20476265</id>
	<title>Fw: Copy-Past Problem In FOX-Windows</title>
	<published>2008-11-13T00:01:32Z</published>
	<updated>2008-11-13T00:01:32Z</updated>
	<author>
		<name>Samesky</name>
	</author>
	<content type="html">&lt;br&gt;Here is the attached file
&lt;br&gt;&lt;br&gt;&lt;br&gt;--- On Wed, 11/12/08, Samesky oange &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20476265&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;samesky_j@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; From: Samesky oange &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20476265&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;samesky_j@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; Subject: Copy-Past Problem In FOX-Windows
&lt;br&gt;&amp;gt; To: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20476265&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;foxgui-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; Date: Wednesday, November 12, 2008, 11:36 PM
&lt;br&gt;&amp;gt; Dear My FOX-Friends,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Here is one issue that I am facing.
&lt;br&gt;&amp;gt; Just for example, If I copy a text e.g &amp;quot;Hello
&lt;br&gt;&amp;gt; World&amp;quot; from Notepad to Adie,
&lt;br&gt;&amp;gt; Adie add more two bytes extra character at end. Please
&lt;br&gt;&amp;gt; check the attached file.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is similar thing happening in our application. When I
&lt;br&gt;&amp;gt; past some word 
&lt;br&gt;&amp;gt; in the Text Box , an additional space is added (mouse
&lt;br&gt;&amp;gt; blinking on that cell just righ-shifted one space distance).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Does any body have similar problem ? 
&lt;br&gt;&amp;gt; ** I am using 1.7.9 version
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thank you
&lt;br&gt;&amp;gt; -Same
&lt;/div&gt;&lt;/div&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt; &lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20476265&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://www.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;copy-past.JPG&lt;/strong&gt; (32K) &lt;a href=&quot;http://www.nabble.com/attachment/20476265/0/copy-past.JPG&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Fw%3A-Copy-Past-Problem-In-FOX-Windows-tp20476265p20476265.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20475993</id>
	<title>Copy-Past Problem In FOX-Windows</title>
	<published>2008-11-12T23:36:03Z</published>
	<updated>2008-11-12T23:36:03Z</updated>
	<author>
		<name>Samesky</name>
	</author>
	<content type="html">Dear My FOX-Friends,
&lt;br&gt;&lt;br&gt;Here is one issue that I am facing.
&lt;br&gt;Just for example, If I copy a text e.g &amp;quot;Hello World&amp;quot; from Notepad to Adie,
&lt;br&gt;Adie add more two bytes extra character at end. Please check the attached file.
&lt;br&gt;&lt;br&gt;This is similar thing happening in our application. When I past some word 
&lt;br&gt;in the Text Box , an additional space is added (mouse blinking on that cell just righ-shifted one space distance).
&lt;br&gt;&lt;br&gt;Does any body have similar problem ? 
&lt;br&gt;** I am using 1.7.9 version
&lt;br&gt;&lt;br&gt;Thank you
&lt;br&gt;-Same
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20475993&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Copy-Past-Problem-In-FOX-Windows-tp20475993p20475993.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20474772</id>
	<title>Re: Mouse Cursor and FOX Menu bar in Linux</title>
	<published>2008-11-12T20:47:48Z</published>
	<updated>2008-11-12T20:47:48Z</updated>
	<author>
		<name>Sander Jansen</name>
	</author>
	<content type="html">Yeah, it's not my favorite thing either. You can use the following to
&lt;br&gt;change the mouse cursor:
&lt;br&gt;&lt;br&gt;Call for every FXMenuPane (after items are added):
&lt;br&gt;setWindowCursor(menupane_pointer,getApp()-&amp;gt;getDefaultCursor(DEF_ARROW_CURSOR));
&lt;br&gt;&lt;br&gt;// This will loop over all menu items set the normal cursor:
&lt;br&gt;void setWindowCursor(FXWindow * window,FXCursor * cur) {
&lt;br&gt;&amp;nbsp; window-&amp;gt;setDefaultCursor(cur);
&lt;br&gt;&amp;nbsp; window-&amp;gt;setDragCursor(cur);
&lt;br&gt;&amp;nbsp; FXWindow * child=window-&amp;gt;getFirst();
&lt;br&gt;&amp;nbsp; while(child) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; child-&amp;gt;setDefaultCursor(cur);
&lt;br&gt;&amp;nbsp; &amp;nbsp; child-&amp;gt;setDragCursor(cur);
&lt;br&gt;&amp;nbsp; &amp;nbsp; child=child-&amp;gt;getNext();
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&lt;br&gt;Sander
&lt;br&gt;&lt;br&gt;On Wed, Nov 12, 2008 at 10:38 PM, Samesky oange &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20474772&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;samesky_j@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Dear My FOX-Friends,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; One of our client claim that, when I put the mouse over the menu sub-item
&lt;br&gt;&amp;gt; (e.g File&amp;gt;New), the mouse cursor is changed to right-ptr.
&lt;br&gt;&amp;gt; But on the desktop, the mouse cursor is left-ptr.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Initially I though this is my Linux distribution problem.
&lt;br&gt;&amp;gt; So I checked my application in other linux distribution.
&lt;br&gt;&amp;gt; I got the same problem. So now I guess FOX internally change this cursor(?).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And we need to fix this problem. Do you have such experience ?
&lt;br&gt;&amp;gt; Would you please share with me ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you
&lt;br&gt;&amp;gt; -Same
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Foxgui-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20474772&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;quot;And any fool knows a dog needs a home
&lt;br&gt;A shelter from pigs on the wing&amp;quot;
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20474772&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Mouse-Cursor-and-FOX-Menu-bar-in-Linux-tp20474690p20474772.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20474690</id>
	<title>Mouse Cursor and FOX Menu bar in Linux</title>
	<published>2008-11-12T20:38:13Z</published>
	<updated>2008-11-12T20:38:13Z</updated>
	<author>
		<name>Samesky</name>
	</author>
	<content type="html">Dear My FOX-Friends,
&lt;br&gt;&lt;br&gt;One of our client claim that, when I put the mouse over the menu sub-item
&lt;br&gt;(e.g File&amp;gt;New), the mouse cursor is changed to right-ptr.
&lt;br&gt;But on the desktop, the mouse cursor is left-ptr.
&lt;br&gt;&lt;br&gt;Initially I though this is my Linux distribution problem.
&lt;br&gt;So I checked my application in other linux distribution.
&lt;br&gt;I got the same problem. So now I guess FOX internally change this cursor(?).
&lt;br&gt;&lt;br&gt;And we need to fix this problem. Do you have such experience ?
&lt;br&gt;Would you please share with me ?
&lt;br&gt;&lt;br&gt;Thank you
&lt;br&gt;-Same
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20474690&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Mouse-Cursor-and-FOX-Menu-bar-in-Linux-tp20474690p20474690.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20360792</id>
	<title>Re: [fxruby-users] capturing stdout, stdin and stderr</title>
	<published>2008-11-06T05:13:33Z</published>
	<updated>2008-11-06T05:13:33Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Thursday 06 November 2008, angico wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Em Qui, 2008-11-06 às 09:16 +0400, Rovshan Baghirov escreveu:
&lt;br&gt;&amp;gt; &amp;gt; Example from Programming Ruby book:
&lt;br&gt;&amp;gt; &amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; pig = IO.popen(&amp;quot;/usr/local/bin/pig&amp;quot;, &amp;quot;w+&amp;quot;)
&lt;br&gt;&amp;gt; &amp;gt; pig.puts &amp;quot;ice cream after they go to bed&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; pig.close_write
&lt;br&gt;&amp;gt; &amp;gt; puts pig.gets
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thank you, guys. I guess it's a starting point.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; But what I really need is to have an application's stdin &amp;quot;connected&amp;quot; to
&lt;br&gt;&amp;gt; an FXInputDialog, in order to get user input, instead of the console.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Let's say I want to create a front-end to scp. The user will enter the
&lt;br&gt;&amp;gt; name of the host and the full filename in a dialog. Then I pass in these
&lt;br&gt;&amp;gt; data to scp through, say, popen. Ok. Then, scp will need to ask the user
&lt;br&gt;&amp;gt; for their password. Instead of the console asking the user to enter that
&lt;br&gt;&amp;gt; password, I'd like to catch this (including the message
&lt;br&gt;&amp;gt; &amp;quot;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20360792&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;angico@...&lt;/a&gt;'s password: &amp;quot;) and present them to the user in an
&lt;br&gt;&amp;gt; FXInputDialog. I'm not sure if I'm being clear.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Anyway, does anybody know how can I achieve this? Any idea? Any
&lt;br&gt;&amp;gt; tutorial?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks, again,
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;You can open two pipes and pass these along as stdin and stdout of the
&lt;br&gt;program you're starting:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pipe(in);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pipe(out);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pid=fork();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(pid==0){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::close(out[0]);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::dup2(out[1],STDOUT_FILENO);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::close(in[1]);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::dup2(in[0],STDIN_FILENO);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::execl(path,...,NULL);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::exit(1);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else if(pid&amp;gt;0){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::close(out[1]);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ::close(in[0]);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; getApp()-&amp;gt;addInput(obj,ID_INPUTREAD,out[0],INPUT_READ,(void*)(FXival)out[0]);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;In a nutshell. &amp;nbsp;There are details omitted for brevity's sake.
&lt;br&gt;&lt;br&gt;The handler for ID_INPUT_READ will get invoked when the program &amp;quot;path&amp;quot; writes to
&lt;br&gt;stdout. &amp;nbsp;It will then have to present this text to the user and write to in[1]
&lt;br&gt;to talk back to the program (using write()).
&lt;br&gt;&lt;br&gt;Hope this helps,
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;| Copyright (C) 07:00 11/ 6/2008 Jeroen van der Zijp. &amp;nbsp; All Rights Reserved. |
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20360792&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Re%3A--fxruby-users--capturing-stdout%2C-stdin-and-stderr-tp20360792p20360792.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20354679</id>
	<title>Re: who is pixel data owner?</title>
	<published>2008-11-05T19:49:44Z</published>
	<updated>2008-11-05T19:49:44Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Wednesday 05 November 2008, Serghei Amelian wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Thursday 06 November 2008 01:42:01 Serghei Amelian wrote:
&lt;br&gt;&amp;gt; [...]
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; If condition is TRUE, pixel data of img2 suffer some transformations, so
&lt;br&gt;&amp;gt; &amp;gt; must be freed separately.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I'm right?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I found the response, after reading FXImage.cpp: after scalling, pixel data 
&lt;br&gt;&amp;gt; automatically become owned by FXImage.
&lt;/div&gt;&lt;br&gt;Yes, that's correct! &amp;nbsp;If it wasn't owned before, it will become owned
&lt;br&gt;after the scale...
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;| Copyright (C) 21:40 11/ 5/2008 Jeroen van der Zijp. &amp;nbsp; All Rights Reserved. |
&lt;br&gt;+----------------------------------------------------------------------------+
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20354679&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/who-is-pixel-data-owner--tp20352522p20354679.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20352625</id>
	<title>Re: who is pixel data owner?</title>
	<published>2008-11-05T15:52:30Z</published>
	<updated>2008-11-05T15:52:30Z</updated>
	<author>
		<name>Serghei Amelian</name>
	</author>
	<content type="html">On Thursday 06 November 2008 01:42:01 Serghei Amelian wrote:
&lt;br&gt;[...]
&lt;br&gt;&lt;br&gt;&amp;gt; If condition is TRUE, pixel data of img2 suffer some transformations, so
&lt;br&gt;&amp;gt; must be freed separately.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm right?
&lt;br&gt;&lt;br&gt;I found the response, after reading FXImage.cpp: after scalling, pixel data 
&lt;br&gt;automatically become owned by FXImage.
&lt;br&gt;&lt;br&gt;// Resize data array
&lt;br&gt;&amp;nbsp; if(data){
&lt;br&gt;&amp;nbsp; &amp;nbsp; if(!(options&amp;IMAGE_OWNED)){ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Need to own array
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(!allocElms(data,w*h)){ throw FXMemoryException(&amp;quot;unable to resize 
&lt;br&gt;image&amp;quot;); }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; options|=IMAGE_OWNED;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;Sorry for noise.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Serghei.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20352625&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/who-is-pixel-data-owner--tp20352522p20352625.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20352522</id>
	<title>who is pixel data owner?</title>
	<published>2008-11-05T15:42:01Z</published>
	<updated>2008-11-05T15:42:01Z</updated>
	<author>
		<name>Serghei Amelian</name>
	</author>
	<content type="html">Hi Jeroen,
&lt;br&gt;&lt;br&gt;I have a code like this:
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----------------
&lt;br&gt;FXImage *img1 = new FXPNGImage(getApp());
&lt;br&gt;img1-&amp;gt;loadPixels(stream);
&lt;br&gt;&lt;br&gt;FXImage *img2 = new FXImage(getApp(), img1-&amp;gt;getData(), IMAGE_???, 
&lt;br&gt;img1-&amp;gt;getWidth(), img1-&amp;gt;getHeight());
&lt;br&gt;&lt;br&gt;if(condition)
&lt;br&gt;&amp;nbsp; img2-&amp;gt;scale(my_width, my_height);
&lt;br&gt;-----------------
&lt;br&gt;&lt;br&gt;&lt;br&gt;If condition is FALSE, pixel data of img2 seems it's same as img1 pixel data 
&lt;br&gt;(so cannot be IMAGE_OWNED).
&lt;br&gt;&lt;br&gt;If condition is TRUE, pixel data of img2 suffer some transformations, so must 
&lt;br&gt;be freed separately.
&lt;br&gt;&lt;br&gt;I'm right?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;-- 
&lt;br&gt;Serghei.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20352522&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/who-is-pixel-data-owner--tp20352522p20352522.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20269164</id>
	<title>v0.88.1 of TnFOX release</title>
	<published>2008-10-31T09:10:30Z</published>
	<updated>2008-10-31T09:10:30Z</updated>
	<author>
		<name>Niall Douglas</name>
	</author>
	<content type="html">Homepage: &lt;a href=&quot;http://www.nedprod.com/TnFOX/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.nedprod.com/TnFOX/&lt;/a&gt;&lt;br&gt;Docs: &lt;a href=&quot;http://tnfox.sourceforge.net/TnFOX/html/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tnfox.sourceforge.net/TnFOX/html/&lt;/a&gt;&lt;br&gt;SVN: &lt;a href=&quot;http://developer.berlios.de/svn/?group_id=2262&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://developer.berlios.de/svn/?group_id=2262&lt;/a&gt;&lt;br&gt;&lt;br&gt;* Ported to Mac OS X 10.5 Leopard
&lt;br&gt;* Merged FOX v1.6.34
&lt;br&gt;* Assorted bug fixes from user reports
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;Niall
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-announce mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20269164&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-announce@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-announce&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-announce&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---Announce-f14503.html&quot; embed=&quot;fixTarget[14503]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/v0.88.1-of-TnFOX-release-tp20269164p20269164.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20250511</id>
	<title>Re: how to handle events of slider when slider is connected with dataTarget?</title>
	<published>2008-10-30T09:27:57Z</published>
	<updated>2008-10-30T09:27:57Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Thursday 30 October 2008, Gajera Tejas wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have problem with slider which connected with DataTarget. it's value can
&lt;br&gt;&amp;gt; not update when we make a change in slider.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; basically if we have like... new FXSlider(parent, target, ID_SOMETHING);
&lt;br&gt;&amp;gt; then it will call the function which is assign with ID_SOMETHING;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; but what happend with...new FXSlider(parent, &amp;DataTarget,
&lt;br&gt;&amp;gt; FXDataTarget::ID_VALUE);
&lt;br&gt;&amp;gt; this slider connected with data target. how to handle events when we click
&lt;br&gt;&amp;gt; on slider or move slider using mouse?
&lt;/div&gt;&lt;br&gt;The FXDataTarget itself also has a target/message ID; it generates SEL_COMMAND
&lt;br&gt;or SEL_CHANGED messages with this ID when it receives messages from the FXSlider.
&lt;br&gt;&lt;br&gt;The target of the FXDataTarget will however NOT receive SEL_UPDATE messages
&lt;br&gt;from the FXDataTarget; this is because these can now be satisfied by the FXDataTarget
&lt;br&gt;itself through its associated variable.
&lt;br&gt;&lt;br&gt;My own philosophy is to use FXDataTarget when a simple variable needs to be changed,
&lt;br&gt;and to catch SEL_COMMAND and SEL_UPDATE messages directly from the widget if the 
&lt;br&gt;interaction between the control and the program is more immediate [for example, besides
&lt;br&gt;updating the control's value you might have to enable/disable it based on program state].
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Hope this helps,
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-announce mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20250511&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-announce@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-announce&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-announce&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---Announce-f14503.html&quot; embed=&quot;fixTarget[14503]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/how-to-handle-events-of-slider-when-slider-is-connected-with-dataTarget--tp20250142p20250511.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20250142</id>
	<title>how to handle events of slider when slider is connected with dataTarget?</title>
	<published>2008-10-30T09:04:30Z</published>
	<updated>2008-10-30T09:04:30Z</updated>
	<author>
		<name>Gajera Tejas</name>
	</author>
	<content type="html">hi,&lt;br&gt;&lt;br&gt;I have problem with slider which connected with DataTarget. it&amp;#39;s value can not update when we make a change in slider. &lt;br&gt;&lt;br&gt;basically if we have like... new FXSlider(parent, target, ID_SOMETHING);&lt;br&gt;then it will call the function which is assign with ID_SOMETHING;&lt;br&gt;
&lt;br&gt;but what happend with...new FXSlider(parent, &amp;amp;DataTarget, FXDataTarget::ID_VALUE);&lt;br&gt;this slider connected with data target. how to handle events when we click on slider or move slider using mouse?&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;
Tejas&lt;br&gt;&lt;br&gt;&lt;br&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Foxgui-announce mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20250142&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-announce@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-announce&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-announce&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---Announce-f14503.html&quot; embed=&quot;fixTarget[14503]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - Announce&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/how-to-handle-events-of-slider-when-slider-is-connected-with-dataTarget--tp20250142p20250142.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20212972</id>
	<title>Re: Sorting FXTabItems</title>
	<published>2008-10-28T11:12:54Z</published>
	<updated>2008-10-28T11:12:54Z</updated>
	<author>
		<name>David Vachulka</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;thanks Jeroen.
&lt;br&gt;Now it works fine.
&lt;br&gt;&lt;br&gt;Dne Mon, 27 Oct 2008 10:00:01 -0500
&lt;br&gt;Jeroen van der Zijp &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20212972&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeroen@...&lt;/a&gt;&amp;gt; napsal(a):
&lt;br&gt;&lt;br&gt;&amp;gt; There is no API to sort the order of widgets; but you can restructure
&lt;br&gt;&amp;gt; the widget-tree (without destroying widgets) using reparent().
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; So all that's needed is to use qsort() on an array of FXWidget*
&lt;br&gt;&amp;gt; pointers and then use reparent() back to front to organize the items
&lt;br&gt;&amp;gt; in the desired order.
&lt;br&gt;&lt;br&gt;Best regards
&lt;br&gt;David Vachulka
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20212972&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Sorting-FXTabItems-tp20184512p20212972.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20189423</id>
	<title>Re: Sorting FXTabItems</title>
	<published>2008-10-27T08:00:01Z</published>
	<updated>2008-10-27T08:00:01Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Monday 27 October 2008, David Vachulka wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; Does someone have any souggestion for sorting FXTabItems?
&lt;br&gt;&lt;br&gt;There is no API to sort the order of widgets; but you can restructure
&lt;br&gt;the widget-tree (without destroying widgets) using reparent().
&lt;br&gt;&lt;br&gt;So all that's needed is to use qsort() on an array of FXWidget* pointers
&lt;br&gt;and then use reparent() back to front to organize the items in the
&lt;br&gt;desired order.
&lt;br&gt;&lt;br&gt;Hope this helps,
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20189423&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Sorting-FXTabItems-tp20184512p20189423.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20188243</id>
	<title>Re: using FXWizard to create a custom Frame</title>
	<published>2008-10-27T06:55:04Z</published>
	<updated>2008-10-27T06:55:04Z</updated>
	<author>
		<name>DaneM</name>
	</author>
	<content type="html">Thank you for your help. I didn't need to use two FXApp's, I found my problem was that I wasn't correctly creating my vectors and that is the reason my mainwindow wasnt being created correctly. Thank you for the quick response.&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/using-FXWizard-to-create-a-custom-Frame-tp20177097p20188243.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20188171</id>
	<title>Re: using FXWizard to create a custom Frame</title>
	<published>2008-10-27T06:49:26Z</published>
	<updated>2008-10-27T06:49:26Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Monday 27 October 2008, you wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I am using FXWizard to create a custom Frame. Using FXWizard I am letting the
&lt;br&gt;&amp;gt; user specify what my main application needs. I had problems using just
&lt;br&gt;&amp;gt; FXWizard since the frames are created before the wizard runs and tried
&lt;br&gt;&amp;gt; making one FXApp to run the wizard and using another FXApp to create the
&lt;br&gt;&amp;gt; main application window, but the second FXApp doesn't run. I am wondering if
&lt;br&gt;&amp;gt; I am going about this the wrong way?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Here is the code for main:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; int main(int argc,char **argv){
&lt;br&gt;&amp;gt; 	vector &amp;lt;FXString&amp;gt; switchSignals;
&lt;br&gt;&amp;gt; 	vector &amp;lt;FXString&amp;gt; ledSignals;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	FXApp application(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	application.init(argc,argv);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	FXWizard wizard(&amp;application,&amp;quot;Setup Wizard&amp;quot;,NULL,DECOR_TITLE|DECOR_BORDER);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	SetupWindow *pane1= new SetupWindow(wizard.getContainer(), &amp;application,
&lt;br&gt;&amp;gt; switchSignals, ledSignals);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	application.create();
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	wizard.execute(PLACEMENT_SCREEN);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	FXApp application2(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;);
&lt;br&gt;&amp;gt; 	application2.init(argc,argv);
&lt;br&gt;&amp;gt; 	application2.create();
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	FXMainWindow *main = new FXMainWindow(&amp;application2,&amp;quot;Main
&lt;br&gt;&amp;gt; Window2&amp;quot;,NULL,NULL,DECOR_ALL,0,0,600,400);
&lt;br&gt;&amp;gt; 	FXHorizontalFrame *pane2=new
&lt;br&gt;&amp;gt; FXHorizontalFrame(main,LAYOUT_FILL_Y|LAYOUT_FILL_X,0,0,0,0, 0,0,0,0);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	
&lt;br&gt;&amp;gt; 	LEDHolder *vframe = new LEDHolder(pane2,&amp;application2, ledSignals);
&lt;br&gt;&amp;gt; 	new
&lt;br&gt;&amp;gt; FXVerticalSeparator(pane2,LAYOUT_SIDE_RIGHT|LAYOUT_FILL_Y|SEPARATOR_GROOVE);
&lt;br&gt;&amp;gt; 	SwitchHolder *sframe = new SwitchHolder(pane2,&amp;application2,
&lt;br&gt;&amp;gt; switchSignals);
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	main-&amp;gt;show(PLACEMENT_SCREEN);
&lt;br&gt;&amp;gt; 	application2.run();
&lt;br&gt;&amp;gt; &amp;nbsp;}
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;I don't recommend 2 FXApp's at the same time; in fact, I don't even
&lt;br&gt;recommend 2 FXApp's one at a time.
&lt;br&gt;&lt;br&gt;The good news is that there probably is no need for this anyway; its
&lt;br&gt;perfectly fine to dispose of the FXWizard after you're done and then
&lt;br&gt;move on to create your MainWindow.
&lt;br&gt;&lt;br&gt;The reason: there is some stuff behind the scenes which depends on
&lt;br&gt;the X11 connection instance; when you create the 2nd X11 connection
&lt;br&gt;instance things may get a little hairy.
&lt;br&gt;&lt;br&gt;Moreover, you CAN NOT run two instances of FXApp anyway, because the
&lt;br&gt;run() function doesn't return until the application is done.
&lt;br&gt;&lt;br&gt;Long story short is: don't start a 2nd FXApp. &amp;nbsp;It has no benefits,
&lt;br&gt;and can lead to some problems.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20188171&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/using-FXWizard-to-create-a-custom-Frame-tp20177097p20188171.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20184512</id>
	<title>Sorting FXTabItems</title>
	<published>2008-10-27T02:48:01Z</published>
	<updated>2008-10-27T02:48:01Z</updated>
	<author>
		<name>David Vachulka</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;Does someone have any souggestion for sorting FXTabItems?
&lt;br&gt;I haven't absolutely idea.
&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;David Vachulka&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Sorting-FXTabItems-tp20184512p20184512.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20184329</id>
	<title>Re: using FXWizard to create a custom Frame</title>
	<published>2008-10-27T02:28:25Z</published>
	<updated>2008-10-27T02:28:25Z</updated>
	<author>
		<name>Andreas Schuh</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;actually this looks a bit weird to me ... As you have no special FX 
&lt;br&gt;application class you should be able to
&lt;br&gt;use the same FXApp instance in both cases without any considerable 
&lt;br&gt;difference.
&lt;br&gt;On the other hand, an FOX program has only one application. I think if 
&lt;br&gt;you want to create a fresh FXApp
&lt;br&gt;instance for your main window, the first FXApp instance should be 
&lt;br&gt;destroyed first.
&lt;br&gt;In your case I would but the init code &amp;nbsp;in its own block like this:
&lt;br&gt;&lt;br&gt;int main(int argc,char **argv)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; vector &amp;lt;FXString&amp;gt; switchSignals;
&lt;br&gt;&amp;nbsp; vector &amp;lt;FXString&amp;gt; ledSignals;
&lt;br&gt;&lt;br&gt;&amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; FXApp application(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; application.init(argc,argv);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; FXWizard wizard(&amp;application,&amp;quot;Setup Wizard&amp;quot;,NULL,DECOR_TITLE|DECOR_BORDER);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; SetupWindow *pane1= new SetupWindow(wizard.getContainer(), &amp;application, switchSignals, ledSignals);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; application.create();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; wizard.execute(PLACEMENT_SCREEN);
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;FXApp application(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp;application.init(argc,argv);
&lt;br&gt;&amp;nbsp; &amp;nbsp;application.create();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;FXMainWindow *main = new FXMainWindow(&amp;application,&amp;quot;Main Window2&amp;quot;,NULL,NULL,DECOR_ALL,0,0,600,400);
&lt;br&gt;&amp;nbsp; &amp;nbsp;FXHorizontalFrame *pane2=new FXHorizontalFrame(main,LAYOUT_FILL_Y|LAYOUT_FILL_X,0,0,0,0, 0,0,0,0);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;LEDHolder *vframe = new LEDHolder(pane2,&amp;application, ledSignals);
&lt;br&gt;&amp;nbsp; &amp;nbsp;new FXVerticalSeparator(pane2,LAYOUT_SIDE_RIGHT|LAYOUT_FILL_Y|SEPARATOR_GROOVE);
&lt;br&gt;&amp;nbsp; &amp;nbsp;SwitchHolder *sframe = new SwitchHolder(pane2,&amp;application, switchSignals);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;main-&amp;gt;show(PLACEMENT_SCREEN);
&lt;br&gt;&amp;nbsp; &amp;nbsp;return application.run();
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;But I would just try it this way with only one FXApp instance:
&lt;br&gt;&lt;br&gt;int main(int argc,char **argv)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; vector &amp;lt;FXString&amp;gt; switchSignals;
&lt;br&gt;&amp;nbsp; vector &amp;lt;FXString&amp;gt; ledSignals;
&lt;br&gt;&lt;br&gt;&amp;nbsp; FXApp application(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; application.init(argc,argv);
&lt;br&gt;&amp;nbsp; application.create();
&lt;br&gt;&lt;br&gt;&amp;nbsp; FXWizard wizard(&amp;application,&amp;quot;Setup Wizard&amp;quot;,NULL,DECOR_TITLE|DECOR_BORDER);
&lt;br&gt;&lt;br&gt;&amp;nbsp; SetupWindow *pane1= new SetupWindow(wizard.getContainer(), &amp;application, switchSignals, ledSignals);
&lt;br&gt;&lt;br&gt;&amp;nbsp; // If it makes sense to stop the program if the user decided not to finish pre-setup
&lt;br&gt;&amp;nbsp; if( !wizard.execute(PLACEMENT_SCREEN) )
&lt;br&gt;&amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; application.exit(0);
&lt;br&gt;&amp;nbsp; &amp;nbsp; return 0;
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; FXMainWindow *main = new FXMainWindow(&amp;application,&amp;quot;Main Window2&amp;quot;,NULL,NULL,DECOR_ALL,0,0,600,400);
&lt;br&gt;&amp;nbsp; FXHorizontalFrame *pane2=new FXHorizontalFrame(main,LAYOUT_FILL_Y|LAYOUT_FILL_X,0,0,0,0, 0,0,0,0);
&lt;br&gt;&lt;br&gt;&amp;nbsp; LEDHolder *vframe = new LEDHolder(pane2,&amp;application, ledSignals);
&lt;br&gt;&amp;nbsp; new FXVerticalSeparator(pane2,LAYOUT_SIDE_RIGHT|LAYOUT_FILL_Y|SEPARATOR_GROOVE);
&lt;br&gt;&amp;nbsp; SwitchHolder *sframe = new SwitchHolder(pane2,&amp;application, switchSignals);
&lt;br&gt;&lt;br&gt;&amp;nbsp; main-&amp;gt;show(PLACEMENT_SCREEN);
&lt;br&gt;&amp;nbsp; return application.run();
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;regards,
&lt;br&gt;Andreas
&lt;br&gt;&lt;br&gt;DaneM schrieb:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I am using FXWizard to create a custom Frame. Using FXWizard I am letting the
&lt;br&gt;&amp;gt; user specify what my main application needs. I had problems using just
&lt;br&gt;&amp;gt; FXWizard since the frames are created before the wizard runs and tried
&lt;br&gt;&amp;gt; making one FXApp to run the wizard and using another FXApp to create the
&lt;br&gt;&amp;gt; main application window, but the second FXApp doesn't run. I am wondering if
&lt;br&gt;&amp;gt; I am going about this the wrong way?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is the code for main:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; int main(int argc,char **argv){
&lt;br&gt;&amp;gt; 	vector &amp;lt;FXString&amp;gt; switchSignals;
&lt;br&gt;&amp;gt; 	vector &amp;lt;FXString&amp;gt; ledSignals;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	FXApp application(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	application.init(argc,argv);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	FXWizard wizard(&amp;application,&amp;quot;Setup Wizard&amp;quot;,NULL,DECOR_TITLE|DECOR_BORDER);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	SetupWindow *pane1= new SetupWindow(wizard.getContainer(), &amp;application,
&lt;br&gt;&amp;gt; switchSignals, ledSignals);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	application.create();
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	wizard.execute(PLACEMENT_SCREEN);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	FXApp application2(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;);
&lt;br&gt;&amp;gt; 	application2.init(argc,argv);
&lt;br&gt;&amp;gt; 	application2.create();
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	FXMainWindow *main = new FXMainWindow(&amp;application2,&amp;quot;Main
&lt;br&gt;&amp;gt; Window2&amp;quot;,NULL,NULL,DECOR_ALL,0,0,600,400);
&lt;br&gt;&amp;gt; 	FXHorizontalFrame *pane2=new
&lt;br&gt;&amp;gt; FXHorizontalFrame(main,LAYOUT_FILL_Y|LAYOUT_FILL_X,0,0,0,0, 0,0,0,0);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	
&lt;br&gt;&amp;gt; 	LEDHolder *vframe = new LEDHolder(pane2,&amp;application2, ledSignals);
&lt;br&gt;&amp;gt; 	new
&lt;br&gt;&amp;gt; FXVerticalSeparator(pane2,LAYOUT_SIDE_RIGHT|LAYOUT_FILL_Y|SEPARATOR_GROOVE);
&lt;br&gt;&amp;gt; 	SwitchHolder *sframe = new SwitchHolder(pane2,&amp;application2,
&lt;br&gt;&amp;gt; switchSignals);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 	main-&amp;gt;show(PLACEMENT_SCREEN);
&lt;br&gt;&amp;gt; 	application2.run();
&lt;br&gt;&amp;gt; &amp;nbsp;}
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20184329&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/using-FXWizard-to-create-a-custom-Frame-tp20177097p20184329.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20177097</id>
	<title>using FXWizard to create a custom Frame</title>
	<published>2008-10-26T12:29:44Z</published>
	<updated>2008-10-26T12:29:44Z</updated>
	<author>
		<name>DaneM</name>
	</author>
	<content type="html">I am using FXWizard to create a custom Frame. Using FXWizard I am letting the user specify what my main application needs. I had problems using just FXWizard since the frames are created before the wizard runs and tried making one FXApp to run the wizard and using another FXApp to create the main application window, but the second FXApp doesn't run. I am wondering if I am going about this the wrong way?
&lt;br&gt;&lt;br&gt;Here is the code for main:
&lt;br&gt;&lt;br&gt;int main(int argc,char **argv){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vector &amp;lt;FXString&amp;gt; switchSignals;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vector &amp;lt;FXString&amp;gt; ledSignals;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FXApp application(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; application.init(argc,argv);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FXWizard wizard(&amp;application,&amp;quot;Setup Wizard&amp;quot;,NULL,DECOR_TITLE|DECOR_BORDER);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SetupWindow *pane1= new SetupWindow(wizard.getContainer(), &amp;application, switchSignals, ledSignals);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; application.create();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; wizard.execute(PLACEMENT_SCREEN);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FXApp application2(&amp;quot;&amp;quot;,&amp;quot;&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; application2.init(argc,argv);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; application2.create();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FXMainWindow *main = new FXMainWindow(&amp;application2,&amp;quot;Main Window2&amp;quot;,NULL,NULL,DECOR_ALL,0,0,600,400);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FXHorizontalFrame *pane2=new FXHorizontalFrame(main,LAYOUT_FILL_Y|LAYOUT_FILL_X,0,0,0,0, 0,0,0,0);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; LEDHolder *vframe = new LEDHolder(pane2,&amp;application2, ledSignals);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; new FXVerticalSeparator(pane2,LAYOUT_SIDE_RIGHT|LAYOUT_FILL_Y|SEPARATOR_GROOVE);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SwitchHolder *sframe = new SwitchHolder(pane2,&amp;application2, switchSignals);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; main-&amp;gt;show(PLACEMENT_SCREEN);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; application2.run();
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/using-FXWizard-to-create-a-custom-Frame-tp20177097p20177097.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20153580</id>
	<title>Re: problems with german umlaut</title>
	<published>2008-10-24T09:40:08Z</published>
	<updated>2008-10-24T09:40:08Z</updated>
	<author>
		<name>woodchuck-4</name>
	</author>
	<content type="html">Am Freitag, 24. Oktober 2008 18:33 schrieb Jeroen van der Zijp:
&lt;br&gt;&amp;gt;         FX88591Codec codec;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;         utfstring=codec.mb2utf(string);
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thank you very much, it works fine!
&lt;br&gt;&lt;br&gt;Tom
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153580&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/problems-with-german-umlaut-tp20151514p20153580.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20153465</id>
	<title>Re: problems with german umlaut</title>
	<published>2008-10-24T09:33:57Z</published>
	<updated>2008-10-24T09:33:57Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Friday 24 October 2008, woodchuck wrote:
&lt;br&gt;&amp;gt; Yes, i think so,
&lt;br&gt;&amp;gt; but is there an easy way to convert a ascii string to utf8?
&lt;br&gt;&lt;br&gt;Yes.
&lt;br&gt;&lt;br&gt;Use the text codecs (FX88591Codec, etc..). &amp;nbsp;If your original text is
&lt;br&gt;in a particular character-set encoding, you can use the codec to transform
&lt;br&gt;that encoding to the utf-8 encoding, and vice-versa.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FX88591Codec codec;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; utfstring=codec.mb2utf(string);
&lt;br&gt;&lt;br&gt;&amp;gt; I tried the fromAscii(FXString &amp;) method, but it seems not to work.
&lt;br&gt;&lt;br&gt;It works for me:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fromAscii(&amp;quot;Ouvres votre fen\\u00EAtre&amp;quot;)
&lt;br&gt;&lt;br&gt;Replaces \uXXXX unicode escape sequences with their UTF-8 representations.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153465&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/problems-with-german-umlaut-tp20151514p20153465.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20153401</id>
	<title>Re: problems with german umlaut</title>
	<published>2008-10-24T09:31:06Z</published>
	<updated>2008-10-24T09:31:06Z</updated>
	<author>
		<name>Sander Jansen</name>
	</author>
	<content type="html">Yes, using one of the FXTextCodecs in FOX. But first you need to find
&lt;br&gt;out what encoding the text is in...
&lt;br&gt;&lt;br&gt;Sander
&lt;br&gt;&lt;br&gt;On Fri, Oct 24, 2008 at 11:14 AM, woodchuck &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153401&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;woodchuck@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Yes, i think so,
&lt;br&gt;&amp;gt; but is there an easy way to convert a ascii string to utf8?
&lt;br&gt;&amp;gt; I tried the fromAscii(FXString &amp;) method, but it seems not to work.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Kind Regards
&lt;br&gt;&amp;gt; Tom
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Am Freitag, 24. Oktober 2008 17:42 schrieb Sander Jansen:
&lt;br&gt;&amp;gt;&amp;gt; You have to make sure that whatever text you display in FXText is in UTF-8.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Sander
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Fri, Oct 24, 2008 at 9:23 AM, woodchuck &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153401&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;woodchuck@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Dear all,
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; i have a FXText widget for some output. The text may contain umlaute
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;quot;äöüÄÖÜ&amp;quot; etc. in a 8bit ascii encoding (written from other applications).
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Unfortunately i cant display them and they &amp;nbsp;&amp;quot;eat up&amp;quot; &amp;nbsp;the following 3
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; characers of the text.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; If i enter some text from an other Widget in the application all umlaute
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; are displayed correct.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Do you have any idea how to fix it?
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Thanks a lot
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Tom
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; challenge Build the coolest Linux based applications with Moblin SDK &amp;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; win great prizes Grand prize is a trip for two to an Open Source event
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; anywhere in the world
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Foxgui-users mailing list
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153401&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;quot;And any fool knows a dog needs a home
&lt;br&gt;A shelter from pigs on the wing&amp;quot;
&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153401&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/problems-with-german-umlaut-tp20151514p20153401.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20153101</id>
	<title>Re: problems with german umlaut</title>
	<published>2008-10-24T09:14:43Z</published>
	<updated>2008-10-24T09:14:43Z</updated>
	<author>
		<name>woodchuck-4</name>
	</author>
	<content type="html">Yes, i think so,
&lt;br&gt;but is there an easy way to convert a ascii string to utf8?
&lt;br&gt;I tried the fromAscii(FXString &amp;) method, but it seems not to work.
&lt;br&gt;&lt;br&gt;Kind Regards
&lt;br&gt;Tom
&lt;br&gt;&amp;nbsp;
&lt;br&gt;Am Freitag, 24. Oktober 2008 17:42 schrieb Sander Jansen:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; You have to make sure that whatever text you display in FXText is in UTF-8.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sander
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Fri, Oct 24, 2008 at 9:23 AM, woodchuck &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153101&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;woodchuck@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Dear all,
&lt;br&gt;&amp;gt; &amp;gt; i have a FXText widget for some output. The text may contain umlaute
&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;äöüÄÖÜ&amp;quot; etc. in a 8bit ascii encoding (written from other applications).
&lt;br&gt;&amp;gt; &amp;gt; Unfortunately i cant display them and they &amp;nbsp;&amp;quot;eat up&amp;quot; &amp;nbsp;the following 3
&lt;br&gt;&amp;gt; &amp;gt; characers of the text.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; If i enter some text from an other Widget in the application all umlaute
&lt;br&gt;&amp;gt; &amp;gt; are displayed correct.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Do you have any idea how to fix it?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks a lot
&lt;br&gt;&amp;gt; &amp;gt; Tom
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's
&lt;br&gt;&amp;gt; &amp;gt; challenge Build the coolest Linux based applications with Moblin SDK &amp;
&lt;br&gt;&amp;gt; &amp;gt; win great prizes Grand prize is a trip for two to an Open Source event
&lt;br&gt;&amp;gt; &amp;gt; anywhere in the world
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &amp;gt; Foxgui-users mailing list
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153101&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;/div&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153101&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/problems-with-german-umlaut-tp20151514p20153101.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20153061</id>
	<title>Re: problems with german umlaut</title>
	<published>2008-10-24T09:12:12Z</published>
	<updated>2008-10-24T09:12:12Z</updated>
	<author>
		<name>Jeroen van der Zijp</name>
	</author>
	<content type="html">On Friday 24 October 2008, woodchuck wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Dear all,
&lt;br&gt;&amp;gt; i have a FXText widget for some output. The text may contain umlaute &amp;quot;äöüÄÖÜ&amp;quot; 
&lt;br&gt;&amp;gt; etc. in a 8bit ascii encoding (written from other applications). 
&lt;br&gt;&amp;gt; Unfortunately i cant display them and they &amp;nbsp;&amp;quot;eat up&amp;quot; &amp;nbsp;the following 3 
&lt;br&gt;&amp;gt; characers of the text.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; If i enter some text from an other Widget in the application all umlaute are 
&lt;br&gt;&amp;gt; displayed correct.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Do you have any idea how to fix it?
&lt;/div&gt;&lt;br&gt;The font should be a UNICODE font. &amp;nbsp;Also, all strings in FOX are expected to
&lt;br&gt;be represented as UTF-8 internally...
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - Jeroen
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20153061&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/problems-with-german-umlaut-tp20151514p20153061.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20152550</id>
	<title>Re: problems with german umlaut</title>
	<published>2008-10-24T08:42:15Z</published>
	<updated>2008-10-24T08:42:15Z</updated>
	<author>
		<name>Sander Jansen</name>
	</author>
	<content type="html">You have to make sure that whatever text you display in FXText is in UTF-8.
&lt;br&gt;&lt;br&gt;Sander
&lt;br&gt;&lt;br&gt;On Fri, Oct 24, 2008 at 9:23 AM, woodchuck &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20152550&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;woodchuck@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Dear all,
&lt;br&gt;&amp;gt; i have a FXText widget for some output. The text may contain umlaute &amp;quot;äöüÄÖÜ&amp;quot;
&lt;br&gt;&amp;gt; etc. in a 8bit ascii encoding (written from other applications).
&lt;br&gt;&amp;gt; Unfortunately i cant display them and they &amp;nbsp;&amp;quot;eat up&amp;quot; &amp;nbsp;the following 3
&lt;br&gt;&amp;gt; characers of the text.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If i enter some text from an other Widget in the application all umlaute are
&lt;br&gt;&amp;gt; displayed correct.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Do you have any idea how to fix it?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks a lot
&lt;br&gt;&amp;gt; Tom
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;&amp;gt; Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;&amp;gt; Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Foxgui-users mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20152550&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&amp;quot;And any fool knows a dog needs a home
&lt;br&gt;A shelter from pigs on the wing&amp;quot;
&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20152550&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/problems-with-german-umlaut-tp20151514p20152550.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20151514</id>
	<title>problems with german umlaut</title>
	<published>2008-10-24T07:23:45Z</published>
	<updated>2008-10-24T07:23:45Z</updated>
	<author>
		<name>woodchuck-4</name>
	</author>
	<content type="html">Dear all,
&lt;br&gt;i have a FXText widget for some output. The text may contain umlaute &amp;quot;äöüÄÖÜ&amp;quot; 
&lt;br&gt;etc. in a 8bit ascii encoding (written from other applications). 
&lt;br&gt;Unfortunately i cant display them and they &amp;nbsp;&amp;quot;eat up&amp;quot; &amp;nbsp;the following 3 
&lt;br&gt;characers of the text.
&lt;br&gt;&lt;br&gt;If i enter some text from an other Widget in the application all umlaute are 
&lt;br&gt;displayed correct.
&lt;br&gt;&lt;br&gt;Do you have any idea how to fix it?
&lt;br&gt;&lt;br&gt;Thanks a lot
&lt;br&gt;Tom
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20151514&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/problems-with-german-umlaut-tp20151514p20151514.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20069915</id>
	<title>Re: question about fox - FXTable</title>
	<published>2008-10-20T06:25:26Z</published>
	<updated>2008-10-20T06:25:26Z</updated>
	<author>
		<name>Yves Colin</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;&amp;gt; I've got a FXTable in my Window and would like to color the text in some 
&lt;br&gt;&amp;gt; cells differently. The setTextColor command only works for the entire 
&lt;br&gt;&amp;gt; table and colors all cells in the same color. How can I &amp;quot;pick&amp;quot; a cell 
&lt;br&gt;&amp;gt; and only color its text without coloring the text of the other cells?
&lt;br&gt;&lt;br&gt;well I would be also very interested in such a possibility, the last time I searched for it, I couldn't find any.
&lt;br&gt;I finally used the following function to colour the particular cells that contain &amp;quot;erroneous information&amp;quot;:
&lt;br&gt;&amp;nbsp; 
&lt;br&gt;&amp;nbsp; table -&amp;gt; setItemStipple (row, col, STIPPLE_2);
&lt;br&gt;&lt;br&gt;Not so nice, but really better than nothing. 
&lt;br&gt;&lt;br&gt;have a nice day
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; Yves
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;____________________________________________________
&lt;br&gt;&lt;br&gt;Écoutez gratuitement Amy Winehouse sur Voila et découvrez d'autres titres en affinité avec vos goûts musicaux ! &lt;a href=&quot;http://musiline.voila.fr/resume/3599&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://musiline.voila.fr/resume/3599&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20069915&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/question-about-fox---FXTable-tp20062698p20069915.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20062698</id>
	<title>question about fox - FXTable</title>
	<published>2008-10-19T20:06:39Z</published>
	<updated>2008-10-19T20:06:39Z</updated>
	<author>
		<name>Doreen-12</name>
	</author>
	<content type="html">Dear all,
&lt;br&gt;&lt;br&gt;I've got a FXTable in my Window and would like to color the text in some 
&lt;br&gt;cells differently. The setTextColor command only works for the entire 
&lt;br&gt;table and colors all cells in the same color. How can I &amp;quot;pick&amp;quot; a cell 
&lt;br&gt;and only color its text without coloring the text of the other cells?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Doreen
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20062698&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/question-about-fox---FXTable-tp20062698p20062698.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-20062037</id>
	<title>FXChoicebox</title>
	<published>2008-10-19T17:40:51Z</published>
	<updated>2008-10-19T17:40:51Z</updated>
	<author>
		<name>John Selverian</name>
	</author>
	<content type="html">I'm using FXChoicebox for the first time, it is very convenient. &amp;nbsp;I have 6
&lt;br&gt;items to pick from but only the first 4 show up without scrolling. &amp;nbsp;Is there
&lt;br&gt;a way to make the size of the dialog larger so that the user does not have
&lt;br&gt;to scroll to see them all?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&lt;br&gt;John S
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
&lt;br&gt;Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
&lt;br&gt;Grand prize is a trip for two to an Open Source event anywhere in the world
&lt;br&gt;&lt;a href=&quot;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Foxgui-users mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=20062037&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Foxgui-users@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/foxgui-users&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/foxgui-users&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Fox-Toolkit---User-f14218.html&quot; embed=&quot;fixTarget[14218]&quot; target=&quot;_top&quot; &gt;Fox Toolkit - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/FXChoicebox-tp20062037p20062037.html" />
</entry>

</feed>
