///import core ///import uicore (function() { var utils = baidu.editor.utils, UIBase = baidu.editor.ui.UIBase; var AutoTypeSetPicker = (baidu.editor.ui.AutoTypeSetPicker = function( options ) { this.initOptions(options); this.initAutoTypeSetPicker(); }); AutoTypeSetPicker.prototype = { initAutoTypeSetPicker: function() { this.initUIBase(); }, getHtmlTpl: function() { var me = this.editor, opt = me.options.autotypeset, lang = me.getLang("autoTypeSet"); var textAlignInputName = "textAlignValue" + me.uid, imageBlockInputName = "imageBlockLineValue" + me.uid, symbolConverInputName = "symbolConverValue" + me.uid; return ( '
' + '
' + "" + '" + '" + "" + '" + '" + "" + "" + '" + '" + "" + '" + '" + '" + "" + '" + '" + '" + "" + "
" + lang.mergeLine + '" + lang.delLine + "
" + lang.removeFormat + '" + lang.indent + "
" + lang.alignment + "' + '" + me.getLang("justifyleft") + '" + me.getLang("justifycenter") + '" + me.getLang("justifyright") + "
" + lang.imageFloat + "' + '" + me.getLang("default") + '" + me.getLang("justifyleft") + '" + me.getLang("justifycenter") + '" + me.getLang("justifyright") + "
" + lang.removeFontsize + '" + lang.removeFontFamily + "
" + lang.removeHtml + "
" + lang.pasteFilter + "
" + lang.symbol + "' + '" + lang.bdc2sb + '" + lang.tobdc + "" + "
" + "
" + "
" ); }, _UIBase_render: UIBase.prototype.render }; utils.inherits(AutoTypeSetPicker, UIBase); })();