<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Graph Forums — Graph on Linux]]></title>
		<link>https://forum.padowan.dk/viewtopic.php?id=695</link>
		<atom:link href="https://forum.padowan.dk/extern.php?action=feed&amp;tid=695&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Graph on Linux.]]></description>
		<lastBuildDate>Wed, 17 Apr 2013 07:45:18 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=2244#p2244</link>
			<description><![CDATA[<div class="quotebox"><cite>m255173 wrote:</cite><blockquote><p>Hope you Linux experts will take on <br />this tech challenge....</p></blockquote></div><p>This project is far from being forgotten, only moved to a back burner <img src="https://forum.padowan.dk/img/smilies/wink.png" width="15" height="15" alt="wink" />.&nbsp; Despite getting skilled with Matlab, I still use graph quite frequently <img src="https://forum.padowan.dk/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" />.&nbsp; Anyway, thanks for the enthusiasm - I&#039;m sure there are others who feel the same way.</p>]]></description>
			<author><![CDATA[null@example.com (RobertLM78)]]></author>
			<pubDate>Wed, 17 Apr 2013 07:45:18 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=2244#p2244</guid>
		</item>
		<item>
			<title><![CDATA[Re: Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=1964#p1964</link>
			<description><![CDATA[<p>+1 to make GRAPH<br />run native on LINUX !.</p><p>I plan to use UBUNTU &amp; Linux MINT,<br />once MS stops support for Win XP,<br />(April 2014? No more MS security updates = XP useless).</p><p>An <strong>UBUNTU &amp; Linux MINT version of GRAPH</strong>,<br />would be ** fantastic! ** ...</p><p>Hope you Linux experts will take on <br />this tech challenge....</p><p><strong>SF99</strong></p>]]></description>
			<author><![CDATA[null@example.com (m255173)]]></author>
			<pubDate>Sun, 28 Oct 2012 12:48:35 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=1964#p1964</guid>
		</item>
		<item>
			<title><![CDATA[Re: Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=1844#p1844</link>
			<description><![CDATA[<p>Further discussion of this project has led us to think that Qt Creator will be the IDE of choice.&nbsp; Previously, concentrating on VCL had led us to Lazarus, but after considering how much of the code is is C++, Qt becomes the clear choice.&nbsp; This way we can use much more of the existing code, replacing those functions that are not cross-platform with Qt functions.&nbsp; This avenue should also allow following Windows development easier.&nbsp; </p><p>Note: If successful, this new compilation of Graph will be truly crossplatform and could theoretically replace the current version for Windows (which is why it was believed from the start to be more of a fork than a port).</p>]]></description>
			<author><![CDATA[null@example.com (RobertLM78)]]></author>
			<pubDate>Fri, 03 Aug 2012 20:09:04 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=1844#p1844</guid>
		</item>
		<item>
			<title><![CDATA[Re: Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=1840#p1840</link>
			<description><![CDATA[<p>Possible PDFLib-lite replacement : <br />sourceforge.net/projects/powerpdf<br />PowerPDF is a VCL to create PDF docment visually. Like QuickReport, you can design PDF document easily on Delphi IDE. PowerPDF requires Delphi 2007 or later.</p><p>PowerPDF has been ported to lazarus, and is present in the lazarus code and components repository.</p><p>I&#039;ve looked&nbsp; a bit into combining lazarus and c++ code, and this has some caveats.<br />Lazarus can use C code directly, but the C++ code needs to be declared as extern &quot;C&quot; and adhere to the C standard.<br />For C++ code that doesn&#039;t use this, a wrapper can be used that translates between lazarus and C++ code.<br />an example of such a wrapper is the code Lazarus uses to access Qt functions.</p><p>Lazarus executable code can be treated as a C library by other programs and doesn&#039;t require special wrappers or bindings.</p><p>We will have to look at each C++ sourcefile and determine what is better solution :<br />port the code to lazarus or create a wrapper.<br />I expect all of the code that uses VCL components or win32 functionality will need to be ported.</p><p>For C++ code that uses functions from the external libraries we&#039;ll have to check if gcc can link them to the external libraries.<br />If that&#039;s not possible, we can either change the C++ code to become compatible with gcc, or port this code to lazarus.</p><p>For those wondering why we just don&#039;t use gcc to compile everything : afaik as i know there are no crossplatform versions of the VCL and win32.<br />Both are proprietary software, and their owners (Codegear and Microsoft) show little interest in crossplatform support.</p>]]></description>
			<author><![CDATA[null@example.com (loneVVolf)]]></author>
			<pubDate>Mon, 30 Jul 2012 14:52:53 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=1840#p1840</guid>
		</item>
		<item>
			<title><![CDATA[Re: Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=1830#p1830</link>
			<description><![CDATA[<p>A comprehensive summary of the discourse about a Graph port.&nbsp; <br />---------------------------------------------------------------------------------------------------<br />Graph uses C++ with Borland CC++buiilder, and also has python code.</p><p>external libraries&nbsp; used :<br />gsl<br />dxgettext<br />boost<br />pdflib-lite<br />easyNSE<br />Borland VCL<br />win32</p><p>--------------------------------</p><p>When looking at the external libraries, it became clear quickly that the VCL is a major component for graph.&nbsp; At one point Borland released a crossplatform version of the VCL called kylix, but development on that was stopped long ago.<br />A search for linux alternatives resulted in the find of the Lazarus Component Library (LCL) . Lazarus is similar to Borland Delphi (the IDE where the borland VCL originated), and the LCL is their counterpart of the borland VCL.</p><ul><li><p><span class="bbu">Lazarus</span> uses Freepascal as compiler platform, supports multiple platforms and operating systems (see list and hyperlink in the post above).<br />&nbsp; &nbsp; &nbsp;It can also use C++ code, so the choice for a crossplatform environment was made easy.<br />&nbsp; &nbsp; &nbsp;Basically the crossplatform graph version will be designed within lazarus, and compiled with freepascal. That means the code will <br />&nbsp; &nbsp; &nbsp;be freepascal, with external C++ and Python parts where needed/smart.</p></li><li><p><span class="bbu">Gsl</span>, <span class="bbu">dxgettext</span> and <span class="bbu">boost</span> are crossplatform libraries, so they don&#039;t need replacements.</p></li><li><p><span class="bbu">pdflib-lite</span> is available for linux, but it is no longer maintained by the makers.<br />&nbsp; &nbsp; &nbsp;Looking for an alternative now.</p></li><li><p><span class="bbu">easyNSE</span>: website has been taken down and code appears to be windows only.<br />&nbsp; &nbsp; &nbsp; see delphihaters-dot-blogspot-dot-nl/2011/07/early-website-obituaries-mustangpeak-dot-html<br />&nbsp; &nbsp; &nbsp; We&#039;ll need to find an alternative</p></li><li><p><span class="bbu">win32</span><br />&nbsp; &nbsp; &nbsp;windows only<br />&nbsp; &nbsp; &nbsp;winelib from the wine project offers similar functionality, but is intended to make compiling windows applications on wine&nbsp; <br />&nbsp; &nbsp; &nbsp;easier.&nbsp; Also, winelib supports very few platforms. The functionality will need to be replaced from a crossplatfrom library; Qt 4.x&nbsp; <br />&nbsp; &nbsp; &nbsp;is mature and seems best choice for this.</p></li><li><p><span class="bbu">Python</span><br />&nbsp; &nbsp; &nbsp;multi-platform, well supported current graph python code requires python 2 , should be migrated to python 3 to be future&nbsp; <br />&nbsp; &nbsp; &nbsp;resistant.</p></li></ul>]]></description>
			<author><![CDATA[null@example.com (RobertLM78)]]></author>
			<pubDate>Mon, 23 Jul 2012 18:30:49 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=1830#p1830</guid>
		</item>
		<item>
			<title><![CDATA[Re: Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=1827#p1827</link>
			<description><![CDATA[<p>A short summary of thoughts and information so far:</p><p>It looks like porting Graph to Linux will at the same time make it truly multi-platform.&nbsp; Trying to reuse as much of the original C++ code as possible using Lazarus / Freepascal and filling in missing functions with Qt seems like the easiest path to take.&nbsp; Adopting the python 2 code for use with python 3 will be best for future development.</p><p>Note that both 32-bit and 64-bit versions are in the works for at least the Linux version (anyone with a 64-bit Windows, Mac, or other OS can help get a 64-bit version on those platforms).<br />-----------------------------------------------------------------------------------------------------------------------------------------------------<br />Lazarus Information</p><p>Supported Architectures<br />I386<br />PowerPC<br />Sparc (initially working, lots of additional work done)<br />AMD64 (x86-64)<br />PowerPC64<br />ARM </p><p>Supported Operating Systems<br />Windows<br />Linux<br />OS X<br />WinCE<br />Android<br />Iphone/Ipod</p><p>Links<br />wiki-dot-freepascal-dot-org</p>]]></description>
			<author><![CDATA[null@example.com (RobertLM78)]]></author>
			<pubDate>Sun, 22 Jul 2012 05:50:36 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=1827#p1827</guid>
		</item>
		<item>
			<title><![CDATA[Re: Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=1812#p1812</link>
			<description><![CDATA[<p>RobertLM78 asked me to help ,&nbsp; and i already exchanged a few mails with him about porting graph to linux.</p><p>Together we worked out several details already, more info will follow.</p>]]></description>
			<author><![CDATA[null@example.com (loneVVolf)]]></author>
			<pubDate>Wed, 18 Jul 2012 23:51:49 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=1812#p1812</guid>
		</item>
		<item>
			<title><![CDATA[Re: Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=1790#p1790</link>
			<description><![CDATA[<div class="quotebox"><cite>Ivan Johansen wrote:</cite><blockquote><p>I have been planning to port Graph to Linux for 10 years, but I lack the time. So it would be great if someone else wants to do it.</p></blockquote></div><p>I did download the source code for 4.3 a while back.&nbsp; I&#039;ll have to do some learning, but I will give it a shot, if I can get some tips on where to start <img src="https://forum.padowan.dk/img/smilies/wink.png" width="15" height="15" alt="wink" />.&nbsp; I&#039;ve skimmed the readme, and it looks like you used Borland C++ Builder, but as I said, I need some pointers getting started, as I&#039;m just an amateur/hobbiest (and a big fan of this application, and I&#039;d be willing to spend the time to do this very worth-while task for the benefit of the Linux community <img src="https://forum.padowan.dk/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" />).</p>]]></description>
			<author><![CDATA[null@example.com (RobertLM78)]]></author>
			<pubDate>Wed, 27 Jun 2012 08:26:21 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=1790#p1790</guid>
		</item>
		<item>
			<title><![CDATA[Re: Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=1787#p1787</link>
			<description><![CDATA[<p>I have been planning to port Graph to Linux for 10 years, but I lack the time. So it would be great if someone else wants to do it.</p>]]></description>
			<author><![CDATA[null@example.com (Ivan Johansen)]]></author>
			<pubDate>Sun, 24 Jun 2012 19:25:52 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=1787#p1787</guid>
		</item>
		<item>
			<title><![CDATA[Graph on Linux]]></title>
			<link>https://forum.padowan.dk/viewtopic.php?pid=1786#p1786</link>
			<description><![CDATA[<p>I guess I&#039;ll just start by saying how much I love this program and how very useful it has proven to be over the last few years - thank you all for putting it together <img src="https://forum.padowan.dk/img/smilies/smile.png" width="15" height="15" alt="smile" /> !</p><p>I am actually quite surprised that no one has yet ported Graph to Linux.&nbsp; It doesn&#039;t seem like it would be very hard to do.&nbsp; I wouldn&#039;t even mind help with a little how-to on compiling the code in Linux.&nbsp; While Wine runs Graph reasonably well most of the time, I&#039;d like to see Graph more natively integrated into the system <img src="https://forum.padowan.dk/img/smilies/wink.png" width="15" height="15" alt="wink" />. </p><p>Let me know what you think and thanks for reading <img src="https://forum.padowan.dk/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /> !!</p>]]></description>
			<author><![CDATA[null@example.com (RobertLM78)]]></author>
			<pubDate>Sat, 23 Jun 2012 19:24:59 +0000</pubDate>
			<guid>https://forum.padowan.dk/viewtopic.php?pid=1786#p1786</guid>
		</item>
	</channel>
</rss>
