123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- MWF.xApplication.process.FormDesigner.Module = MWF.xApplication.process.FormDesigner.Module || {};
- MWF.xDesktop.requireApp("process.FormDesigner", "Module.$Element", null, false);
- MWF.xApplication.process.FormDesigner.Module.WpsOffice2 = MWF.FCWpsOffice2 = new Class({
- Extends: MWF.FC$Element,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "propertyPath": "../x_component_process_FormDesigner/Module/WpsOffice2/wpsoffice2.html"
- },
- initialize: function(form, options){
- this.setOptions(options);
- this.path = "../x_component_process_FormDesigner/Module/WpsOffice2/";
- this.cssPath = "../x_component_process_FormDesigner/Module/WpsOffice2/"+this.options.style+"/css.wcss";
- this._loadCss();
- this.moduleType = "element";
- this.moduleName = "wpsoffice2";
- this.form = form;
- this.container = null;
- this.containerNode = null;
- },
- _createMoveNode: function(){
- this.moveNode = new Element("div", {
- "MWFType": "wpsoffice2",
- "id": this.json.id,
- "styles": this.css.moduleNodeMove,
- "events": {
- "selectstart": function(){
- return false;
- }
- }
- }).inject(this.form.container);
- },
- _createNode: function(){
- this.node = this.moveNode.clone(true, true);
- this.node.setStyles(this.css.moduleNode);
- this.node.set("id", this.json.id);
- this.node.addEvent("selectstart", function(){
- return false;
- });
- this.iconNode = new Element("div", {
- "styles": this.css.iconNode
- }).inject(this.node);
- var icon = new Element("div", {
- "styles": this.css.iconNodeIcon
- }).inject(this.iconNode);
- var text = new Element("div", {
- "styles": this.css.iconNodeText,
- "text": "WpsOffice2"
- }).inject(this.iconNode);
- this.setIcon();
- },
- _loadNodeStyles: function(){
- this.iconNode = this.node.getElement("div").setStyles(this.css.iconNode);
- this.iconNode.getFirst("div").setStyles(this.css.iconNodeIcon);
- this.iconNode.getLast("div").setStyles(this.css.iconNodeText);
- this.setIcon();
- },
- setIconNode: function(img, txt, color, width){
- if (this.iconNode){
- this.iconNode.setStyle("width", width);
- var icon = this.iconNode.getFirst();
- var text = this.iconNode.getLast();
- icon.setStyle("background-image", "url("+this.path+this.options.style+"/icon/"+img+".png)");
- text.set("text", txt);
- text.setStyles({
- "color": color,
- "width": width-34
- });
- }
- },
- setIcon: function(){
- if (this.json.officeType=="word"){
- this.setIconNode("word", "Word", "#2b5797", 90);
- }
- if (this.json.officeType=="excel"){
- this.setIconNode("excel", "Excel", "#1e7145", 86);
- }
- if (this.json.officeType=="ppt"){
- this.setIconNode("ppt", "PowerPoint", "#d04525", 130);
- }
- if (this.json.officeType=="other"){
- this.setIconNode("office", "Office", "#f36523", 96);
- }
- },
- _setEditStyle_custom: function(name){
- if (name=="officeType"){
- this.setIcon();
- }
- },
- setNodeContainer:function(){
- this.node.empty();
- this.iconNode = new Element("div", {
- "styles": this.css.iconNode
- }).inject(this.node);
- var icon = new Element("div", {
- "styles": this.css.iconNodeIcon
- }).inject(this.iconNode);
- var text = new Element("div", {
- "styles": this.css.iconNodeText,
- "text": "WpsOffice2"
- }).inject(this.iconNode);
- this.setIcon();
- if(!layout.serviceAddressList["x_wpsfile2_assemble_control"]){
- this.tipNode = new Element("div",{"style":"text-align:center"}).inject(this.node);
- this.tipNode.set("html","<h3><font color=red>" + MWF.APPFD.LP.wpsoffice.nosetup + "</font></h3>");
- }
- this.setIcon();
- }
- });
|