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

📄 editor.java

📁 CRM源码This file describes some issues that should be implemented in future and how it should be imple
💻 JAVA
字号:
/*
 * Copyright 2006 Pavel Jbanov.
 * 
 * Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package com.jpavel.gwt.wysiwyg.client;

import com.queplix.core.client.common.event.EventSource;
import java.util.ArrayList;
import java.util.List;

import com.google.gwt.user.client.DOM;
import com.google.gwt.user.client.Timer;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.LoadListener;
import com.google.gwt.user.client.ui.SourcesLoadEvents;
import com.google.gwt.user.client.ui.VerticalPanel;
import com.google.gwt.user.client.ui.Widget;

public class Editor extends Composite implements SourcesLoadEvents {
    // -------------------- public events ------------------------
    public EventSource getToolbarEventSource() {
        return toolbar.getEventSource();
    }
    public EventSource getEditorEventSource() {
        return wysiwyg.getEventSource();
    }
    // ----------------- end of public events --------------------
    
	private EditorToolbar toolbar;
	private EditorWYSIWYG wysiwyg;

	private VerticalPanel container;
	
	// internal status
	private boolean initialized = false;
	
	// listeners
	private List loadListeners = new ArrayList();
	
	public Editor() {
		container = new VerticalPanel();
		
		container.setStyleName("Editor");

		EditorToolbar toolbar = getEditorToolbar();
		toolbar.setWidth("100%");
		container.add(toolbar);
		
		final EditorWYSIWYG wysiwyg = getEditorWYSIWYG();
		wysiwyg.setWidth("100%");
		container.add(wysiwyg);
		
		addLoadListener(new LoadListener() {
			public void onLoad(Widget sender) {
				initialized = true;
				
				if (tmpHTMLStorage != null) {
					getEditorWYSIWYG().setHTML(tmpHTMLStorage);
					tmpHTMLStorage = null;
				}
			}
			public void onError(Widget sender) {
			}
		});
		
		initWidget(container);
	}
	
	/**
	 * do not override it!
	 */
	protected void onLoad() {
		super.onLoad();
		
		if (!initialized) {
			load();
		} else if (tmpHTMLStorage != null) {
			getEditorWYSIWYG().setHTML(tmpHTMLStorage);
			tmpHTMLStorage = null;
		}
	}
	
	private void load() {
		wysiwyg.initFrame(wysiwyg.getFrame().getElement());
		
		new Timer() {
			public void run() {
				if (!EditorUtils.isGecko()) {
					wysiwyg.enableDesignMode();
				}
				
				new Timer() {
					public void run() {
						notifyLoadListeners();
					}
				}.schedule(50);
			}
		}.schedule(50);
	}

	public void setWidth(String width) {
		container.setWidth(width);
                wysiwyg.setWidth(width);
	}
	
	public String getWidth() {
		return DOM.getStyleAttribute(container.getElement(), "width");
	}

	public void setHeight(String height) {
		container.setHeight(height);
		wysiwyg.setHeight((EditorUtils.parseInt(height) - toolbar.getOffsetHeight()) + "px");
	}

	public String getHeight() {
		return DOM.getStyleAttribute(container.getElement(), "height");
	}
	
	public EditorToolbar getEditorToolbar() {
		if (toolbar == null) {
			toolbar = new EditorToolbar(this);
		}
		return toolbar;
	}
	
	public EditorWYSIWYG getEditorWYSIWYG() {
		if (wysiwyg == null) {
			wysiwyg = new EditorWYSIWYG(this);
		}
		return wysiwyg;
	}
	
	public void addLoadListener(LoadListener listener) {
		loadListeners.add(listener);
	}
	
	public void removeLoadListener(LoadListener listener) {
		loadListeners.remove(listener);
	}
	
	private void notifyLoadListeners() {
		for (int i = 0; i < loadListeners.size(); i++) {
			((LoadListener) loadListeners.get(i)).onLoad(this);
		}
	}
	
	public String getHTML() {
		return getEditorWYSIWYG().getHTML();
	}
	
	private String tmpHTMLStorage = null;
	
	public void setHTML(String _html) {
		if (isAttached()) {
			getEditorWYSIWYG().setHTML(_html);
		} else {
			tmpHTMLStorage = _html;
		}
	}
	
	public void execCommand(String command, boolean ui, String value) {
		EditorUtils.execCommand(this.getEditorWYSIWYG().getFrame().getElement(), command, ui, value);
	}

    public void setMemoType(int memoType) {
        toolbar.setMemoType(memoType);
    }
    
    public void setHasRecords(boolean hasRecords) {
        toolbar.setHasRecords(hasRecords);
    }
    
    public void pasteHTML(String html) {
        EditorUtils.doFocus(getEditorWYSIWYG().getFrame().getElement());
        EditorUtils.restoreSelection(getEditorWYSIWYG().getFrame().getElement());
        getEditorWYSIWYG().pasteHTML(html);
    }

    public void appendHTML(String html) {
        getEditorWYSIWYG().appendHTML(html);
    }

}

⌨️ 快捷键说明

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