⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 newtimedialog.java

📁 图像检索的代码b
💻 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-2004 by Mathias Lux (mathias@juggle.at)
 * http://www.juggle.at
 */

/*
 * Created by Mathias Lux, mathias@juggle.at
 * @author Mathias Lux, mathias@juggle.at
 * Date: 24.09.2002
 * Time: 12:46:57
 */

package at.lux.fotoannotation.dialogs;

import at.lux.fotoannotation.AnnotationToolkit;
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 NewTimeDialog extends JDialog implements ActionListener, NewDescriptorDialogInterface {
    JTextField name, date;
    JTextArea freeText;
    JButton ok, cancel;
    Element timeDescriptor = null;

    public NewTimeDialog(Frame owner) {
        super(owner, true);
        init();
    }

    private void init() {
        setTitle("Create new SemanticTime 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");
            timeDescriptor = new Element("SemanticBase", mpeg7).setAttribute("type", "SemanticTimeType", xsi);
            Element label = new Element("Label", mpeg7).addContent(new Element("Name", mpeg7).addContent(name.getText()));
            timeDescriptor.addContent(label);
            if (freeText.getText().length() > 0) {
                timeDescriptor.addContent(new Element("Definition", mpeg7).addContent(new Element("FreeTextAnnotation", mpeg7).addContent(freeText.getText())));
            }
            if (date.getText().length() > 0) {
                timeDescriptor.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 timeDescriptor;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -