This repository has been archived on 2022-02-10. You can view files and clone it, but cannot push or open issues or pull requests.
morse-converter/src/de/marcel_kapfer/c/morseconverter/Bug.java

112 lines
2.8 KiB
Java

/*
* This is a programm for Morse.
*
* Marcel Michael Kapfer
*
* GPL v3.0
*
* 2014
*
* Version: 1.0.0
*
*/
package de.marcel_kapfer.c.morseconverter;
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JLabel;
import javax.swing.border.TitledBorder;
public class Bug extends JDialog {
/**
*
*/
private static final long serialVersionUID = 1L;
private final JPanel contentPanel = new JPanel();
/**
* Launch the application.
*/
public static void main(String[] args) {
try {
Bug dialog = new Bug();
dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
dialog.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Create the dialog.
*/
public Bug() {
setUndecorated(true);
setResizable(false);
setBounds(100, 100, 450, 263);
getContentPane().setLayout(new BorderLayout());
contentPanel.setBorder(new EmptyBorder(0, 0, 0, 0));
getContentPane().add(contentPanel, BorderLayout.CENTER);
contentPanel.setLayout(null);
JPanel panel = new JPanel();
panel.setBorder(new TitledBorder(null, "Bug", TitledBorder.LEADING, TitledBorder.TOP, null, null));
panel.setBounds(5, 17, 436, 199);
contentPanel.add(panel);
panel.setLayout(null);
JLabel lblIntro = new JLabel("If you found a bug, please write me a mail to");
lblIntro.setBounds(5, 17, 325, 15);
panel.add(lblIntro);
JLabel lblAddress = new JLabel("marcelmichaelkapfer@yahoo.co.nz");
lblAddress.setBounds(5, 44, 419, 15);
panel.add(lblAddress);
JLabel lblTitleIntro = new JLabel("with the title");
lblTitleIntro.setBounds(5, 71, 92, 15);
panel.add(lblTitleIntro);
JLabel lblTitle = new JLabel("Bug in Morse Version [your program version]");
lblTitle.setBounds(5, 98, 316, 15);
panel.add(lblTitle);
JLabel lblDescription = new JLabel("a short description of the bug");
lblDescription.setBounds(5, 125, 426, 15);
panel.add(lblDescription);
JLabel lblReproduce = new JLabel("and how to re-produce the bug.");
lblReproduce.setBounds(5, 152, 325, 15);
panel.add(lblReproduce);
JLabel lblThanks = new JLabel("Thank you very much");
lblThanks.setBounds(5, 179, 148, 15);
panel.add(lblThanks);
{
JPanel buttonPane = new JPanel();
buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT));
getContentPane().add(buttonPane, BorderLayout.SOUTH);
{
JButton cancelButton = new JButton("Cancel");
cancelButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
setVisible(false);
dispose();
}
});
cancelButton.setActionCommand("Cancel");
buttonPane.add(cancelButton);
}
}
}
}