Package org.vietspider.ui.htmlexplorer

Source Code of org.vietspider.ui.htmlexplorer.NodeEditor

package org.vietspider.ui.htmlexplorer;

import org.eclipse.swt.SWT;
import org.eclipse.swt.SWTException;
import org.eclipse.swt.accessibility.ACC;
import org.eclipse.swt.accessibility.AccessibleAdapter;
import org.eclipse.swt.accessibility.AccessibleControlAdapter;
import org.eclipse.swt.accessibility.AccessibleControlEvent;
import org.eclipse.swt.accessibility.AccessibleEvent;
import org.eclipse.swt.accessibility.AccessibleTextAdapter;
import org.eclipse.swt.accessibility.AccessibleTextEvent;
import org.eclipse.swt.events.KeyAdapter;
import org.eclipse.swt.events.KeyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Layout;
import org.eclipse.swt.widgets.List;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import org.eclipse.swt.widgets.TypedListener;

@SuppressWarnings("hiding")
public final class NodeEditor extends Composite {

  public Text text;
  protected List list;
  protected  int visibleItemCount = 5;
  public  Shell popup;
  protected  boolean hasFocus;
  protected  Listener listener, filter;
  protected  Color foreground, background;
  protected  Font font;  
  private int type = 0;
  private AddPathButton dialog;

  public NodeEditor (Composite parent, int style, HTMLExplorer explorer) {
    super (parent, style = checkStyle (style));

    int textStyle = SWT.MULTI | SWT.WRAP | SWT.V_SCROLL;
    if ((style & SWT.READ_ONLY) != 0) textStyle |= SWT.READ_ONLY;
    if ((style & SWT.FLAT) != 0) textStyle |= SWT.FLAT;
    text = new Text (this, textStyle);
    text.addKeyListener(new KeyAdapter() {
      @SuppressWarnings("unused")
      public void keyPressed(KeyEvent e) {
        dialog.computeShowArea(text);
      }
    });
   
    int arrowStyle = SWT.ARROW | SWT.DOWN;
    if ((style & SWT.FLAT) != 0) arrowStyle |= SWT.FLAT;

    listener = new Listener () {
      public void handleEvent (Event event) {
        if (popup == event.widget) {
          popupEvent (event);
          return;
        }
        if (text == event.widget) {
          textEvent (event);
          return;
        }
        if (list == event.widget) {
          listEvent (event);
          return;
        }
        if (NodeEditor.this == event.widget) {
          comboEvent (event);
          return;
        }
        if (getShell () == event.widget) {
          handleFocus (SWT.FocusOut);
        }
      }
    };

    filter = new Listener() {
      public void handleEvent(Event event) {
        Shell shell = ((Control)event.widget).getShell ();
        if (shell == NodeEditor.this.getShell ()) {
          handleFocus (SWT.FocusOut);
        }
      }
    };

    new NodeEditorSuggestion(this, explorer);

    int [] comboEvents = {SWT.Dispose, SWT.Move, SWT.Resize};
    for (int i=0; i<comboEvents.length; i++) this.addListener (comboEvents [i], listener);

    int [] textEvents = {SWT.KeyDown, SWT.KeyUp, SWT.Modify, SWT.MouseDown, SWT.MouseUp, SWT.Traverse, SWT.FocusIn};
    for (int i=0; i<textEvents.length; i++) text.addListener (textEvents [i], listener);

    createPopup(null, -1);
    initAccessible();
   
//    dialog = new AddPathButton(explorer, this);
  }
  static int checkStyle (int style) {
    int mask = SWT.BORDER | SWT.READ_ONLY | SWT.FLAT | SWT.LEFT_TO_RIGHT | SWT.RIGHT_TO_LEFT;
    return style & mask;
  }

  public void add (String string) {
    checkWidget();
    if (string == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    list.add (string);
  }

  public void add (String string, int index) {
    checkWidget();
    if (string == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    list.add (string, index);
  }

  public void addModifyListener (ModifyListener listener) {
    checkWidget();
    if (listener == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    TypedListener typedListener = new TypedListener (listener);
    addListener (SWT.Modify, typedListener);
  }
  public void addSelectionListener(SelectionListener listener) {
    checkWidget();
    if (listener == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    TypedListener typedListener = new TypedListener (listener);
    addListener (SWT.Selection,typedListener);
    addListener (SWT.DefaultSelection,typedListener);
  }

  void arrowEvent (Event event) {
    switch (event.type) {
    case SWT.FocusIn: {
      handleFocus (SWT.FocusIn);
      break;
    }
    case SWT.Selection: {
      dropDown (!isDropped ());
      break;
    }
    }
  }

  public void clearSelection () {
    checkWidget ();
    text.clearSelection ();
    list.deselectAll ();
  }
  void comboEvent (Event event) {
    switch (event.type) {
    case SWT.Dispose:
      if (popup != null && !popup.isDisposed ()) {
        list.removeListener (SWT.Dispose, listener);
        popup.dispose ();
      }
      Shell shell = getShell ();
      shell.removeListener (SWT.Deactivate, listener);
      Display display = getDisplay ();
      display.removeFilter (SWT.FocusIn, filter);
      popup = null
      text = null
      list = null
      break;
    case SWT.Move:
      dropDown (false);
      break;
    case SWT.Resize:
      internalLayout (false);
      break;
    }
  }

  public Point computeSize (int wHint, int hHint, boolean changed) {
    checkWidget ();
    int width = 0, height = 0;
    String[] items = list.getItems ();
    int textWidth = 0;
    GC gc = new GC (text);
    int spacer = gc.stringExtent (" ").x; //$NON-NLS-1$
    for (int i = 0; i < items.length; i++) {
      textWidth = Math.max (gc.stringExtent (items[i]).x, textWidth);
    }
    gc.dispose();
    Point textSize = text.computeSize (SWT.DEFAULT, SWT.DEFAULT, changed);
    Point listSize = list.computeSize (wHint, SWT.DEFAULT, changed);
    int borderWidth = getBorderWidth ();

    height = Math.max (hHint, textSize.y + 2*borderWidth);
    width = Math.max (wHint, Math.max (textWidth + 2*spacer + 2*borderWidth, listSize.x));
    return new Point (width, height);
  }

  void createPopup(String[] items, int selectionIndex) {   
    // create shell and list
    popup = new Shell (getShell (), SWT.NO_TRIM | SWT.ON_TOP);
    popup.setLayout(new FillLayout());
    int style = getStyle ();
    int listStyle = SWT.SINGLE | SWT.V_SCROLL | SWT.BORDER;
    if ((style & SWT.FLAT) != 0) listStyle |= SWT.FLAT;
    if ((style & SWT.RIGHT_TO_LEFT) != 0) listStyle |= SWT.RIGHT_TO_LEFT;
    if ((style & SWT.LEFT_TO_RIGHT) != 0) listStyle |= SWT.LEFT_TO_RIGHT;
    list = new List (popup, listStyle);     
    if (font != null) list.setFont (font);
    if (foreground != null) list.setForeground (foreground);
    list.setBackground (new Color(popup.getDisplay(), 230, 230, 230));

    int [] popupEvents = {SWT.Close, SWT.Paint, SWT.Deactivate};
    for (int i=0; i<popupEvents.length; i++) popup.addListener (popupEvents [i], listener);
    int [] listEvents = {SWT.MouseUp, SWT.Selection, SWT.Traverse, SWT.KeyDown, SWT.KeyUp, SWT.FocusIn, SWT.Dispose};
    for (int i=0; i<listEvents.length; i++) list.addListener (listEvents [i], listener);

    if (items != null) list.setItems (items);
    if (selectionIndex != -1) list.setSelection (selectionIndex);
  }

  public void deselect(int index) {
    checkWidget ();
    list.deselect (index);
  }

  public void deselectAll () {
    checkWidget ();
    list.deselectAll ();
  }

  void dropDown (boolean drop) {
    dropDown(drop, true);
  }

  public void dropDown (boolean drop, boolean focus) {
    if (drop == isDropped ()) return;
    if (!drop) {
      popup.setVisible (false);
      if (!isDisposed ()) {
        text.setFocus();
      }
      return;
    }

    if (getShell() != popup.getParent ()) {
      String[] items = list.getItems ();
      int selectionIndex = list.getSelectionIndex ();
      list.removeListener (SWT.Dispose, listener);
      popup.dispose();
      popup = null;
      list = null;
      createPopup (items, selectionIndex);
    }

    //    Point size = getSize ();
    int itemCount = list.getItemCount ();
    itemCount = (itemCount == 0) ? visibleItemCount : Math.min(visibleItemCount, itemCount);
    int itemHeight = list.getItemHeight () * itemCount;
    Point listSize = list.computeSize (SWT.DEFAULT, itemHeight, false);
    //    list.setBounds(1, 1, Math.min (size.x - 2, listSize.x), listSize.y);

    int index = list.getSelectionIndex ();
    if (index != -1) list.setTopIndex (index);
    Display display = getDisplay ();
    Rectangle listRect = list.getBounds ();
    Rectangle parentRect = display.map (getParent (), null, getBounds ());
    Point comboSize = getSize ();
    Rectangle displayRect = getMonitor ().getClientArea ();
    int width = Math.max(comboSize.x, listRect.width + 2);
    int height = listRect.height + 2;
    int x = parentRect.x;
    int y = parentRect.y + comboSize.y;
    if (y + height > displayRect.y + displayRect.height) y = parentRect.y - height;
    popup.setBounds (x, y, width, listSize.y);
    popup.setVisible (true);
    if(focus) list.setFocus ();
  }
  /*
   * Return the Label immediately preceding the receiver in the z-order,
   * or null if none.
   */
  Label getAssociatedLabel () {
    Control[] siblings = getParent ().getChildren ();
    for (int i = 0; i < siblings.length; i++) {
      if (siblings [i] == NodeEditor.this) {
        if (i > 0 && siblings [i-1] instanceof Label) {
          return (Label) siblings [i-1];
        }
      }
    }
    return null;
  }
  public Control [] getChildren () {
    checkWidget();
    return new Control [0];
  }
  /**
   * Gets the editable state.
   *
   * @return whether or not the reciever is editable
   *
   * @exception SWTException <ul>
   *    <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
   *    <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
   * </ul>
   *
   * @since 3.0
   */
  public boolean getEditable () {
    checkWidget ();
    return text.getEditable();
  }

  public String getItem (int index) {
    checkWidget();
    return list.getItem (index);
  }

  public int getItemCount () {
    checkWidget ();
    return list.getItemCount ();
  }

  public int getItemHeight () {
    checkWidget ();
    return list.getItemHeight ();
  }

  public String [] getItems () {
    checkWidget ();
    return list.getItems ();
  }
  char getMnemonic (String string) {
    int index = 0;
    int length = string.length ();
    do {
      while ((index < length) && (string.charAt (index) != '&')) index++;
      if (++index >= length) return '\0';
      if (string.charAt (index) != '&') return string.charAt (index);
      index++;
    } while (index < length);
    return '\0';
  }

  public Point getSelection () {
    checkWidget ();
    return text.getSelection ();
  }

  public int getSelectionIndex () {
    checkWidget ();
    return list.getSelectionIndex ();
  }
  public int getStyle () {
    int style = super.getStyle ();
    style &= ~SWT.READ_ONLY;
    if (!text.getEditable()) style |= SWT.READ_ONLY;
    return style;
  }

  public String getText () {
    checkWidget ();
    return text.getText ();
  }

  public int getTextHeight () {
    checkWidget ();
    return text.getLineHeight ();
  }

  public int getTextLimit () {
    checkWidget ();
    return text.getTextLimit ();
  }

  public int getVisibleItemCount () {
    checkWidget ();
    return visibleItemCount;
  }
  void handleFocus (int type) {
    if (isDisposed ()) return;
    switch (type) {
    case SWT.FocusIn: {
      if (hasFocus) return;
      if (getEditable ()) text.selectAll ();
      hasFocus = true;
      Shell shell = getShell ();
      shell.removeListener (SWT.Deactivate, listener);
      shell.addListener (SWT.Deactivate, listener);
      Display display = getDisplay ();
      display.removeFilter (SWT.FocusIn, filter);
      display.addFilter (SWT.FocusIn, filter);
      Event e = new Event ();
      notifyListeners (SWT.FocusIn, e);
      break;
    }
    case SWT.FocusOut: {
      if (!hasFocus) return;
      Control focusControl = getDisplay ().getFocusControl ();
      if ( focusControl == list || focusControl == text) return;
      hasFocus = false;
      Shell shell = getShell ();
      shell.removeListener(SWT.Deactivate, listener);
      Display display = getDisplay ();
      display.removeFilter (SWT.FocusIn, filter);
      Event e = new Event ();
      notifyListeners (SWT.FocusOut, e);
      break;
    }
    }
  }


  public int indexOf (String string) {
    checkWidget ();
    if (string == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    return list.indexOf (string);
  }

  public int indexOf (String string, int start) {
    checkWidget ();
    if (string == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    return list.indexOf (string, start);
  }

  void initAccessible() {
    AccessibleAdapter accessibleAdapter = new AccessibleAdapter () {
      public void getName (AccessibleEvent e) {
        String name = null;
        Label label = getAssociatedLabel ();
        if (label != null) {
          name = stripMnemonic (label.getText());
        }
        e.result = name;
      }
      public void getKeyboardShortcut(AccessibleEvent e) {
        String shortcut = null;
        Label label = getAssociatedLabel ();
        if (label != null) {
          String txt = label.getText ();
          if (txt != null) {
            char mnemonic = getMnemonic (txt);
            if (mnemonic != '\0') {
              shortcut = "Alt+"+mnemonic; //$NON-NLS-1$
            }
          }
        }
        e.result = shortcut;
      }
      public void getHelp (AccessibleEvent e) {
        e.result = getToolTipText ();
      }
    };
    getAccessible ().addAccessibleListener (accessibleAdapter);
    text.getAccessible ().addAccessibleListener (accessibleAdapter);
    list.getAccessible ().addAccessibleListener (accessibleAdapter);

    getAccessible().addAccessibleTextListener (new AccessibleTextAdapter() {
      public void getCaretOffset (AccessibleTextEvent e) {
        e.offset = text.getCaretPosition ();
      }
    });

    getAccessible().addAccessibleControlListener (new AccessibleControlAdapter() {
      public void getChildAtPoint (AccessibleControlEvent e) {
        Point testPoint = toControl (e.x, e.y);
        if (getBounds ().contains (testPoint)) {
          e.childID = ACC.CHILDID_SELF;
        }
      }

      public void getLocation (AccessibleControlEvent e) {
        Rectangle location = getBounds ();
        Point pt = toDisplay (location.x, location.y);
        e.x = pt.x;
        e.y = pt.y;
        e.width = location.width;
        e.height = location.height;
      }

      public void getChildCount (AccessibleControlEvent e) {
        e.detail = 0;
      }

      public void getRole (AccessibleControlEvent e) {
        e.detail = ACC.ROLE_COMBOBOX;
      }

      public void getState (AccessibleControlEvent e) {
        e.detail = ACC.STATE_NORMAL;
      }

      public void getValue (AccessibleControlEvent e) {
        e.result = getText ();
      }
    });

    text.getAccessible ().addAccessibleControlListener (new AccessibleControlAdapter () {
      public void getRole (AccessibleControlEvent e) {
        e.detail = text.getEditable () ? ACC.ROLE_TEXT : ACC.ROLE_LABEL;
      }
    });

  }

  boolean isDropped () {
    return popup.getVisible ();
  }

  public boolean isFocusControl () {
    checkWidget();
    if (text.isFocusControl () || list.isFocusControl () || popup.isFocusControl ()) {
      return true;
    }
    return super.isFocusControl ();
  }

  @SuppressWarnings("unused")
  void internalLayout (boolean changed) {
    if (isDropped ()) dropDown (false);
    Rectangle rect = getClientArea ();
    int width = rect.width;
    int height = rect.height;
    text.setBounds (0, 0, width, height);
  }

  void listEvent (Event event) {
    switch (event.type) {
    case SWT.Dispose:
      if (getShell () != popup.getParent ()) {
        String[] items = list.getItems ();
        int selectionIndex = list.getSelectionIndex ();
        popup = null;
        list = null;
        createPopup (items, selectionIndex);
      }
      break;
    case SWT.FocusIn: {
      handleFocus (SWT.FocusIn);
      break;
    }
    case SWT.MouseUp: {
      if (event.button != 1) return;
      dropDown (false);
      break;
    }
    case SWT.Selection: {
      int index = list.getSelectionIndex ();
      if (index == -1) return;
      setTextValue(list.getItem (index));
      list.setSelection (index);
      Event e = new Event ();
      e.time = event.time;
      e.stateMask = event.stateMask;
      e.doit = event.doit;
      notifyListeners (SWT.Selection, e);
      event.doit = e.doit;
      break;
    }
    case SWT.Traverse: {
      switch (event.detail) {
      case SWT.TRAVERSE_RETURN:
      case SWT.TRAVERSE_ESCAPE:
      case SWT.TRAVERSE_ARROW_PREVIOUS:
      case SWT.TRAVERSE_ARROW_NEXT:
        event.doit = false;
        break;
      }
      Event e = new Event ();
      e.time = event.time;
      e.detail = event.detail;
      e.doit = event.doit;
      e.character = event.character;
      e.keyCode = event.keyCode;
      notifyListeners (SWT.Traverse, e);
      event.doit = e.doit;
      event.detail = e.detail;
      break;
    }
    case SWT.KeyUp: {  
      Event e = new Event ();
      e.time = event.time;
      e.character = event.character;
      e.keyCode = event.keyCode;
      e.stateMask = event.stateMask;
      notifyListeners (SWT.KeyUp, e);
      break;
    }
    case SWT.KeyDown: {
      if (event.character == SWT.ESC) {
        // Escape key cancels popup list
        dropDown (false);
      }
      if ((event.stateMask & SWT.ALT) != 0
          && (event.keyCode == SWT.ARROW_UP || event.keyCode == SWT.ARROW_DOWN)) {
        dropDown (false);
      }
      if (event.character == SWT.CR) {
        // Enter causes default selection
        dropDown (false);
        Event e = new Event ();
        e.time = event.time;
        e.stateMask = event.stateMask;
        notifyListeners (SWT.DefaultSelection, e);
      }
      // At this point the widget may have been disposed.
      // If so, do not continue.
      if (isDisposed ()) break;
      Event e = new Event();
      e.time = event.time;
      e.character = event.character;
      e.keyCode = event.keyCode;
      e.stateMask = event.stateMask;
      notifyListeners(SWT.KeyDown, e);
      break;

    }
    }
  }

  void popupEvent(Event event) {
    switch (event.type) {
    case SWT.Paint:
      // draw black rectangle around list
      Rectangle listRect = list.getBounds();
      Color black = getDisplay().getSystemColor(SWT.COLOR_BLACK);
      event.gc.setForeground(black);
      event.gc.drawRectangle(0, 0, listRect.width + 1, listRect.height + 1);
      break;
    case SWT.Close:
      event.doit = false;
      dropDown (false);
      break;
    case SWT.Deactivate:
      dropDown (false);
      break;
    }
  }
  public void redraw () {
    super.redraw();
    text.redraw();
    if (popup.isVisible()) list.redraw();
  }
  @SuppressWarnings("unused")
  public void redraw (int x, int y, int width, int height, boolean all) {
    super.redraw(x, y, width, height, true);
  }

  public void remove (int index) {
    checkWidget();
    list.remove (index);
  }

  public void remove (int start, int end) {
    checkWidget();
    list.remove (start, end);
  }

  public void remove (String string) {
    checkWidget();
    if (string == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    list.remove (string);
  }

  public void removeAll () {
    checkWidget();
    setTextValue(null); //$NON-NLS-1$
    list.removeAll ();
  }

  public void removeModifyListener (ModifyListener listener) {
    checkWidget();
    if (listener == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    removeListener(SWT.Modify, listener);
  }

  public void removeSelectionListener (SelectionListener listener) {
    checkWidget();
    if (listener == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    removeListener(SWT.Selection, listener);
    removeListener(SWT.DefaultSelection,listener)
  }

  public void select (int index) {
    checkWidget();
    if (index == -1) {
      list.deselectAll ();
      setTextValue (null); //$NON-NLS-1$
      return;
    }

    if (0 <= index && index < list.getItemCount()) {
      if (index != getSelectionIndex()) {
        setTextValue(list.getItem (index));
        list.select (index);
        list.showSelection ();
      }
    }
  }
  public void setBackground (Color color) {
    super.setBackground(color);
    background = color;
    if (text != null) text.setBackground(color);
    if (list != null) list.setBackground(color);
  }

  public void setEditable (boolean editable) {
    checkWidget ();
    text.setEditable(editable);
  }
  public void setEnabled (boolean enabled) {
    super.setEnabled(enabled);
    if (popup != null) popup.setVisible (false);
    if (text != null) text.setEnabled(enabled);
  }

  public boolean setFocus () {
    checkWidget();
    return text.setFocus ();
  }

  public void setFont (Font font) {
    super.setFont (font);
    this.font = font;
    text.setFont (font);
    list.setFont (font);
    internalLayout (true);
  }
  public void setForeground (Color color) {
    super.setForeground(color);
    foreground = color;
    if (text != null) text.setForeground(color);
    if (list != null) list.setForeground(color);
  }

  public void setItem (int index, String string) {
    checkWidget();
    list.setItem (index, string);
  }

  public void setItems (String [] items) {
    checkWidget ();
    list.setItems (items);
    if (!text.getEditable ()) setTextValue (null); //$NON-NLS-1$
  }

  @SuppressWarnings("unused")
  public void setLayout (Layout layout) {
    checkWidget ();
    return;
  }

  public void setSelection (Point selection) {
    checkWidget();
    if (selection == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    text.setSelection (selection.x, selection.y);
  }

  public void setText (String string) {
    checkWidget();
    if (string == null) SWT.error (SWT.ERROR_NULL_ARGUMENT);
    int index = list.indexOf (string);
    if (index == -1) {
      list.deselectAll ();
      text.setText (string);
      return;
    }
    text.setText (string);
    text.selectAll ();
    list.setSelection (index);
    list.showSelection ();
  }

  private void setTextValue(String value) {
    if(value == null) {
      text.setText (""); //$NON-NLS-1$
      return;
    }

    StringBuilder builder = new StringBuilder();
    int caret = text.getCaretPosition();
    int length  = text.getCharCount();
    int end = 0;

    if(type == 0) {
      while(caret > 1) {
        String cv = text.getText(caret-1, caret);
        if(cv.length() < 1 || cv.charAt(0) == '[') break;
        caret--;
      }

      end = caret;
      while(end < length-1) {
        String cv = text.getText(end, end+1);
        if(cv.length() < 1 || cv.charAt(0) == ']') break;
        if(cv.charAt(0) == '.') {
          String attr = text.getText(caret, end);
          if(attr.indexOf('=') < 0) break;
        }
        end++;
      }
    } else if(type == 1){
      while(caret > 1) {
        String cv = text.getText(caret-1, caret);
        if(cv.length() < 1 || cv.charAt(0) == '.') break;
        caret--;
      }

      end = caret;
      while(end < length-1) {
        String cv = text.getText(end, end+1);
        if(cv.length() < 1 || cv.charAt(0) == '.') break;
        end++;
      }
    }

    if(caret < 1) return;

    builder.append(text.getText(0, caret-1)).append(value);
    if(end < length - 1) {
      builder.append(text.getText(end, length));
    }

    text.setText(builder.toString());
    if(end < length) {
      int newPos = caret+ value.length();
      text.setSelection(newPos, newPos);
    } else {
      text.setSelection(builder.length(), builder.length());
    }
    text.setFocus();
  }


  public void setTextLimit (int limit) {
    checkWidget();
    text.setTextLimit (limit);
  }

  public void setToolTipText (String string) {
    checkWidget();
    super.setToolTipText(string);
    text.setToolTipText (string);  
  }

  public void setVisible (boolean visible) {
    super.setVisible(visible);
    if (!visible) popup.setVisible(false);
  }

  public void setVisibleItemCount (int count) {
    checkWidget ();
    if (count < 0) return;
    visibleItemCount = count;
  }
  String stripMnemonic (String string) {
    int index = 0;
    int length = string.length ();
    do {
      while ((index < length) && (string.charAt (index) != '&')) index++;
      if (++index >= length) return string;
      if (string.charAt (index) != '&') {
        return string.substring(0, index-1) + string.substring(index, length);
      }
      index++;
    } while (index < length);
    return string;
  }
  void textEvent (Event event) {
    switch (event.type) {
    case SWT.FocusIn: {
      handleFocus (SWT.FocusIn);
      break;
    }
    case SWT.KeyDown: {
      if (event.character == SWT.CR) {
        dropDown (false);
        Event e = new Event ();
        e.time = event.time;
        e.stateMask = event.stateMask;
        notifyListeners (SWT.DefaultSelection, e);
      }
      //At this point the widget may have been disposed.
      // If so, do not continue.
      if (isDisposed ()) break;

      if (event.keyCode == SWT.ARROW_UP || event.keyCode == SWT.ARROW_DOWN) {
        event.doit = false;
        if ((event.stateMask & SWT.ALT) != 0) {
          boolean dropped = isDropped ();
          text.selectAll ();
          if (!dropped) setFocus ();
          dropDown (!dropped);
          break;
        }

        int oldIndex = getSelectionIndex ();
        if (event.keyCode == SWT.ARROW_UP && popup.isVisible()) {
          select (Math.max (oldIndex - 1, 0));
        } else if( popup.isVisible()) {
          select (Math.min (oldIndex + 1, getItemCount () - 1));
        }
        if (oldIndex != getSelectionIndex ()) {
          Event e = new Event();
          e.time = event.time;
          e.stateMask = event.stateMask;
          notifyListeners (SWT.Selection, e);
        }
        //At this point the widget may have been disposed.
        // If so, do not continue.
        if (isDisposed ()) break;
      }

      Event e = new Event ();
      e.time = event.time;
      e.character = event.character;
      e.keyCode = event.keyCode;
      e.stateMask = event.stateMask;
      notifyListeners (SWT.KeyDown, e);
      break;
    }

    case SWT.KeyUp: {
      Event e = new Event ();
      e.time = event.time;
      e.character = event.character;
      e.keyCode = event.keyCode;
      e.stateMask = event.stateMask;
      notifyListeners (SWT.KeyUp, e);
      break;
    }
    case SWT.Modify: {
      list.deselectAll ();
      Event e = new Event ();
      e.time = event.time;
      notifyListeners (SWT.Modify, e);
      break;
    }
    case SWT.MouseDown: {
      if (event.button != 1) return;
      if (text.getEditable ()) return;
      boolean dropped = isDropped ();
      text.selectAll ();
      if (!dropped) setFocus ();
      dropDown (!dropped);
      break;
    }
    case SWT.MouseUp: {
      if (event.button != 1) return;
      if (text.getEditable ()) return;
      text.selectAll ();
      break;
    }
    case SWT.Traverse: {   
      switch (event.detail) {
      case SWT.TRAVERSE_RETURN:
      case SWT.TRAVERSE_ARROW_PREVIOUS:
      case SWT.TRAVERSE_ARROW_NEXT:
        // The enter causes default selection and
        // the arrow keys are used to manipulate the list contents so
        // do not use them for traversal.
        event.doit = false;
        break;
      }

      Event e = new Event ();
      e.time = event.time;
      e.detail = event.detail;
      e.doit = event.doit;
      e.character = event.character;
      e.keyCode = event.keyCode;
      notifyListeners (SWT.Traverse, e);
      event.doit = e.doit;
      event.detail = e.detail;
      break;
    }
    }
  }
  public void setType(int type) { this.type = type; }
 
  public Text getTextComponent() { return text; }


}
TOP

Related Classes of org.vietspider.ui.htmlexplorer.NodeEditor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.