Deutsch
<html> <head> </head> <script language="javascript"> function PageLoad() { /*var myMenu = new MainMenu('menu','test.xml');*/ var myMenu = new MainMenu('menu'); var menuFile = new MenuItem('File','File',null,'F'); var menuSave = new MenuItem('Save','Save','document.execCommand ("SaveAs")','S'); var menuExit = new MenuItem('Exit','Exit','Exit()','X'); ,null,'E'); var menuView = new MenuItem('View','View',null,'V'); var menuProg = new MenuItem('Prog','Initialized through program script','SelectOpt(this )'); var menuConf = new MenuItem('Conf','Initialisiert durch Konfigurationsdatei','SelectOpt(this)'); var menuChk1 = new MenuItem('Chk1','Test: Option 1 prüfen','CheckOpt(this)'); var menuChk2 = new MenuItem('Chk1','Test: Option 2 prüfen','CheckOpt(this)'); menuHelp = new MenuItem('Help','Help',null,'H'); var menuTopics = new MenuItem('Topics','Help Topic',null,'T'); ','Hilfeinhalt',null,'C'); var menuAbout = new MenuItem('About','About MenuItem','alert("MenuItem Ver1.00 by Akira(akira_cn@msn.com)")', 'A'); menuFile.addChild(menuExit); menuView.addChild(menuConf); menuChk.addChild(menuChk2); menuHelp.addChild(menuContent); menuHelp.addChild(menuFile); addItem(menu.addItem); myMenu.Show(); menuContent.Disable(); .Check(); } function contact() { warning('Contact us'); } function Exit() { self.opener = self.close( } function SelectOpt(target) { var editBox1 = document.getElementById ('editBox1'); var editBox2 = document.getElementById('editBox2'); if (target.id == 'Conf') { editBox1.style.display = "none"; } else { editBox2.style.display = "none"; editBox1.style.display = "block" } target.Select( } function CheckOpt(target) } </script> <body style='padding:0 0 0 0;margin:0 0 0 0' onload='PageLoad()'> <textarea id="editBox1" style="width:100%;height:90%"> Initialisiert die Hauptseite durch Programmmenü-Beispiel: <script> var myMenu = new MainMenu('menu'); var menuFile = new MenuItem('File','File',null,'F'); ' Save','document.execCommand("SaveAs")','S'); var menuExit = new MenuItem('Exit','Exit','Exit()','X'); ( 'Edit','Edit',null,'E'); var menuView = new MenuItem('View','View',null,'V'); var menuProg = new MenuItem('Prog','via program script Initialize','SelectOpt(this)'); var menuConf = new MenuItem('Conf','Initialize through Configuration File','SelectOpt(this)'); Komplexe Option 1','CheckOpt(this)'); var menuChk2 = new MenuItem('Chk1','Test: Check Option 2','CheckOpt(this)'); Help ',null,'H'); var menuTopics = new MenuItem('Topics','Help topic',null,'T'); C '); var menuAbout = new MenuItem ('About','AboutMenuItem','alert('MenuItem Ver1.00 by Akira(akira_cn@msn.com)')','A'); ; myMenu.addItem(menuEdit); myMenu.addItem(menuHelp); menuFile.addChild(menuConf); menuView.addLine(); //Separate Zeilen menuView.addChild(menuChk2); menuHelp.addChild(menuContent); ; myMenu.Show(); menuTopics.Disable(); menuProg.Select(); editBox2" style="width:100%;height:90%;display:none"> Beispiel für die Initialisierung des Hauptmenüs über eine Konfigurationsdatei: <!--xml-Konfigurationsdatei, speichern Sie sie beispielsweise als test.xml-- > <?xml version ="1.0" binding="gb2312" standalone="yes"?> <MainMenu> <MenuItem id="File" Text="File" Accelerator="F"> <MenuItem id="Save" Text ="Speichern" Accelerator ="S" onClick="document.execCommand('SaveAs')"/> <MenuItem id="Exit" Text="Exit" Accelerator="X" onClick="Exit()"/> < /MenuItem> <MenuItem id="Edit" Text="Edit" Accelerator="E" Disabled="true"> </MenuItem> <MenuItem id="View" Text="View" Accelerator="V"> <MenuItem id="Prog" Text="Initialisiert durch Programmskript" Selected="true" onClick="SelectOpt(this)"/> <MenuItem id="Conf" Text="Initialisiert durch Konfigurationsdatei" onClick="SelectOpt(this) "/> <MenuItem /> <MenuItem id="Chk1" Text="Test: Option 1 prüfen" Checked="true" onClick="CheckOpt(this)"/> <MenuItem id="Chk2" Text="Test: Option 2 prüfen“ onClick ="CheckOpt(this)"/> </MenuItem> <MenuItem id="Help" Text="Help" Accelerator="H"> <MenuItem id="Topics" Text="Help Topics" Accelerator ="T" Disabled ="true"/> <MenuItem id="Content" Text="Hilfeinhalt" Accelerator="C" Disabled="true"/> <MenuItem/> <MenuItem id="About" Text=" Über MenuItem" Accelerator= "A" onClick="alert('MenuItem Ver1.00 by Akira(akira_cn@msn.com)')"/> </MenuItem> </MainMenu> <script> var myMenu = new MainMenu(' menu','test .xml'); //Menüinformationen aus der Konfigurationsdatei lesen test.xml myMenu.Show(); </script> </textarea> </body> </html> <!---- ---- ---------------------------------------------- ---- --------------- Menüsteuerung Hauptprogrammteil Version 1.00 Akira (akira_cn@msn.com) --------------- - ------------------------------------------------- - ---> <script language="javascript"> function MenuItem(id, text, clickEvent, accelerator, subWidth) { this.id = null this.text = null; if (id == null) { this.id = "menu" + (new Date()).getTime(); } else this.id = id == null) { this .subWidth = 0; for (var i = 0; this.text != null && i < this.text.length; i++) { this.subWidth = this.subWidth - 0 + (text.charCodeAt(i) > 127 ? 20 : 10); } //this.subWidth = this.text != null ? this.text.length * 16 : 96;//100; } else this.subWidth = subWidth; onclick = function(){}; else this.onclick = function(){eval(clickEvent);} if (accelerator != null) //Tastenkombination { this.accelerator = accelerator } this.subMenuItems = new Array ( ); this.visible = false; this.selected = false; this.visible = false; "none"; } MenuItem.prototype.Show = function() { this.visible = true; this._span.EventHandler = this; this._span.onmouseover = function(){this.EventHandler._span_MouseOver(this,event);} this._span.onmouseout = function(){this.EventHandler._span_MouseOut(this,event) );} this._span.onclick = function(){this.EventHandler._span_Click(this,event);} this._span.style.color = "#000000"; } MenuItem.prototype.Disable = function() { this .disabled = true; this._span.onmouseover = function(){} this._span.onmouseout = function(){} this._span.onclick = function(){} this._span.style.color = "#ACA899" ; } MenuItem.prototype.Check = function() { if (!this.checked) { var textObj = document.createElement('b'); (var i = 0; i < this._span.childNodes.length - 1; i++) { this._span.appendChild(this._span.removeChild(this._span.childNodes[i])); } this.checked = true ; this._span.style.paddingLeft = "6px"; } else { this._span.removeChild(this._span.childNodes[0]); } } MenuItem.prototype.Select = function() { var parent = this.parent; for (var i = 0; i < parent.subMenuItems.length; i++) { parent.subMenuItems[i]._unselect(); liObj = document.createElement("li"); this._span.appendChild(liObj); for (var i = 0; i < this._span.childNodes.length - 1; i++) { liObj.appendChild(this._span. removeChild(this._span.childNodes[i])); } this.subWidth = this.subWidth - 0 + 16; } MenuItem.prototype ._unselect = function() { if (this.selected) { var liObj = this._span.removeChild(this._span.childNodes[0]); for (var i = 0; i < liObj.childNodes.length; i++) { this._span.appendChild(liObj.childNodes[i]); } this.selected = false; this._span.style.paddingLeft = "18px"; //this.subWidth = this.subWidth - 16; Prototyp.addChild = function(menuItem) { this.subMenuItems.push(menuItem); menuItem.parent = this; MenuItem.prototype.addLine = function() { this.addChild(new MenuItem() } MenuItem.prototype. hasChild = function() { return this.subMenuItems.length > 0; this._span = document.createElement("span"); ; if (this.text == null) { this._span.appendChild(document.createElement("hr")); ; this._span.style.marginBottom = "2px"; } else { if (accelerator != null) { var site = text.indexOf(accelerator) { var part1 = text.slice( 0, site); var part2 = text.slice(site + 1); var textNode2 = document.createTextNode(part2); var node = document.createElement("font"); .style.textDecoration = "underline"; node.innerText = accelerator; this._span.appendChild(node); this._span.appendChild(textNode2); createTextNode(text + "("); var node = document.createElement("font"); node.style.textDecoration = "underline"; node.innerText = accelerator; this._span.appendChild(textNode); this._span. appendChild(node); this._span.appendChild(document.createTextNode(")); this.subWidth = this.subWidth - 0 + 48; } } else { var textNode = document.createTextNode(text); .appendChild(textNode); } this._span.style.height = "20px"; this._span.style.marginTop = "2px"; this._span.style.fontSize = "12px"; this._span.style.paddingTop = "5px"; this._span.style.paddingRight = "10px"; ._span.onmouseover = function(){this.EventHandler._span_MouseOver(this,event);} this._span.onmouseout = function(){this.EventHandler._span_MouseOut(this,event);} this._span.onclick = Funktion (){this.EventHandler._span_Click(this,event);} } if (accelerator != null) { this.accelerator = accelerator.charCodeAt(0); } MenuItem.prototype.ShowSubmenu = function() { var pos = this .getObjPosition(); var subSpan = document.createElement("span"); subSpan.style.position = "absolute"; if(this.parent exampleof MainMenu) { subSpan.style.left = pos[0]; .top = pos[1] + this._span.clientHeight; } else { subSpan.style.left = pos[0] + this._span.clientWidth + 1; subSpan.style.top = pos[1]; style.paddingLeft = "0px"; subSpan.style.backgroundColor = "#FFFFFF"; subSpan.style.border = "solid 1px #ACA899"; ; subSpan.className = "subMenu"; subSpan.owner = this.id; //this._span.onmouseout = function(){} for (var i = 0; i < this.subMenuItems.length; i++) { this .subMenuItems[i]._span.style.marginTop = 0; this.subMenuItems[i]._span.style.marginBottom = 0; this.subMenuItems[i]._span.style.width = "100%"; .subWidth < this.subMenuItems[i].subWidth) { this.subWidth = this.subMenuItems[i].subWidth; } subSpan.appendChild(this.subMenuItems[i]._span } subSpan.style.width = this. subWidth > 96 ? this.subWidth : 96; //this._span.appendChild(subSpan); } MenuItem.prototype._span_Click = function(sender, event ) { if (!this.hasChild() || this.clickEvent) { this.hideSubmenu(true); } else { if(this.hasChild()) { this.ShowSubmenu(); parent._showSub = true; } } if (event.stopPropagation) event.stopProgpagation(); else event.cancelBubble = true; } MenuItem.prototype._span_MouseOver = function(sender, event) { this._activeMenu (Sender); if(this.hasChild() && (this.parent._showSub || this.parent exampleof MenuItem)) { this.ShowSubmenu(); } } MenuItem.prototype._span_MouseOut = function(sender, event) { this ._cleanMenu(sender); //this.hideSubmenu(); } MenuItem.prototype._activeMenu = function(menuSpan) { menuSpan.style.backgroundColor = "#FFFFFF"; .prototype._cleanMenu = function(menuSpan) { if (menuSpan.parentNode.className == "subMenu") menuSpan.style.backgroundColor = "#FFFFFF"; else menuSpan.style.backgroundColor = "#F1EEE5"; color = "#000000"; } MenuItem.prototype.hideSubmenu = function(bHideAll) { var subMenus = document.getElementsByTagName("span"); for (var i = subMenus.length - 1; i >= 0; i-- ) { if (subMenus[i].className == "subMenu" && (bHideAll || !this.isParentOf(subMenus[i].owner))) { if (bHideAll) { var parent = this.parent; while (parent != null) { parent._showSub = false; parent = parent.parent; } } subMenus[i].parentNode.removeChild(subMenus[i]); isParentOf = function(owner) { var parent = this.parent; while(parent != null) { if (owner == parent.id) return true; Koordinaten MenuItem.prototype.getObjPosition = function() { var objLeft = obj.offsetLeft; var objParent = obj.offsetParent; while (objParent.tagName != "BODY") { objLeft += objParent.offsetTop; objParent = objParent.offsetParent; } MenuItem.Instances[this.id] = this; ( this); if (document.body.onkeydown == null) { document.body.onkeydown = function() { for (var i = 0; i < MenuItem.Instances.All.length; i++) { if (MenuItem. Instanzen .All[i].accelerator != null) { if (event.altKey && event.keyCode == MenuItem.Instances.All[i].accelerator) { MenuItem.Instances.All[i]._span_Click.call(MenuItem . Instances.All[i],MenuItem.Instances.All[i]._span,event); if (document.body.onclick == null) { document.body.onclick = function() { MenuItem . Instances.All[0].hideSubmenu(true); } } } MenuItem.Instances = new Array(); MenuItem.Instances.All = new Array(); function MainMenu(id,cfgSrc) { this.items = new Array ( ); this.parent = null; this.id = id; MainMenu.prototype._loadCfg = function(src) //Aus der Konfigurationsdatei lesen { var objXMLDoc = new ActiveXObject("Microsoft.XMLDOM"); async = false; objXMLDoc.load(src); if (objXMLDoc.documentElement == null) throw new TypeError("XML-Dokumentparsing fehlgeschlagen! "); return objXMLDoc; } Catch(e) { Alert("XML-Dokument-Parsing fehlgeschlagen!"); throw new TypeError("XML-Dokument-Parsing fehlgeschlagen!"); } } MainMenu.prototype._applyCfg = function(element, menuItem) { var id = element.getAttribute("id"); var onClick = element.getAttribute("onClick"); subMenuItem = new MenuItem(id,text,onClick,Accelerator); if(menuItem != null) menuItem.addChild(subMenuItem); for (var i = 0; i < element.childNodes.length ; i++) { if (element.childNodes[i].tagName == "MenuItem") { this._applyCfg(element.childNodes[i], subMenuItem); } } } MainMenu.prototype._setStatus = function(xmlDoc) { var cfgElements = xmlDoc.getElementsByTagName("MenuItem"); for (var i = 0; i < cfgElements.length; i++) { var element = cfgElements[i]; var reviewed = element.getAttribute("Checked"); var selected = element.getAttribute("Selected"); varscribed = element.getAttribute("Disabled"); null) { continue; } if (checked == "true") { MenuItem.Instances[id].Check(); } if (selected == "true") { MenuItem.Instances[id].Select( } if (visible == "false") { MenuItem.Instances[id].Hide(); } if (disabled == "true") { MenuItem.Instances[id].Disable(); menuItem = function(id) { return this._find(id, this.items); } MainMenu.prototype._find = function(id, items) { for (var i = 0; i < items.length; i++) { if (items[i].id == id) { return items[i]; } if (items[i].subMenuItems.length > 0) { this._find(id, items[i].subMenuItems); null; } MainMenu.prototype.addItem = function(menuItem) { this.items.push(menuItem); menuItem.parent = this; } MainMenu.prototype.removeItem = function(id) { return this._delete(id, this. items); } MainMenu.prototype._delete = function(id, items) { for (var i = 0; i < items.length; i++) { if (items[i].id == id) { var item = items [i]; items.splice(i); return item; } if (items[i].subMenuItems.length) { this.find(id, items[i].subMenuItems); ._div = document.createElement("div"); this._div.style.height = "24px"; //document .body.appendChild(this._div); if(cfgSrc != null) { var objXMLDoc = this._loadCfg(cfgSrc); var rootElement = objXMLDoc.documentElement; if(rootElement.tagName != "MainMenu") Das XML-Dokument ist keine legale Hauptmenü-Konfigurationsdatei! (Der Tag-Name des Stammelements ist nicht MainMenu)"); throw new TypeError("Das XML-Dokument ist keine zulässige Hauptmenü-Konfigurationsdatei! (Der Tag-Name des Stammelements ist nicht MainMenu)"); } for ( var i = 0; i < rootElement .childNodes.length; i++) { if (rootElement.childNodes[i]).tagName == "MenuItem") { this._applyCfg(rootElement.childNodes[i]); (objXMLDoc); } MainMenu.prototype .Show = function() { document.body.appendChild(this._div); for (var i = 0; i < document.body.childNodes.length; i++) { if(document. body.childNodes[i].id != this.id) { document.body.appendChild(document.body.removeChild(document.body.childNodes[i])); for (var i = 0; i < this .items.length; i++) { this._div.appendChild(this.items[i]._span } } } </script>