edu.stanford.smi.protegex.owl.ui.widget.HTMLEditorPanel.java Source code

Java tutorial

Introduction

Here is the source code for edu.stanford.smi.protegex.owl.ui.widget.HTMLEditorPanel.java

Source

/*
 * The contents of this file are subject to the Mozilla Public License
 * Version 1.1 (the "License");  you may not use this file except in 
 * compliance with the License.  You may obtain a copy of the License at
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
 * the specific language governing rights and limitations under the License.
 *
 * The Original Code is Protege-2000.
 *
 * The Initial Developer of the Original Code is Stanford University. Portions
 * created by Stanford University are Copyright (C) 2007.  All Rights Reserved.
 *
 * Protege was developed by Stanford Medical Informatics
 * (http://www.smi.stanford.edu) at the Stanford University School of Medicine
 * with support from the National Library of Medicine, the National Science
 * Foundation, and the Defense Advanced Research Projects Agency.  Current
 * information about Protege can be obtained at http://protege.stanford.edu.
 *
 */

package edu.stanford.smi.protegex.owl.ui.widget;

import com.hexidec.ekit.EkitCore;
import edu.stanford.smi.protegex.owl.model.OWLModel;
import edu.stanford.smi.protegex.owl.model.RDFSLiteral;
import edu.stanford.smi.protegex.owl.ui.ProtegeUI;
import edu.stanford.smi.protegex.owl.ui.components.ComponentUtil;
import edu.stanford.smi.protegex.owl.ui.dialogs.ModalDialogFactory;
import org.apache.commons.lang.StringEscapeUtils;

import javax.swing.*;
import java.awt.*;

/**
 * @author Holger Knublauch  <holger@knublauch.com>
 */
public class HTMLEditorPanel extends JPanel {

    private EkitCore ekitCore;

    private JComboBox languageComboBox;

    public HTMLEditorPanel(OWLModel owlModel, RDFSLiteral literal) {
        this(owlModel, literal.getString(), literal.getLanguage());
    }

    public HTMLEditorPanel(String text) {
        this(null, text, null);
    }

    public HTMLEditorPanel(OWLModel owlModel, String text, String language) {
        setLayout(new BorderLayout());
        ekitCore = new EkitCore(null, null, null, null, false, true, true, null, null, false, false);
        ekitCore.setDocumentText(text);
        JPanel ekitTopPanel = new JPanel();
        ekitTopPanel.setLayout(new GridLayout(2, 1));
        ekitTopPanel.add(ekitCore.getMenuBar());
        ekitTopPanel.add(ekitCore.getToolBar(true));
        if (owlModel != null) {
            languageComboBox = ComponentUtil.createLanguageComboBox(owlModel, language);
            Box languagePanel = Box.createHorizontalBox();
            languagePanel.add(new JLabel("Language: "));
            languagePanel.add(languageComboBox);
            add(BorderLayout.SOUTH, languagePanel);
        }
        add(BorderLayout.NORTH, ekitTopPanel);
        add(BorderLayout.CENTER, ekitCore);
    }

    public String getFullText() {
        return ekitCore.getDocumentText().trim();
    }

    public RDFSLiteral getRDFSLiteral(OWLModel owlModel) {
        String text = getText();
        if (text != null && !text.isEmpty()) {
            String lang = null;
            Object language = languageComboBox.getSelectedItem();
            if (language instanceof String && ((String) language).trim().length() > 0) {
                lang = ((String) language).trim();
            }
            return owlModel.createRDFSLiteral(text, lang);
        } else {
            return null;
        }
    }

    /**
     * HTML text was coming out as encoded string after going through HtmlEditorPanel.
     * Here we are decoding it back to it's original value, if any.
     *
     * Also, the EkitCore library wraps an empty string to <p style="margin-top: 0"> </p> tags,
     * which is weird. We are here adding a hack to remove the tags, if any.
     *
     * Hemed, 02-08-2017
     */
    public String getText() {
        String text = ekitCore.getDocumentBody().trim();
        if (text.startsWith("<p style=\"margin-top: 0\">")) {
            text = text.replace("<p style=\"margin-top: 0\">", "").replace(" </p>", "").trim();
        }
        return StringEscapeUtils.unescapeHtml(text);
    }

    public static String show(Component parent, String text, String title) {
        return show(parent, text, title, false);
    }

    public static String show(Component parent, String text, String title, boolean fullText) {
        HTMLEditorPanel panel = new HTMLEditorPanel(text);
        if (ProtegeUI.getModalDialogFactory().showDialog(parent, panel, title,
                ModalDialogFactory.MODE_OK_CANCEL) == ModalDialogFactory.OPTION_OK) {
            return fullText ? panel.getFullText() : panel.getText();
        } else {
            return null;
        }
    }

    public static RDFSLiteral show(Component parent, RDFSLiteral literal, String title, OWLModel owlModel) {
        HTMLEditorPanel panel = new HTMLEditorPanel(owlModel, literal);
        if (ProtegeUI.getModalDialogFactory().showDialog(parent, panel, title,
                ModalDialogFactory.MODE_OK_CANCEL) == ModalDialogFactory.OPTION_OK) {
            return panel.getRDFSLiteral(owlModel);
        } else {
            return null;
        }
    }
}