Archive for the ‘Sketsa’ Category

Netbeans Platform Options Dialog

Wednesday, September 5th, 2007

If you build an application on top of Netbeans Platform and wondering how to create the custom options or preferences panel (Menu Tool - Options), then this tutorial is for you. This tutorial based on Sketsa SVG Graphics Editor that create custom Options Dialog for storing canvas related thing in Netbeans ...

Netbeans Platform and Memory File System

Saturday, September 1st, 2007

Normally, using Netbeans Platform you have to use DataObject.find() and use the OpenCookie to open the DataObject (eg: file, etc) to be opened on the Editor TopComponent. However, for certain case, I do not have the file yet eg: in Sketsa menu File - New. We do not want to ...

How to convert SVG String to SVGDocument ?

Thursday, August 23rd, 2007

Just simply use StringReader to wrap your string and pass it to DocumentFactory as the example below Note: this sample utilize Apache Batik

Netbeans Platform and Most Recently Used files (MRU)

Thursday, August 9th, 2007

This is a tutorial on how to create most recently used files for the Netbeans Platform based application, like you see in the Sketsa or Citra FX. Note: this tutorial utilize the new NbPreferences available in the upcoming Netbeans 6

Symbol Library 2.1.0 released

Wednesday, August 8th, 2007

Today, we just released Sketsa Plugins Symbol Library 2.1.0, this plugins allows the user to drag and drop prebuild SVG symbol or shape into the canvas. This release add new symbols and minor enhancements.

Netbeans Platform parsing command line arguments

Wednesday, August 1st, 2007

New features in Netbeans Platform 6 is the ability to parsing command line, so let's try to parse command line to automatically open document on startup. This example below are using Sketsa SVG Editor as an example