diff --git a/trunk/.classpath b/trunk/.classpath index fc51864a..11ff8c8e 100644 --- a/trunk/.classpath +++ b/trunk/.classpath @@ -22,5 +22,9 @@ + + + + diff --git a/trunk/SIPRPSoft/lib/gnu-regexp-1.1.4.jar b/trunk/SIPRPSoft/lib/gnu-regexp-1.1.4.jar new file mode 100644 index 00000000..c3c8770b Binary files /dev/null and b/trunk/SIPRPSoft/lib/gnu-regexp-1.1.4.jar differ diff --git a/trunk/SIPRPSoft/lib/kafenio-config.jar b/trunk/SIPRPSoft/lib/kafenio-config.jar new file mode 100644 index 00000000..03c6af8c Binary files /dev/null and b/trunk/SIPRPSoft/lib/kafenio-config.jar differ diff --git a/trunk/SIPRPSoft/lib/kafenio-icons.jar b/trunk/SIPRPSoft/lib/kafenio-icons.jar new file mode 100644 index 00000000..fe9a2323 Binary files /dev/null and b/trunk/SIPRPSoft/lib/kafenio-icons.jar differ diff --git a/trunk/SIPRPSoft/lib/kafenio.jar b/trunk/SIPRPSoft/lib/kafenio.jar new file mode 100644 index 00000000..aa8dd290 Binary files /dev/null and b/trunk/SIPRPSoft/lib/kafenio.jar differ diff --git a/trunk/SIPRPSoft/src/siprp/TestKafenio.java b/trunk/SIPRPSoft/src/siprp/TestKafenio.java new file mode 100644 index 00000000..6f77ac69 --- /dev/null +++ b/trunk/SIPRPSoft/src/siprp/TestKafenio.java @@ -0,0 +1,33 @@ +package siprp; + +import java.awt.GridLayout; +import java.awt.event.WindowAdapter; +import java.awt.event.WindowEvent; + +import javax.swing.JFrame; + +import de.xeinfach.kafenio.KafenioPanel; +import de.xeinfach.kafenio.KafenioPanelConfiguration; + +public class TestKafenio +{ + + public static void main( String args[] ) + { + KafenioPanelConfiguration configuration = new KafenioPanelConfiguration(); + configuration.setLanguage( "pt" ); + KafenioPanel panel = new KafenioPanel( configuration ); + JFrame frm = new JFrame(); + frm.getContentPane().setLayout( new GridLayout( 1, 1 ) ); + frm.getContentPane().add( panel ); + frm.addWindowListener( new WindowAdapter(){ + public void windowClosing( WindowEvent e ) + { + System.exit( 0 ); + } + } ); + frm.setSize( 1024, 768 ); + frm.setVisible( true ); + } + +}