< prev index next >

modules/web/src/main/java/javafx/scene/web/HTMLEditor.java

Print this page


   1 /*
   2  * Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.scene.web;
  27 
  28 

  29 import javafx.css.StyleableProperty;
  30 
  31 import javafx.scene.control.Control;
  32 
  33 import javafx.print.PrinterJob;
  34 import javafx.scene.control.Skin;
  35 
  36 
  37 /**
  38  * A control that allows for users to edit text, and apply styling to this text.
  39  * The underlying data model is HTML, although this is not shown visually to the
  40  * end-user.
  41  * @since JavaFX 2.0
  42  */
  43 public class HTMLEditor extends Control {
  44 
  45     /**
  46      * Creates a new instance of the HTMLEditor control.
  47      */
  48     public HTMLEditor() {
  49         ((StyleableProperty)super.skinClassNameProperty()).applyStyle(
  50             null,
  51             "javafx.scene.web.HTMLEditorSkin"
  52         );
  53         getStyleClass().add("html-editor");
  54     }
  55 
  56     @Override protected Skin<?> createDefaultSkin() {
  57         return new HTMLEditorSkin(this);
  58     }
  59 
  60     /**
  61      * Returns the HTML content of the editor.
  62      */
  63     public String getHtmlText() {
  64         return ((HTMLEditorSkin)getSkin()).getHTMLText();
  65     }
  66 
  67     /**
  68      * Sets the HTML content of the editor. Note that if the contentEditable
  69      * property on the <body> tag of the provided HTML is not set to true, the


   1 /*
   2  * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javafx.scene.web;
  27 
  28 
  29 import com.sun.javafx.scene.control.ControlHelper;
  30 import javafx.css.StyleableProperty;
  31 
  32 import javafx.scene.control.Control;
  33 
  34 import javafx.print.PrinterJob;
  35 import javafx.scene.control.Skin;
  36 
  37 
  38 /**
  39  * A control that allows for users to edit text, and apply styling to this text.
  40  * The underlying data model is HTML, although this is not shown visually to the
  41  * end-user.
  42  * @since JavaFX 2.0
  43  */
  44 public class HTMLEditor extends Control {
  45 
  46     /**
  47      * Creates a new instance of the HTMLEditor control.
  48      */
  49     public HTMLEditor() {
  50         ((StyleableProperty) ControlHelper.skinClassNameProperty(this)).applyStyle(
  51             null,
  52             "javafx.scene.web.HTMLEditorSkin"
  53         );
  54         getStyleClass().add("html-editor");
  55     }
  56 
  57     @Override protected Skin<?> createDefaultSkin() {
  58         return new HTMLEditorSkin(this);
  59     }
  60 
  61     /**
  62      * Returns the HTML content of the editor.
  63      */
  64     public String getHtmlText() {
  65         return ((HTMLEditorSkin)getSkin()).getHTMLText();
  66     }
  67 
  68     /**
  69      * Sets the HTML content of the editor. Note that if the contentEditable
  70      * property on the <body> tag of the provided HTML is not set to true, the


< prev index next >