(bad name :/)

This commit is contained in:
Dominik Dancs 2017-01-15 14:51:37 +01:00
parent e515b3dd03
commit 54c16089f4
17 changed files with 15 additions and 14 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target/

View File

@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>info.moow</groupId>
<artifactId>HGPL2GCODE</artifactId>
<artifactId>HPGL2GCODE</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>HGPL to GCode coverter for plotters</description>
<url>https://www.moow.info/project/HGPL2GCODE</url>
<name>HPGL2GCODE</name>
<description>HPGL to GCode coverter for plotters</description>
<url>https://www.moow.info/project/HPGL2GCODE</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

View File

@ -111,7 +111,7 @@
</Component>
<Component class="javax.swing.JLabel" name="jLabel2">
<Properties>
<Property name="text" type="java.lang.String" value="HGPL input"/>
<Property name="text" type="java.lang.String" value="HPGL input"/>
</Properties>
</Component>
<Container class="javax.swing.JScrollPane" name="jScrollPane1">
@ -162,7 +162,7 @@
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
<Font name="Tahoma" size="14" style="0"/>
</Property>
<Property name="text" type="java.lang.String" value="HGPL to GCode converter v1.0"/>
<Property name="text" type="java.lang.String" value="HPGL to GCode converter v1.0"/>
</Properties>
</Component>
<Component class="javax.swing.JProgressBar" name="jProgressBar1">
@ -177,7 +177,7 @@
</Component>
<Component class="javax.swing.JButton" name="jButton3">
<Properties>
<Property name="text" type="java.lang.String" value="Open HGPL"/>
<Property name="text" type="java.lang.String" value="Open HPGL"/>
</Properties>
<Events>
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jButton3ActionPerformed"/>

View File

@ -3,7 +3,7 @@
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package info.moow.hgpl2gcode;
package info.moow.hpgl2gcode;
import java.awt.Color;
import java.io.BufferedReader;
@ -37,7 +37,7 @@ public class GUI extends javax.swing.JFrame {
initComponents();
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLocationRelativeTo(null);
setTitle("HGPL to GCode converter v1.0");
setTitle("HPGL to GCode converter v1.0");
zup = 5;
feed = 30000;
@ -80,7 +80,7 @@ public class GUI extends javax.swing.JFrame {
jLabel1.setText("Feed Rate");
jLabel2.setText("HGPL input");
jLabel2.setText("HPGL input");
jTextArea1.setColumns(20);
jTextArea1.setRows(5);
@ -100,7 +100,7 @@ public class GUI extends javax.swing.JFrame {
jLabel3.setText("GCode output");
jLabel4.setFont(new java.awt.Font("Tahoma", 0, 14)); // NOI18N
jLabel4.setText("HGPL to GCode converter v1.0");
jLabel4.setText("HPGL to GCode converter v1.0");
jButton2.setText("Flush all");
jButton2.addActionListener(new java.awt.event.ActionListener() {
@ -109,7 +109,7 @@ public class GUI extends javax.swing.JFrame {
}
});
jButton3.setText("Open HGPL");
jButton3.setText("Open HPGL");
jButton3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton3ActionPerformed(evt);

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,5 @@
#Generated by Maven
#Sun Jan 15 13:57:55 CET 2017
#Sun Jan 15 14:49:48 CET 2017
version=1.0
groupId=info.moow
artifactId=HGPL2GCODE
artifactId=HPGL2GCODE