📄 newobjectdialog.java
字号:
/*
* This file is part of Caliph & Emir.
*
* Caliph & Emir is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Caliph & Emir is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Caliph & Emir; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Copyright statement:
* --------------------
* (c) 2002-2005 by Mathias Lux (mathias@juggle.at)
* http://www.juggle.at, http://caliph-emir.sourceforge.net
*/
package at.lux.fotoannotation.dialogs;
import org.jdom.Element;
import org.jdom.Namespace;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class NewObjectDialog extends JDialog implements ActionListener, NewDescriptorDialogInterface {
JTextField name;
JTextArea freeText;
JButton ok, cancel;
Element objectDescriptor = null;
public NewObjectDialog(Frame owner) {
super(owner, true);
init();
}
private void init() {
setTitle("Create new semantic object");
JPanel labelPane = new JPanel(new GridLayout(0, 1));
JPanel inputPane = new JPanel(new GridLayout(0, 1));
JPanel buttonPane = new JPanel(new FlowLayout());
JPanel textPane = new JPanel(new BorderLayout());
ok = new JButton("OK");
ok.setActionCommand("ok");
ok.addActionListener(this);
cancel = new JButton("Cancel");
cancel.setActionCommand("cancel");
cancel.addActionListener(this);
buttonPane.add(ok);
buttonPane.add(cancel);
freeText = new JTextArea();
textPane.setBorder(BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(), "Description"));
textPane.add(new JScrollPane(freeText), BorderLayout.CENTER);
name = new JTextField();
// date = new JTextField(AnnotationToolkit.getMpeg7Time());
inputPane.add(name);
// inputPane.add(date);
labelPane.add(new JLabel("Name: "));
// labelPane.add(new JLabel("Date: "));
JPanel tmp = new JPanel(new BorderLayout());
tmp.add(labelPane, BorderLayout.WEST);
tmp.add(inputPane, BorderLayout.CENTER);
this.getContentPane().add(tmp, BorderLayout.NORTH);
this.getContentPane().add(textPane, BorderLayout.CENTER);
this.getContentPane().add(buttonPane, BorderLayout.SOUTH);
}
public void actionPerformed(ActionEvent e) {
if (e.getActionCommand().equals("ok")) {
if (createDocument())
this.setVisible(false);
} else if (e.getActionCommand().equals("cancel")) {
this.setVisible(false);
}
}
private boolean createDocument() {
boolean desc_created = false;
if (name.getText().length() > 0) {
Namespace mpeg7, xsi;
mpeg7 = Namespace.getNamespace("", "urn:mpeg:mpeg7:schema:2001");
xsi = Namespace.getNamespace("xsi", "http://www.w3.org/2001/XMLSchema-instance");
objectDescriptor = new Element("SemanticBase", mpeg7).setAttribute("type", "ObjectType", xsi);
Element label = new Element("Label", mpeg7).addContent(new Element("Name", mpeg7).addContent(name.getText()));
objectDescriptor.addContent(label);
if (freeText.getText().length() > 0) {
objectDescriptor.addContent(new Element("Definition", mpeg7).addContent(new Element("FreeTextAnnotation", mpeg7).addContent(freeText.getText())));
}
// if (date.getText().length() > 0) {
// objectDescriptor.addContent(new Element("Time", mpeg7).addContent(new Element("TimePoint", mpeg7).addContent(date.getText())));
// }
desc_created = true;
} else {
JOptionPane.showMessageDialog(this, "At least a name is required!");
}
return desc_created;
}
public Element createXML() {
return objectDescriptor;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -