List of usage examples for com.google.gwt.user.client.ui RichTextArea subclass-usage
From source file burrito.client.crud.widgets.FormattedRichTextArea.java
public class FormattedRichTextArea extends RichTextArea { private static final String CSS = "body { font-family: helvetica,arial,sans-serif; font-size: 12px } .video-embed { background-color: #e0e0e0; padding: 93px 5px; border: 1px solid black; width: 363px; height: 23px; display: block; user-select: none; text-align: center; font-weight: bold } .video-embed:before { content: \"VIDEO\" }"; @Override protected void onAttach() { super.onAttach();
From source file com.dianaui.universal.core.client.ui.gwt.RichTextArea.java
/** * @author <a href='mailto:donbeave@gmail.com'>Alexey Zhokhov</a> */ public class RichTextArea extends com.google.gwt.user.client.ui.RichTextArea implements HasId, HasValueChangeHandlers<String>, HasValue<String>, TakesValue<String>, LeafValueEditor<String> {
From source file com.qualogy.qafe.gwt.client.component.QRichTextArea.java
public class QRichTextArea extends RichTextArea implements HasEditable { public boolean isEditable() { boolean readOnly = DOM.getElementPropertyBoolean(getElement(), "readOnly"); return !readOnly; }
From source file cz.filmtit.client.subgestbox.PosteditBox.java
/**
* Variant of a TextBox with pop-up postedit suggestions taken from the given
* TranslationResult.
*
* The Postedit Box provides a textbox-like interface and visualizes the
* postedit results, offering a variety of means of navigation through them. It
From source file cz.filmtit.client.subgestbox.SubgestBox.java
/**
* Variant of a TextBox with pop-up suggestions taken from the given
* TranslationResult.
*
* The SubgestBox, or SUBtitle sugGESTion BOX, provides a textbox-like interface
* and visualizes the TM results, offering a variety of means of navigation
From source file nl.mpi.tg.eg.annotator.AnnotationEditor.java
/** * @since Jan 16, 2014 8:17:37 PM (creation date) * @author Peter Withers <peter.withers@mpi.nl> */ public class AnnotationEditor extends RichTextArea {
From source file org.freemedsoftware.gwt.client.widget.CustomRichTextArea.java
public class CustomRichTextArea extends RichTextArea implements HashSetter { protected String hashMapping = null; public void setHashMapping(String hm) { hashMapping = hm;
From source file org.pentaho.pat.client.ui.widgets.MDXRichTextArea.java
/**
*
*
* @created Oct 28, 2009
* @since 0.5.1
* @author Kees Romijn
From source file org.xwiki.gwt.user.client.ui.rta.RichTextArea.java
/** * Extends the rich text area provided by GWT to add support for advanced editing. * * @version $Id: 553a8207d7a2ae68366bcbfd1d1eaccef61fe690 $ */ public class RichTextArea extends com.google.gwt.user.client.ui.RichTextArea implements HasDoubleClickHandlers,
From source file uk.ac.ebi.fg.annotare2.web.gwt.editor.client.view.widget.RichTextAreaExtended.java
/** * @author Olga Melnichuk */ public class RichTextAreaExtended extends RichTextArea implements HasValueChangeHandlers<String>, HasValue<String> { private boolean hasHandlers;