<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog @ SIB Visions &#187; zoom</title>
	<atom:link href="http://blog.sibvisions.com/tag/zoom/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.sibvisions.com</link>
	<description>Blog @ SIB Visions</description>
	<lastBuildDate>Mon, 30 Mar 2026 11:14:36 +0000</lastBuildDate>
		<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Zoom support for applications</title>
		<link>https://blog.sibvisions.com/2015/05/21/zoom-support-for-applications/</link>
		<comments>https://blog.sibvisions.com/2015/05/21/zoom-support-for-applications/#comments</comments>
		<pubDate>Thu, 21 May 2015 12:23:17 +0000</pubDate>
		<dc:creator>rjahn</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[JavaFX]]></category>
		<category><![CDATA[JVx]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://blog.sibvisions.com/?p=4401</guid>
		<description><![CDATA[Some weeks ago, JavaFX links of the week contained a very interesting link: It was about ZoomFX 1.0.1.
It's a zoomable pane for your JavaFX application.
There's another small project, called MagniFiX. It's a "simple" magnifier but different than ZoomFX.
Why was this so interesting for us?
In the past we had a lot of requests from customers for [...]]]></description>
			<content:encoded><![CDATA[<p>Some weeks ago, <a href="http://fxexperience.com/2015/05/javafx-links-of-the-week-may-4/">JavaFX links of the week</a> contained a very interesting link: It was about <a href="https://dejv78.github.io/news/zoomfx-version-1.0.1-released/">ZoomFX 1.0.1</a>.</p>
<p>It's a zoomable pane for your JavaFX application.<br />
There's another small project, called <a href="https://arnaudnouard.wordpress.com/2014/12/23/magnifix/">MagniFiX</a>. It's a "simple" magnifier but different than ZoomFX.</p>
<p><strong>Why was this so interesting for us?</strong></p>
<p>In the past we had a lot of requests from customers for automatic application scaling for simple touch devices (terminals). Usually we solved the problem with extra source code and specific fonts/control settings - horrible.</p>
<p>We had other requests about image zoom in/out features and charts, ...</p>
<p>So we thought that ZoomFX could be a very useful extension for our JavaFX UI. We tried the demo and configured a simple test application. But first: Maven. Not new: We aren't big fans.<br />
Sure, it wasn't hard to start a test application but we were suprised about the dependencies:</p>
<div class="codesnip-container" >
<div class="xml codesnip" style="font-family:monospace;"><span class="sc3"><span class="re1">&lt;dependency<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;groupId<span class="re2">&gt;</span></span></span>org.apache.commons<span class="sc3"><span class="re1">&lt;/groupId<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;artifactId<span class="re2">&gt;</span></span></span>commons-math3<span class="sc3"><span class="re1">&lt;/artifactId<span class="re2">&gt;</span></span></span><br />
<span class="sc3"><span class="re1">&lt;/dependency<span class="re2">&gt;</span></span></span></p>
<p><span class="sc3"><span class="re1">&lt;dependency<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;groupId<span class="re2">&gt;</span></span></span>com.github.dejv78.commons.jfx<span class="sc3"><span class="re1">&lt;/groupId<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;artifactId<span class="re2">&gt;</span></span></span>jfx-binding<span class="sc3"><span class="re1">&lt;/artifactId<span class="re2">&gt;</span></span></span><br />
<span class="sc3"><span class="re1">&lt;/dependency<span class="re2">&gt;</span></span></span></p>
<p><span class="sc3"><span class="re1">&lt;dependency<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;groupId<span class="re2">&gt;</span></span></span>com.github.dejv78.commons.jfx<span class="sc3"><span class="re1">&lt;/groupId<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;artifactId<span class="re2">&gt;</span></span></span>jfx-geometry<span class="sc3"><span class="re1">&lt;/artifactId<span class="re2">&gt;</span></span></span><br />
<span class="sc3"><span class="re1">&lt;/dependency<span class="re2">&gt;</span></span></span></p>
<p><span class="sc3"><span class="re1">&lt;dependency<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;groupId<span class="re2">&gt;</span></span></span>com.github.dejv78.commons.jfx<span class="sc3"><span class="re1">&lt;/groupId<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;artifactId<span class="re2">&gt;</span></span></span>jfx-input<span class="sc3"><span class="re1">&lt;/artifactId<span class="re2">&gt;</span></span></span><br />
<span class="sc3"><span class="re1">&lt;/dependency<span class="re2">&gt;</span></span></span></div>
</div>
<p>The overlays were saved as FXML and we thought that it's not a good idea for a library like ours. Anyway, we tried the integration in our lib and stopped suddenly because ZoomFX didn't work with our dynamic layouts. It simply didn't work out-of-the-box and it had too many dependencies for such a "simple" feature.</p>
<p>We had no luck... but we love researching new things. So we started with our own zoom implementation without any dependencies and also integrated in our UI. We made a short screencast of the result.</p>
<p><center><div class="wp-caption aligncenter nomargin" style="width: 570px"><iframe width="560" height="315" src="https://www.youtube.com/embed/rPPdejWwHoQ" frameborder="0" allowfullscreen></iframe><p class="wp-caption-text">Application coder</p></div></center></p>
<p>Every application and internal frame has this zoom feature because it was integrated in the UI implementation. We need to do some fine tuning, but it works great!</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.sibvisions.com/2015/05/21/zoom-support-for-applications/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
