rem
stringlengths
0
126k
add
stringlengths
0
441k
context
stringlengths
15
136k
this.url = this.layer.getURL(this.bounds); this.imgDiv.style.display = "none"; if (this.layer.displayOutsideMaxExtent || (this.layer.maxExtent && (this.bounds.intersectsBounds(this.layer.maxExtent,false)) )) { if (this.layer.alpha) { OpenLayers.Util.modifyAlphaImageDiv(this.imgDiv, null, this.position, this.size, this.url); } else { this.imgDiv.src = this.url; OpenLayers.Util.modifyDOMElement(this.imgDiv, null, this.position, this.size) ; } }
this.drawn = true; return true;
draw:function() { OpenLayers.Tile.prototype.draw.apply(this, arguments); if (this.imgDiv == null) { this.initImgDiv(); } if (this.layer != this.layer.map.baseLayer && this.layer.reproject) { this.bounds = this.getBoundsFromBaseLayer(this.position); } this.url = this.layer.getURL(this.bounds); this.imgDiv.style.display = "none"; if (this.layer.displayOutsideMaxExtent || (this.layer.maxExtent && (this.bounds.intersectsBounds(this.layer.maxExtent,false)) )) { if (this.layer.alpha) { OpenLayers.Util.modifyAlphaImageDiv(this.imgDiv, null, this.position, this.size, this.url); } else { this.imgDiv.src = this.url; OpenLayers.Util.modifyDOMElement(this.imgDiv, null, this.position, this.size) ; } } },
this.drawn = true;
this.clear(); return ((this.layer.displayOutsideMaxExtent || (this.layer.maxExtent && this.bounds.intersectsBounds(this.layer.maxExtent, false))) && !(this.layer.buffer == 0 && !this.bounds.intersectsBounds(this.layer.map.getExtent(), false)));
draw:function() { this.drawn = true; },
if (transparent) {
if (false) {
draw:function(transparent) { if (transparent) { this.imgDiv = OpenLayers.Util.createAlphaImageDiv(null, this.position, this.size, this.url, "absolute"); } else { this.imgDiv = OpenLayers.Util.createImage(null, this.position, this.size, this.url, "absolute"); } this.layer.div.appendChild(this.imgDiv); },
if(this.options.scroll && (this.options.scroll != window)) {
if(this.options.scroll && (this.options.scroll != window && this._isScrollChild)) {
draw: function(point) { var pos = Position.cumulativeOffset(this.element); var d = this.currentDelta(); pos[0] -= d[0]; pos[1] -= d[1]; if(this.options.scroll && (this.options.scroll != window)) { pos[0] -= this.options.scroll.scrollLeft-this.originalScrollLeft; pos[1] -= this.options.scroll.scrollTop-this.originalScrollTop; } var p = [0,1].map(function(i){ return (point[i]-pos[i]-this.offset[i]) }.bind(this)); if(this.options.snap) { if(typeof this.options.snap == 'function') { p = this.options.snap(p[0],p[1],this); } else { if(this.options.snap instanceof Array) { p = p.map( function(v, i) { return Math.round(v/this.options.snap[i])*this.options.snap[i] }.bind(this)) } else { p = p.map( function(v) { return Math.round(v/this.options.snap)*this.options.snap }.bind(this)) } }} var style = this.element.style; if((!this.options.constraint) || (this.options.constraint=='horizontal')) style.left = p[0] + "px"; if((!this.options.constraint) || (this.options.constraint=='vertical')) style.top = p[1] + "px"; if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering },
var sz = new OpenLayers.Size(18,18);
var sz = new OpenLayers.Size(28,28);
draw: function() { OpenLayers.Control.prototype.draw.apply(this, arguments); this.buttons = new Object(); this.map.events.register( "dblclick", this, this.defaultDblClick ); this.map.events.register( "mousedown", this, this.defaultMouseDown ); this.map.events.register( "mouseup", this, this.defaultMouseUp ); this.map.events.register( "mousemove", this, this.defaultMouseMove ); this.map.events.register( "mouseout", this, this.defaultMouseOut ); var sz = new OpenLayers.Size(18,18); var centered = new OpenLayers.Pixel(100, 20); this._addButton("zoombox", "west-mini.png", "east-mini.png", centered, sz); return this.div; },
this._addButton("zoombox", "west-mini.png", "east-mini.png", centered, sz);
this._addButton("zoombox", "drag-rectangle-off.png", "drag-rectangle-on.png", centered, sz); this._addButton("pan", "panning-hand-off.png", "panning-hand-on.png", new OpenLayers.Pixel(100,47), sz);
draw: function() { OpenLayers.Control.prototype.draw.apply(this, arguments); this.buttons = new Object(); this.map.events.register( "dblclick", this, this.defaultDblClick ); this.map.events.register( "mousedown", this, this.defaultMouseDown ); this.map.events.register( "mouseup", this, this.defaultMouseUp ); this.map.events.register( "mousemove", this, this.defaultMouseMove ); this.map.events.register( "mouseout", this, this.defaultMouseOut ); var sz = new OpenLayers.Size(18,18); var centered = new OpenLayers.Pixel(100, 20); this._addButton("zoombox", "west-mini.png", "east-mini.png", centered, sz); return this.div; },
this._addButton("zoomout", "zoom-minus-mini.png", centered.add(0, sz.h*4+5), sz);
this._addButton("zoomworld", "zoom-world-mini.png", centered.add(0, sz.h*4+5), sz); this._addButton("zoomout", "zoom-minus-mini.png", centered.add(0, sz.h*5+5), sz);
draw: function(px) { // initialize our internal div OpenLayers.Control.prototype.draw.apply(this, arguments); px = this.position; // place the controls this.buttons = new Array(); var sz = new OpenLayers.Size(18,18); var centered = new OpenLayers.Pixel(px.x+sz.w/2, px.y); this._addButton("panup", "north-mini.png", centered, sz); px.y = centered.y+sz.h; this._addButton("panleft", "west-mini.png", px, sz); this._addButton("panright", "east-mini.png", px.add(sz.w, 0), sz); this._addButton("pandown", "south-mini.png", centered.add(0, sz.h*2), sz); this._addButton("zoomin", "zoom-plus-mini.png", centered.add(0, sz.h*3+5), sz); this._addButton("zoomout", "zoom-minus-mini.png", centered.add(0, sz.h*4+5), sz); return this.div; },
OpenLayers.Util.clearArray(this);
this.clear();
draw:function() { if (this.drawn) { OpenLayers.Util.clearArray(this); } OpenLayers.Tile.prototype.draw.apply(this, arguments); if (this.layer.displayOutsideMaxExtent || (this.layer.maxExtent && this.layer.maxExtent.intersectsBounds(this.bounds, false))) { this.loadFeaturesForRegion(this.requestSuccess); } },
quickElement('td', tableRow, ' ', 'bgcolor','#f3f3f3');
var _cell = quickElement('td', tableRow, ' '); _cell.style.backgroundColor = '#f3f3f3';
draw: function(month, year, div_id, callback) { // month = 1-12, year = 1-9999 month = parseInt(month); year = parseInt(year); var calDiv = document.getElementById(div_id); removeChildren(calDiv); var calTable = document.createElement('table'); quickElement('caption', calTable, CalendarNamespace.monthsOfYear[month-1] + ' ' + year); var tableBody = quickElement('tbody', calTable); // Draw days-of-week header var tableRow = quickElement('tr', tableBody); for (var i = 0; i < 7; i++) { quickElement('th', tableRow, CalendarNamespace.daysOfWeek[i]); } var startingPos = new Date(year, month-1, 1).getDay(); var days = CalendarNamespace.getDaysInMonth(month, year); // Draw blanks before first of month tableRow = quickElement('tr', tableBody); for (var i = 0; i < startingPos; i++) { quickElement('td', tableRow, ' ', 'bgcolor','#f3f3f3'); } // Draw days of month var currentDay = 1; for (var i = startingPos; currentDay <= days; i++) { if (i%7 == 0 && currentDay != 1) { tableRow = quickElement('tr', tableBody); } var cell = quickElement('td', tableRow, ''); quickElement('a', cell, currentDay, 'href', 'javascript:void(' + callback + '('+year+','+month+','+currentDay+'));'); currentDay++; } // Draw blanks after end of month (optional, but makes for valid code) while (tableRow.childNodes.length < 7) { quickElement('td', tableRow, ' ', 'bgcolor','#f3f3f3'); } calDiv.appendChild(calTable); }
if (this.drawn) { this.clear();
if (!OpenLayers.Tile.prototype.draw.apply(this, arguments)) { return false;
draw:function() { if (this.drawn) { this.clear(); } OpenLayers.Tile.prototype.draw.apply(this, arguments); if (this.layer.displayOutsideMaxExtent || (this.layer.maxExtent && this.layer.maxExtent.intersectsBounds(this.bounds, false))) { this.loadFeaturesForRegion(this.requestSuccess); } },
OpenLayers.Tile.prototype.draw.apply(this, arguments); if (this.layer.displayOutsideMaxExtent || (this.layer.maxExtent && this.layer.maxExtent.intersectsBounds(this.bounds, false))) { this.loadFeaturesForRegion(this.requestSuccess); }
this.loadFeaturesForRegion(this.requestSuccess); this.drawn = true; return true;
draw:function() { if (this.drawn) { this.clear(); } OpenLayers.Tile.prototype.draw.apply(this, arguments); if (this.layer.displayOutsideMaxExtent || (this.layer.maxExtent && this.layer.maxExtent.intersectsBounds(this.bounds, false))) { this.loadFeaturesForRegion(this.requestSuccess); } },
this.originalX = this.element.offsetLeft - this.currentLeft() - this.originalLeft; this.originalY = this.element.offsetTop - this.currentTop() - this.originalTop;
draw: function(event) { var style = this.element.style; this.originalX = this.element.offsetLeft - this.currentLeft() - this.originalLeft; this.originalY = this.element.offsetTop - this.currentTop() - this.originalTop; if((!this.options.constraint) || (this.options.constraint=='horizontal')) style.left = ((event.clientX - this.originalX) - this.offsetX) + "px"; if((!this.options.constraint) || (this.options.constraint=='vertical')) style.top = ((event.clientY - this.originalY) - this.offsetY) + "px"; if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering },
style.left = ((event.clientX - this.originalX) - this.offsetX) + "px";
style.left = (pointer[0] - offsets[0] - this.offsetX) + "px";
draw: function(event) { var style = this.element.style; this.originalX = this.element.offsetLeft - this.currentLeft() - this.originalLeft; this.originalY = this.element.offsetTop - this.currentTop() - this.originalTop; if((!this.options.constraint) || (this.options.constraint=='horizontal')) style.left = ((event.clientX - this.originalX) - this.offsetX) + "px"; if((!this.options.constraint) || (this.options.constraint=='vertical')) style.top = ((event.clientY - this.originalY) - this.offsetY) + "px"; if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering },
style.top = ((event.clientY - this.originalY) - this.offsetY) + "px";
style.top = (pointer[1] - offsets[1] - this.offsetY) + "px";
draw: function(event) { var style = this.element.style; this.originalX = this.element.offsetLeft - this.currentLeft() - this.originalLeft; this.originalY = this.element.offsetTop - this.currentTop() - this.originalTop; if((!this.options.constraint) || (this.options.constraint=='horizontal')) style.left = ((event.clientX - this.originalX) - this.offsetX) + "px"; if((!this.options.constraint) || (this.options.constraint=='vertical')) style.top = ((event.clientY - this.originalY) - this.offsetY) + "px"; if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering },
OpenLayers.Event.observe(window, "DOMMouseScroll", this.onWheelEvent.bindAsEventListener(this)); OpenLayers.Event.observe(window, "mousewheel", this.onWheelEvent.bindAsEventListener(this)); OpenLayers.Event.observe(document, "mousewheel", this.onWheelEvent.bindAsEventListener(this));
this.registerWheelEvents();
draw: function() { this.map.events.register( "click", this, this.defaultClick ); this.map.events.register( "dblclick", this, this.defaultDblClick ); this.map.events.register( "mousedown", this, this.defaultMouseDown ); this.map.events.register( "mouseup", this, this.defaultMouseUp ); this.map.events.register( "mousemove", this, this.defaultMouseMove ); this.map.events.register( "mouseout", this, this.defaultMouseOut ); //register mousewheel events specifically on the window and document OpenLayers.Event.observe(window, "DOMMouseScroll", this.onWheelEvent.bindAsEventListener(this)); OpenLayers.Event.observe(window, "mousewheel", this.onWheelEvent.bindAsEventListener(this)); OpenLayers.Event.observe(document, "mousewheel", this.onWheelEvent.bindAsEventListener(this)); },
"none");
"hidden");
draw: function(px) { OpenLayers.Popup.Anchored.prototype.draw.apply(this, arguments); // make the content Div var contentSize = this.size.copyOf(); contentSize.h -= (2 * OpenLayers.Popup.AnchoredBubble.CORNER_SIZE); var id = this.div.id + "-contentDiv"; this.contentDiv = OpenLayers.Util.createDiv(id, null, contentSize, null, "relative", null, "none"); this.div.appendChild(this.contentDiv); this.setContentHTML(); this.setRicoCorners(true); //set the popup color and opacity this.setBackgroundColor(); this.setOpacity(); return this.div; },
this.defaultKeyDown.bind(this.map));
this.defaultKeyDown.bind(this));
draw: function() { Event.observe(document, 'keypress', this.defaultKeyDown.bind(this.map)); },
this.div.style.zIndex = this.map.Z_INDEX_BASE['Control'] + this.map.controls.length;
draw: function () { if (this.div == null) { this.div = OpenLayers.Util.createDiv(); } return this.div; },
return this.image;
return this.imageDiv;
draw: function(px) { this.moveTo(px); return this.image; },
if(this.options.ghosting) { Position.prepare(); var r = Position.realOffset(this.element); window.status = r.inspect(); pos[0] += r[0] - Position.deltaX; pos[1] += r[1] - Position.deltaY; }
draw: function(point) { var pos = Position.cumulativeOffset(this.element); var d = this.currentDelta(); pos[0] -= d[0]; pos[1] -= d[1]; if(this.options.scroll && (this.options.scroll != window && this._isScrollChild)) { pos[0] -= this.options.scroll.scrollLeft-this.originalScrollLeft; pos[1] -= this.options.scroll.scrollTop-this.originalScrollTop; } var p = [0,1].map(function(i){ return (point[i]-pos[i]-this.offset[i]) }.bind(this)); if(this.options.snap) { if(typeof this.options.snap == 'function') { p = this.options.snap(p[0],p[1],this); } else { if(this.options.snap instanceof Array) { p = p.map( function(v, i) { return Math.round(v/this.options.snap[i])*this.options.snap[i] }.bind(this)) } else { p = p.map( function(v) { return Math.round(v/this.options.snap)*this.options.snap }.bind(this)) } }} var style = this.element.style; if((!this.options.constraint) || (this.options.constraint=='horizontal')) style.left = p[0] + "px"; if((!this.options.constraint) || (this.options.constraint=='vertical')) style.top = p[1] + "px"; if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering },
this.div.style.position = "absolute"; this.div.style.top = "10px"; this.div.style.right = "0px"; this.div.style.left = ""; this.div.style.fontFamily = "sans-serif"; this.div.style.color = "white"; this.div.style.fontWeight = "bold"; this.div.style.marginTop = "3px"; this.div.style.marginLeft = "3px"; this.div.style.marginBottom = "3px"; this.div.style.fontSize="smaller"; this.div.style.width = "10em";
this.loadContents();
draw: function() { // initialize our internal div OpenLayers.Control.prototype.draw.apply(this); this.div.style.position = "absolute"; this.div.style.top = "10px"; this.div.style.right = "0px"; this.div.style.left = ""; this.div.style.fontFamily = "sans-serif"; this.div.style.color = "white"; this.div.style.fontWeight = "bold"; this.div.style.marginTop = "3px"; this.div.style.marginLeft = "3px"; this.div.style.marginBottom = "3px"; this.div.style.fontSize="smaller"; this.div.style.width = "10em"; this.map.events.register("addlayer", this, this.redraw); this.map.events.register("removelayer", this, this.redraw); this.map.events.register("changelayer", this, this.redraw); return this.redraw(); },
this.map.events.register("addlayer", this, this.redraw); this.map.events.register("removelayer", this, this.redraw); this.map.events.register("changelayer", this, this.redraw); return this.redraw();
this.minimizeControl(); this.redraw(); return this.div;
draw: function() { // initialize our internal div OpenLayers.Control.prototype.draw.apply(this); this.div.style.position = "absolute"; this.div.style.top = "10px"; this.div.style.right = "0px"; this.div.style.left = ""; this.div.style.fontFamily = "sans-serif"; this.div.style.color = "white"; this.div.style.fontWeight = "bold"; this.div.style.marginTop = "3px"; this.div.style.marginLeft = "3px"; this.div.style.marginBottom = "3px"; this.div.style.fontSize="smaller"; this.div.style.width = "10em"; this.map.events.register("addlayer", this, this.redraw); this.map.events.register("removelayer", this, this.redraw); this.map.events.register("changelayer", this, this.redraw); return this.redraw(); },
gotoxy(1,colour_box_displayed);
console.gotoxy(1,colour_box_displayed);
function draw_colour_box(){ /* * Try to draw at the top unless the cursor is too close... then do it at * the bottom. */ if(ypos-topline<3) colour_box_displayed=edit_bottom-2; else colour_box_displayed=edit_top; gotoxy(1,colour_box_displayed); console.attributes=7; console.write("Foreground:"); console.putmsg("\x01N \x01H\x01WK:"); console.attributes=curattr&0xf8; console.write("Black"); console.putmsg("\x01N \x01H\x01WR:"); console.attributes=(curattr&0xf8)|RED; console.write("Red"); console.putmsg("\x01N \x01H\x01WG:"); console.attributes=(curattr&0xf8)|GREEN; console.write("Green"); console.putmsg("\x01N \x01H\x01WY:"); console.attributes=(curattr&0xf8)|BROWN; console.write("Yellow"); console.putmsg("\x01N \x01H\x01WB:"); console.attributes=(curattr&0xf8)|BLUE; console.write("Blue"); console.putmsg("\x01N \x01H\x01WM:"); console.attributes=(curattr&0xf8)|MAGENTA; console.write("Magenta"); console.putmsg("\x01N \x01H\x01WC:"); console.attributes=(curattr&0xf8)|CYAN; console.write("Cyan"); console.putmsg("\x01N \x01H\x01WW:"); console.attributes=(curattr&0xf8)|WHITE; console.write("White"); console.attributes=7; console.cleartoeol(); console.write("\r\nBackground:"); console.putmsg("\x01N \x01H\x01W0:"); console.attributes=curattr&0x8f; console.write("Black"); console.putmsg("\x01N \x01H\x01W1:"); console.attributes=(curattr&0x8f)|(RED<<4); console.write("Red"); console.putmsg("\x01N \x01H\x01W2:"); console.attributes=(curattr&0x8f)|(GREEN<<4); console.write("Green"); console.putmsg("\x01N \x01H\x01W3:"); console.attributes=(curattr&0x8f)|(BROWN<<4); console.write("Yellow"); console.putmsg("\x01N \x01H\x01W4:"); console.attributes=(curattr&0x8f)|(BLUE<<4); console.write("Blue"); console.putmsg("\x01N \x01H\x01W5:"); console.attributes=(curattr&0x8f)|(MAGENTA<<4); console.write("Magenta"); console.putmsg("\x01N \x01H\x01W6:"); console.attributes=(curattr&0x8f)|(CYAN<<4); console.write("Cyan"); console.putmsg("\x01N \x01H\x01W7:"); console.attributes=(curattr&0x8f)|(WHITE<<4); console.write("White"); console.attributes=7; console.cleartoeol(); console.write("\r\nSpecial:"); console.putmsg("\x01N \x01H\x01WH:"); console.attributes=curattr|0x08; console.write("High Intensity"); console.putmsg("\x01N \x01H\x01WI:"); console.attributes=curattr|0x80; console.write("Blinking"); console.putmsg("\x01N \x01H\x01WN:"); console.attributes=7; console.write("Normal"); console.attributes=7; console.write(" Choose Colour: "); console.cleartoeol();}
console.attributes=(curattr&0xf8)|WHITE;
console.attributes=(curattr&0xf8)|LIGHTGRAY;
function draw_colour_box(){ /* * Try to draw at the top unless the cursor is too close... then do it at * the bottom. */ if(ypos-topline<3) colour_box_displayed=edit_bottom-2; else colour_box_displayed=edit_top; console.gotoxy(1,colour_box_displayed); console.attributes=7; console.write("Foreground:"); console.putmsg("\x01N \x01H\x01WK:"); console.attributes=curattr&0xf8; console.write("Black"); console.putmsg("\x01N \x01H\x01WR:"); console.attributes=(curattr&0xf8)|RED; console.write("Red"); console.putmsg("\x01N \x01H\x01WG:"); console.attributes=(curattr&0xf8)|GREEN; console.write("Green"); console.putmsg("\x01N \x01H\x01WY:"); console.attributes=(curattr&0xf8)|BROWN; console.write("Yellow"); console.putmsg("\x01N \x01H\x01WB:"); console.attributes=(curattr&0xf8)|BLUE; console.write("Blue"); console.putmsg("\x01N \x01H\x01WM:"); console.attributes=(curattr&0xf8)|MAGENTA; console.write("Magenta"); console.putmsg("\x01N \x01H\x01WC:"); console.attributes=(curattr&0xf8)|CYAN; console.write("Cyan"); console.putmsg("\x01N \x01H\x01WW:"); console.attributes=(curattr&0xf8)|WHITE; console.write("White"); console.attributes=7; console.cleartoeol(); console.write("\r\nBackground:"); console.putmsg("\x01N \x01H\x01W0:"); console.attributes=curattr&0x8f; console.write("Black"); console.putmsg("\x01N \x01H\x01W1:"); console.attributes=(curattr&0x8f)|(RED<<4); console.write("Red"); console.putmsg("\x01N \x01H\x01W2:"); console.attributes=(curattr&0x8f)|(GREEN<<4); console.write("Green"); console.putmsg("\x01N \x01H\x01W3:"); console.attributes=(curattr&0x8f)|(BROWN<<4); console.write("Yellow"); console.putmsg("\x01N \x01H\x01W4:"); console.attributes=(curattr&0x8f)|(BLUE<<4); console.write("Blue"); console.putmsg("\x01N \x01H\x01W5:"); console.attributes=(curattr&0x8f)|(MAGENTA<<4); console.write("Magenta"); console.putmsg("\x01N \x01H\x01W6:"); console.attributes=(curattr&0x8f)|(CYAN<<4); console.write("Cyan"); console.putmsg("\x01N \x01H\x01W7:"); console.attributes=(curattr&0x8f)|(WHITE<<4); console.write("White"); console.attributes=7; console.cleartoeol(); console.write("\r\nSpecial:"); console.putmsg("\x01N \x01H\x01WH:"); console.attributes=curattr|0x08; console.write("High Intensity"); console.putmsg("\x01N \x01H\x01WI:"); console.attributes=curattr|0x80; console.write("Blinking"); console.putmsg("\x01N \x01H\x01WN:"); console.attributes=7; console.write("Normal"); console.attributes=7; console.write(" Choose Colour: "); console.cleartoeol();}
console.attributes=(curattr&0x8f)|(WHITE<<4);
console.attributes=(curattr&0x8f)|(LIGHTGRAY<<4);
function draw_colour_box(){ /* * Try to draw at the top unless the cursor is too close... then do it at * the bottom. */ if(ypos-topline<3) colour_box_displayed=edit_bottom-2; else colour_box_displayed=edit_top; console.gotoxy(1,colour_box_displayed); console.attributes=7; console.write("Foreground:"); console.putmsg("\x01N \x01H\x01WK:"); console.attributes=curattr&0xf8; console.write("Black"); console.putmsg("\x01N \x01H\x01WR:"); console.attributes=(curattr&0xf8)|RED; console.write("Red"); console.putmsg("\x01N \x01H\x01WG:"); console.attributes=(curattr&0xf8)|GREEN; console.write("Green"); console.putmsg("\x01N \x01H\x01WY:"); console.attributes=(curattr&0xf8)|BROWN; console.write("Yellow"); console.putmsg("\x01N \x01H\x01WB:"); console.attributes=(curattr&0xf8)|BLUE; console.write("Blue"); console.putmsg("\x01N \x01H\x01WM:"); console.attributes=(curattr&0xf8)|MAGENTA; console.write("Magenta"); console.putmsg("\x01N \x01H\x01WC:"); console.attributes=(curattr&0xf8)|CYAN; console.write("Cyan"); console.putmsg("\x01N \x01H\x01WW:"); console.attributes=(curattr&0xf8)|WHITE; console.write("White"); console.attributes=7; console.cleartoeol(); console.write("\r\nBackground:"); console.putmsg("\x01N \x01H\x01W0:"); console.attributes=curattr&0x8f; console.write("Black"); console.putmsg("\x01N \x01H\x01W1:"); console.attributes=(curattr&0x8f)|(RED<<4); console.write("Red"); console.putmsg("\x01N \x01H\x01W2:"); console.attributes=(curattr&0x8f)|(GREEN<<4); console.write("Green"); console.putmsg("\x01N \x01H\x01W3:"); console.attributes=(curattr&0x8f)|(BROWN<<4); console.write("Yellow"); console.putmsg("\x01N \x01H\x01W4:"); console.attributes=(curattr&0x8f)|(BLUE<<4); console.write("Blue"); console.putmsg("\x01N \x01H\x01W5:"); console.attributes=(curattr&0x8f)|(MAGENTA<<4); console.write("Magenta"); console.putmsg("\x01N \x01H\x01W6:"); console.attributes=(curattr&0x8f)|(CYAN<<4); console.write("Cyan"); console.putmsg("\x01N \x01H\x01W7:"); console.attributes=(curattr&0x8f)|(WHITE<<4); console.write("White"); console.attributes=7; console.cleartoeol(); console.write("\r\nSpecial:"); console.putmsg("\x01N \x01H\x01WH:"); console.attributes=curattr|0x08; console.write("High Intensity"); console.putmsg("\x01N \x01H\x01WI:"); console.attributes=curattr|0x80; console.write("Blinking"); console.putmsg("\x01N \x01H\x01WN:"); console.attributes=7; console.write("Normal"); console.attributes=7; console.write(" Choose Colour: "); console.cleartoeol();}
gotoxy(1,colour_box_displayed);
function draw_colour_box(){ /* * Try to draw at the top unless the cursor is too close... then do it at * the bottom. */ if(ypos-topline<3) colour_box_displayed=edit_bottom-2; else colour_box_displayed=edit_top; console.attributes=7; console.write("Foreground:"); console.putmsg("\x01N \x01H\x01WK:"); console.attributes=curattr&0xf8; console.write("Black"); console.putmsg("\x01N \x01H\x01WR:"); console.attributes=(curattr&0xf8)|RED; console.write("Red"); console.putmsg("\x01N \x01H\x01WG:"); console.attributes=(curattr&0xf8)|GREEN; console.write("Green"); console.putmsg("\x01N \x01H\x01WY:"); console.attributes=(curattr&0xf8)|BROWN; console.write("Yellow"); console.putmsg("\x01N \x01H\x01WB:"); console.attributes=(curattr&0xf8)|BLUE; console.write("Blue"); console.putmsg("\x01N \x01H\x01WM:"); console.attributes=(curattr&0xf8)|MAGENTA; console.write("Magenta"); console.putmsg("\x01N \x01H\x01WC:"); console.attributes=(curattr&0xf8)|CYAN; console.write("Cyan"); console.putmsg("\x01N \x01H\x01WW:"); console.attributes=(curattr&0xf8)|WHITE; console.write("White"); console.attributes=7; console.cleartoeol(); console.write("\r\nBackground:"); console.putmsg("\x01N \x01H\x01W0:"); console.attributes=curattr&0x8f; console.write("Black"); console.putmsg("\x01N \x01H\x01W1:"); console.attributes=(curattr&0x8f)|(RED<<4); console.write("Red"); console.putmsg("\x01N \x01H\x01W2:"); console.attributes=(curattr&0x8f)|(GREEN<<4); console.write("Green"); console.putmsg("\x01N \x01H\x01W3:"); console.attributes=(curattr&0x8f)|(BROWN<<4); console.write("Yellow"); console.putmsg("\x01N \x01H\x01W4:"); console.attributes=(curattr&0x8f)|(BLUE<<4); console.write("Blue"); console.putmsg("\x01N \x01H\x01W5:"); console.attributes=(curattr&0x8f)|(MAGENTA<<4); console.write("Magenta"); console.putmsg("\x01N \x01H\x01W6:"); console.attributes=(curattr&0x8f)|(CYAN<<4); console.write("Cyan"); console.putmsg("\x01N \x01H\x01W7:"); console.attributes=(curattr&0x8f)|(WHITE<<4); console.write("White"); console.attributes=7; console.cleartoeol(); console.write("\r\nSpecial:"); console.putmsg("\x01N \x01H\x01WH:"); console.attributes=curattr|0x08; console.write("High Intensity"); console.putmsg("\x01N \x01H\x01WI:"); console.attributes=curattr|0x80; console.write("Blinking"); console.putmsg("\x01N \x01H\x01WN:"); console.attributes=7; console.write("Normal"); console.attributes=7; console.write(" Choose Colour: "); console.cleartoeol();}
console.ctrlkey_passthru|=3246080;
function draw_main(topline){ /* * Called to re-display the main menu. * topline is false when the top line doesn't need redrawing. */ if(topline) cleararea(1,1,console.screen_columns,console.screen_rows,true); else cleararea(1,2,console.screen_columns,console.screen_rows,true);}
console.gotoxy(x+1,yp);
console.gotoxy(1,yp);
function draw_quote_line(l){ var yp; var x; if(l==undefined || isNaN(l)) return; yp=l-quote_topline+quote_top; /* Does this line even exist? */ if(quote_line[l]==undefined) { console.attributes=7; console.gotoxy(x+1,yp); console.cleartoeol(); } else { /* Is line on the current screen? */ if(yp<quote_top) return; if(yp>quote_bottom) return; console.gotoxy(1,yp); x=0; if(l==quote_ypos) { console.attributes=YELLOW; if(quote_line[l].selected) console.write('*'); else console.write('-'); x++; } else { if(quote_line[l].selected) { console.attributes=7; console.write('*'); x++; } } for(; x<quote_line[l].text.length && x<79; x++) { console.attributes=ascii(quote_line[l].attr.substr(x,1)); console.write(quote_line[l].text.substr(x,1)); } if(x<79) { console.attributes=7; console.cleartoeol(); } }}
this.drawCurrent = function() {
drawCurrent: function() {
this.drawCurrent = function() { CalendarNamespace.draw(this.currentMonth, this.currentYear, this.div_id, this.callback); }
}
},
this.drawCurrent = function() { CalendarNamespace.draw(this.currentMonth, this.currentYear, this.div_id, this.callback); }
this.drawDate = function(month, year) {
drawDate: function(month, year) {
this.drawDate = function(month, year) { this.currentMonth = month; this.currentYear = year; this.drawCurrent(); }
}
},
this.drawDate = function(month, year) { this.currentMonth = month; this.currentYear = year; this.drawCurrent(); }
if (px != null) {
if (px == null) { marker.display(false); } else {
drawMarker: function(marker) { var px = this.map.getLayerPxFromLonLat(marker.lonlat); if (px != null) { var markerImg = marker.draw(px); if (!marker.drawn) { this.div.appendChild(markerImg); marker.drawn = true; } } },
botright.x - topleft.x, botright.y - topleft.y);
Math.max(1, botright.x - topleft.x), Math.max(1, botright.y - topleft.y));
drawMarker: function(marker) { var bounds = marker.bounds; var topleft = this.map.getLayerPxFromLonLat( new OpenLayers.LonLat(bounds.left, bounds.top)); var botright = this.map.getLayerPxFromLonLat( new OpenLayers.LonLat(bounds.right, bounds.bottom)); if (botright == null || topleft == null) { marker.display(false); } else { var sz = new OpenLayers.Size( botright.x - topleft.x, botright.y - topleft.y); var markerDiv = marker.draw(topleft, sz); if (!marker.drawn) { this.div.appendChild(markerDiv); marker.drawn = true; } } },
this.drawNextMonth = function() {
drawNextMonth: function() {
this.drawNextMonth = function() { if (this.currentMonth == 12) { this.currentMonth = 1; this.currentYear++; } else { this.currentMonth++; } this.drawCurrent(); }
}
},
this.drawNextMonth = function() { if (this.currentMonth == 12) { this.currentMonth = 1; this.currentYear++; } else { this.currentMonth++; } this.drawCurrent(); }
this.drawNextYear = function() {
drawNextYear: function() {
this.drawNextYear = function() { this.currentYear++; this.drawCurrent(); }
this.drawPreviousMonth = function() {
drawPreviousMonth: function() {
this.drawPreviousMonth = function() { if (this.currentMonth == 1) { this.currentMonth = 12; this.currentYear--; } else { this.currentMonth--; } this.drawCurrent(); }
}
},
this.drawPreviousMonth = function() { if (this.currentMonth == 1) { this.currentMonth = 12; this.currentYear--; } else { this.currentMonth--; } this.drawCurrent(); }
this.drawPreviousYear = function() {
drawPreviousYear: function() {
this.drawPreviousYear = function() { this.currentYear--; this.drawCurrent(); }
}
},
this.drawPreviousYear = function() { this.currentYear--; this.drawCurrent(); }
this.setSpan(this.options.startSpan, $R(0, this.getRange(0).min()));
this.setSpan(this.options.startSpan, $R(0, this.values.length>1 ? this.getRange(0).min() : this.value ));
drawSpans: function() { var slider = this; if(this.spans) $R(0, this.spans.length-1).each(function(r) { slider.setSpan(slider.spans[r], slider.getRange(r)) }); if(this.options.startSpan) this.setSpan(this.options.startSpan, $R(0, this.getRange(0).min())); if(this.options.endSpan) this.setSpan(this.options.endSpan, $R(this.getRange(this.spans.length-1).max(), this.maximum)); },
this.setSpan(this.options.endSpan, $R(this.getRange(this.spans.length-1).max(), this.maximum));
this.setSpan(this.options.endSpan, $R(this.values.length>1 ? this.getRange(this.spans.length-1).max() : this.value, this.maximum));
drawSpans: function() { var slider = this; if(this.spans) $R(0, this.spans.length-1).each(function(r) { slider.setSpan(slider.spans[r], slider.getRange(r)) }); if(this.options.startSpan) this.setSpan(this.options.startSpan, $R(0, this.getRange(0).min())); if(this.options.endSpan) this.setSpan(this.options.endSpan, $R(this.getRange(this.spans.length-1).max(), this.maximum)); },
new Effect.Parallel(
element = $(element); var oldTop = element.style.top; var oldLeft = element.style.left; var oldOpacity = Element.getInlineOpacity(element); return new Effect.Parallel(
Effect.DropOut = function(element) { new Effect.Parallel( [ new Effect.MoveBy(element, 100, 0, { sync: true }), new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0 } ) ], { duration: 0.5, afterFinish: function(effect) { Element.hide(effect.effects[0].element); } });}
new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0 } ) ], { duration: 0.5, afterFinish: function(effect) { Element.hide(effect.effects[0].element); } });
new Effect.Opacity(element, { sync: true, to: 0.0 }) ], Object.extend( { duration: 0.5, beforeSetup: function(effect) { Element.makePositioned(effect.effects[0].element); }, afterFinishInternal: function(effect) { Element.hide(effect.effects[0].element); Element.undoPositioned(effect.effects[0].element); effect.effects[0].element.style.left = oldLeft; effect.effects[0].element.style.top = oldTop; Element.setInlineOpacity(effect.effects[0].element, oldOpacity); } }, arguments[1] || {}));
Effect.DropOut = function(element) { new Effect.Parallel( [ new Effect.MoveBy(element, 100, 0, { sync: true }), new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0 } ) ], { duration: 0.5, afterFinish: function(effect) { Element.hide(effect.effects[0].element); } });}
function DummyLogger() { };
var DummyLogger = function() {};
function DummyLogger() {};
if (e != _continue) throw e;
if (e != $continue) throw e;
each: function(iterator) { var index = 0; try { this._each(function(value) { try { iterator(value, index++); } catch (e) { if (e != _continue) throw e; } }); } catch (e) { if (e != _break) throw e; } },
if (e != _break) throw e;
if (e != $break) throw e;
each: function(iterator) { var index = 0; try { this._each(function(value) { try { iterator(value, index++); } catch (e) { if (e != _continue) throw e; } }); } catch (e) { if (e != _break) throw e; } },
break;
status_line();
function edit(quote_first){ var key; redraw_screen(); if(quote_first) { if(quote_mode()) return; } while(1) { set_cursor(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A (Colour) */ key=''; draw_colour_box(); while(key=='') { key=console.getkey(K_UPPER); switch(key) { case 'K': curattr&=0xf8; break; case 'R': curattr=(curattr&0xf8)|RED; break; case 'G': curattr=(curattr&0xf8)|GREEN; break; case 'Y': curattr=(curattr&0xf8)|BROWN; break; case 'B': curattr=(curattr&0xf8)|BLUE; break; case 'M': curattr=(curattr&0xf8)|MAGENTA; break; case 'C': curattr=(curattr&0xf8)|CYAN; break; case 'W': curattr=(curattr&0xf8)|LIGHTGRAY; break; case '0': curattr=(curattr&0x8f); break; case '1': curattr=(curattr&0x8f)|(RED<<4); break; case '2': curattr=(curattr&0x8f)|(GREEN<<4); break; case '3': curattr=(curattr&0x8f)|(BROWN<<4); break; case '4': curattr=(curattr&0x8f)|(BLUE<<4); break; case '5': curattr=(curattr&0x8f)|(MAGENTA<<4); break; case '6': curattr=(curattr&0x8f)|(CYAN<<4); break; case '7': curattr=(curattr&0x8f)|(LIGHTGRAY<<4); break; case 'H': curattr|=0x08; break; case 'I': curattr|=0x80; break; case 'N': curattr=7; break; case ctrl('R'): redraw_screen(); key=''; break; case "\x1b": /* ESC */ break; default: console.beep(); key=''; break; } } status_line(); erase_colour_box(); break; case '\x02': /* CTRL-B KEY_HOME */ last_xpos=-1; xpos=0; break; case '\x03': /* CTRL-C (Center Line) */ last_xpos=-1; line[ypos].hardcr=true; /* Trim leading/trailing whitespace */ line[ypos].text=line[ypos].text.replace(/^(\s*)(.*?)\s*$/,function (str, leading, t, offset, s) { line[ypos].attr=line[ypos].attr.substr(leading.length, t.length); xpos -= leading.length; if(xpos<0) xpos=0; return(t); }); var add=parseInt((80-line[ypos].text.length)/2); for(add=parseInt((80-line[ypos].text.length)/2); add>0; add--) { line[ypos].text=' '+line[ypos].text; line[ypos].attr=ascii(curattr)+line[ypos].attr; xpos++; } if(xpos>line[ypos].length) xpos=line[ypos].length; draw_line(ypos); break; case '\x04': /* CTRL-D (Quick Find in SyncEdit)*/ break; case '\x05': /* CTRL-E KEY_END */ last_xpos=-1; xpos=line[ypos].text.length; break; case '\x06': /* CTRL-F KEY_RIGHT */ last_xpos=-1; xpos++; if(xpos>line[ypos].text.length) { xpos--; console.beep(); } if(xpos>line[ypos].text.length) { if(line[ypos].hardcr) console.beep(); else { if(try_next_line()) x=0; } } break; case '\x07': /* CTRL-G (Beep) */ /* Enter Graphic Character */ key=get_graphic(); if(key=='') break; add_char(key); break; case '\x08': /* CTRL-H Backspace */ last_xpos=-1; if(xpos>0) { line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos); xpos--; } else { if(try_prev_line()) { xpos=line[ypos].text.length; line[ypos].hardcr=false; } } if(!rewrap()) draw_line(ypos,xpos); break; case '\x09': /* CTRL-I TAB... ToDo expand to spaces */ add_char(' '); while(xpos%8) add_char(' '); break; case '\x0a': /* CTRL-J KEY_DOWN (Insert Line in SyncEdit) */ if(last_xpos==-1) last_xpos=xpos; try_next_line(); break; case '\x0b': /* CTRL-K */ console.attributes=7; console.gotoxy(1,edit_top); console.write("Editing keys:"); console.cleartoeol(); console.write("\r\n CTRL-A - Change Colour CTRL-Q - Quick Abort (no save)"); console.cleartoeol(); console.write("\r\n CTRL-B - Move to beginning of line CTRL-R - Redraw screen"); console.cleartoeol(); console.write("\r\n CTRL-C - Center line on screen CTRL-T - Edit title"); console.cleartoeol(); console.write("\r\n CTRL-E - Move to end of line CTRL-U - Enter quote mode"); console.cleartoeol(); console.write("\r\n CTRL-F - Move right one character CTRL-V - Toggle insert mode"); console.cleartoeol(); console.write("\r\n CTRL-G - Enter graphic character CTRL-W - Delete word backwards"); console.cleartoeol(); console.write("\r\n CTRL-H - Backspace (BACKSPACE) CTRL-Y - Delete Line"); console.cleartoeol(); console.write("\r\n CTRL-I - Move to next tabstop (TAB) CTRL-Z - Save message and exit"); console.cleartoeol(); console.write("\r\n CTRL-J - Move down one line CTRL-] - Move left one character"); console.cleartoeol(); console.write("\r\n CTRL-L - Insert Line CTRL-^ - Move up one line"); console.cleartoeol(); console.write("\r\n CTRL-O - Page Up CTRL-_ - Quick Abort (no save)"); console.cleartoeol(); console.write("\r\n CTRL-P - Page Down CTRL-_ - Quick Abort (no save)"); console.cleartoeol(); console.write('\r\n'); console.cleartoeol(); console.write('\r\n'); console.write("Press any key to return to editing.."); console.cleartoeol(); console.write('\r\n'); console.cleartoeol(); console.up(); console.right(37); console.getkey(); redraw_screen(); break; case '\x0c': /* CTRL-L (Insert Line) */ /* ToDo: Should this kill last_xpos? */ add_new_line_below(ypos-1); xpos=0; break; case '\x0d': /* CTRL-M CR */ last_xpos=-1; if(insert) { add_new_line_below(ypos); /* Move all this to the next line... */ line[ypos+1].text=line[ypos].text.substr(xpos); line[ypos+1].attr=line[ypos].attr.substr(xpos); line[ypos+1].hardcr=line[ypos].hardcr; line[ypos].text=line[ypos].text.substr(0,xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos); line[ypos].hardcr=true; draw_line(ypos,xpos); if(line[ypos].kludged) { line[ypos+1].kludged=true; line[ypos].kludged=false; } draw_line(ypos+1); } try_next_line(); xpos=0; rewrap(); break; case '\x0e': /* CTRL-N */ break; case '\x0f': /* CTRL-O (Quick Save/exit in SyncEdit) */ if(last_xpos==-1) last_xpos=xpos; if(ypos==0) { console.beep(); break; } ypos-=lines_on_screen-1; if(ypos<0) ypos=0; if(topline>ypos) topline=ypos; var i; for(i=edit_top; i<=edit_bottom; i++) draw_line(i-edit_top+topline); xpos=last_xpos; if(xpos>line[ypos].text.length) xpos=line[ypos].text.length; break; case '\x10': /* CTRL-P */ if(last_xpos==-1) last_xpos=xpos; if(ypos>=line.length-1) { console.beep(); break; } ypos+=lines_on_screen-1; if(ypos>line.length-1) ypos=line.length-1; if(ypos>=topline+lines_on_screen) topline=ypos-lines_on_screen+1; var i; for(i=edit_top; i<=edit_bottom; i++) draw_line(i-edit_top+topline); xpos=last_xpos; if(xpos>line[ypos].text.length) xpos=line[ypos].text.length; break; case '\x11': /* CTRL-Q (XOff) (Quick Abort in SyncEdit) */ return; case '\x12': /* CTRL-R (Quick Redraw in SyncEdit) */ redraw_screen(); break; case '\x13': /* CTRL-S (Xon) */ break; case '\x14': /* CTRL-T (Justify Line in SyncEdit) */ if(edit_top==5) { console.gotoxy(7,1); var newsubj=console.getstr(subj, 70, K_LINE|K_EDIT|K_AUTODEL); if(newsubj!='') subj=newsubj; redraw_screen(); } break; case '\x15': /* CTRL-U (Quick Quote in SyncEdit) */ if(quote_line.length>0) { if(quote_mode()) return; } else console.beep(); break; case '\x16': /* CTRL-V (Toggle insert mode) */ insert=!insert; status_line(); break; case '\x17': /* CTRL-W (Delete Word) */ last_xpos=-1; /* Remove trailing part of word */ while(line[ypos].text.length>xpos && line[ypos].text.substr(xpos,1).search(/\s/)==-1) { line[ypos].text=line[ypos].text.substr(0,xpos) +line[ypos].text.substr(xpos+1); line[ypos].attr=line[ypos].attr.substr(0,xpos) +line[ypos].attr.substr(xpos+1); } /* Remove leading part */ while(xpos>0 && line[ypos].text.substr(xpos-1,1).search(/\s/)==-1) { line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos); xpos--; } /* * Remove Space... * Note that no matter what, we should delete a space. * We're either deleting the space from the end of the word if * this was the first word on the line, or the one before the * word otherwise. This puts the cursor on the previous word * if there is one and the next word if there isn't. This * allows multiple ^W to keep deleteing words in all cases. */ if(xpos) { /* Delete space before the deleted word */ line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos); xpos--; } else { /* Delete space after the word */ line[ypos].text=line[ypos].text.substr(1); line[ypos].attr=line[ypos].attr.substr(1); } draw_line(ypos,xpos); break; case '\x18': /* CTRL-X (PgDn in SyncEdit) */ break; case '\x19': /* CTRL-Y (Delete Line in SyncEdit) */ /* Delete Line */ /* ToDo: Should this kill last_xpos? */ if(line.length==1) line[0]=new Line; else line.splice(ypos,1); if(ypos>=line.length) ypos=line.length-1; if(last_xpos>=0) xpos=last_xpos; if(xpos>line[ypos].text.length) xpos=line[ypos].text.length; var i; console.write("\033[M"); /* Delete Line */ /* Redraw bottom line */ draw_line(topline+lines_on_screen-1); /* Old used to redraw everything after current for(i=ypos; i<topline+lines_on_screen; i++) draw_line(i); */ break; break; case '\x1a': /* CTRL-Z (EOF) (PgUp in SyncEdit) */ var f=new File((argc==0?system.temp_dir+"INPUT.MSG":argv[0])); f.open("w"); var s=make_strings(true,true); f.write(s[0]); f.close(); return; case '\x1b': /* ESC (This should parse extra ANSI sequences) */ break; case '\x1c': /* CTRL-\ (RegExp) */ break; case '\x1d': /* CTRL-] KEY_LEFT */ last_xpos=-1; xpos--; if(xpos<0) { console.beep(); xpos=0; } break; case '\x1e': /* CTRL-^ KEY_UP */ if(last_xpos==-1) last_xpos=xpos; try_prev_line(); break; case '\x1f': /* CTRL-_ Safe quick-abort*/ return; case '\x7f': /* DELETE */ last_xpos=-1; if(xpos>=line[ypos].text.length) /* delete the hardcr, */ line[ypos].hardcr=false; line[ypos].text=line[ypos].text.substr(0,xpos) +line[ypos].text.substr(xpos+1); line[ypos].attr=line[ypos].attr.substr(0,xpos) +line[ypos].attr.substr(xpos+1); if(!rewrap()) draw_line(ypos,xpos); break; default: /* Insert the char */ add_char(key); } }}
var f=new File(system.temp_dir+"INPUT.MSG"); var s=make_strings(true,true); f.write(s[0]);
function edit(){ var key; redraw_screen(); while(1) { key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A (Colour) */ key=''; draw_colour_box(); while(key=='') { key=console.getkey(K_UPPER); switch(key) { case 'K': curattr&=0xf8; break; case 'R': curattr=(curattr&0xf8)|RED; break; case 'G': curattr=(curattr&0xf8)|GREEN; break; case 'Y': curattr=(curattr&0xf8)|BROWN; break; case 'B': curattr=(curattr&0xf8)|BLUE; break; case 'M': curattr=(curattr&0xf8)|MAGENTA; break; case 'C': curattr=(curattr&0xf8)|CYAN; break; case 'W': curattr=(curattr&0xf8)|LIGHTGRAY; break; case '0': curattr=(curattr&0x8f); break; case '1': curattr=(curattr&0x8f)|(RED<<4); break; case '2': curattr=(curattr&0x8f)|(GREEN<<4); break; case '3': curattr=(curattr&0x8f)|(BROWN<<4); break; case '4': curattr=(curattr&0x8f)|(BLUE<<4); break; case '5': curattr=(curattr&0x8f)|(MAGENTA<<4); break; case '6': curattr=(curattr&0x8f)|(CYAN<<4); break; case '7': curattr=(curattr&0x8f)|(LIGHTGRAY<<4); break; case 'H': curattr|=0x08; break; case 'I': curattr|=0x80; break; case 'N': curattr=7; break; case ctrl('R'): redraw_screen(); key=''; break; case "\x1b": /* ESC */ break; default: console.beep(); key=''; break; } } status_line(); erase_colour_box(); break; case '\x02': /* KEY_HOME */ last_xpos=-1; xpos=0; set_cursor(); break; case '\x03': /* CTRL-C (Center Line) */ last_xpos=-1; line[ypos].hardcr=true; /* Trim leading/trailing whitespace */ line[ypos].text=line[ypos].text.replace(/^(\s*)(.*?)\s*$/,function (str, leading, t, offset, s) { line[ypos].attr=line[ypos].attr.substr(leading.length, t.length); xpos -= leading.length; if(xpos<0) xpos=0; return(t); }); var add=parseInt((80-line[ypos].text.length)/2); for(add=parseInt((80-line[ypos].text.length)/2); add>0; add--) { line[ypos].text=' '+line[ypos].text; line[ypos].attr=ascii(curattr)+line[ypos].attr; xpos++; } if(xpos>line[ypos].length) xpos=line[ypos].length; draw_line(ypos); set_cursor(); break; case '\x04': /* CTRL-D (Quick Find in SyncEdit)*/ break; case '\x05': /* KEY_END */ last_xpos=-1; xpos=line[ypos].text.length; set_cursor(); break; case '\x06': /* KEY_RIGHT */ last_xpos=-1; xpos++; if(xpos>line[ypos].text.length) { xpos--; console.beep(); } if(xpos>line[ypos].text.length) { if(line[ypos].hardcr) console.beep(); else { if(try_next_line()) x=0; } } set_cursor(); break; case '\x08': /* Backspace */ last_xpos=-1; if(xpos>0) { line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos); xpos--; } else { if(try_prev_line()) { xpos=line[ypos].text.length; line[ypos].hardcr=false; } } if(!rewrap()) draw_line(ypos,xpos); set_cursor(); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN (Insert Line in SyncEdit) */ if(last_xpos==-1) last_xpos=xpos; try_next_line(); set_cursor(); break; case '\x0b': /* CTRL-K */ break; case '\x0c': /* CTRL-L (Insert Line) */ /* ToDo: Should this kill last_xpos? */ add_new_line_below(ypos-1); xpos=0; set_cursor(); break; case '\x0d': /* CR */ last_xpos=-1; if(insert) { add_new_line_below(ypos); /* Move all this to the next line... */ line[ypos+1].text=line[ypos].text.substr(xpos); line[ypos+1].attr=line[ypos].attr.substr(xpos); line[ypos+1].hardcr=line[ypos].hardcr; line[ypos].text=line[ypos].text.substr(0,xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos); line[ypos].hardcr=true; draw_line(ypos,xpos); if(line[ypos].kludged) { line[ypos+1].kludged=true; line[ypos].kludged=false; } draw_line(ypos+1); } try_next_line(); xpos=0; rewrap(); set_cursor(); break; case '\x0e': /* CTRL-N */ break; case '\x0f': /* CTRL-O (Quick Save in SyncEdit) */ break; case '\x10': /* CTRL-P */ break; case '\x11': /* CTRL-Q (XOff) (Quick Abort in SyncEdit) */ return; case '\x12': /* CTRL-R (Quick Redraw in SyncEdit) */ redraw_screen(); break; case '\x13': /* CTRL-S (Xon) */ break; case '\x14': /* CTRL-T (Justify Line in SyncEdit) */ break; case '\x15': /* CTRL-U (Quick Quote in SyncEdit) */ break; case '\x16': /* CTRL-V (Toggle insert mode) */ insert=!insert; status_line(); break; case '\x17': /* CTRL-W (Delete Word) */ last_xpos=-1; /* Remove trailing part of word */ while(line[ypos].text.length>xpos && line[ypos].text.substr(xpos,1).search(/\s/)==-1) { line[ypos].text=line[ypos].text.substr(0,xpos) +line[ypos].text.substr(xpos+1); line[ypos].attr=line[ypos].attr.substr(0,xpos) +line[ypos].attr.substr(xpos+1); } /* Remove leading part */ while(xpos>0 && line[ypos].text.substr(xpos-1,1).search(/\s/)==-1) { line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos); xpos--; } /* * Remove Space... * Note that no matter what, we should delete a space. * We're either deleting the space from the end of the word if * this was the first word on the line, or the one before the * word otherwise. This puts the cursor on the previous word * if there is one and the next word if there isn't. This * allows multiple ^W to keep deleteing words in all cases. */ if(xpos) { /* Delete space before the deleted word */ line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos); xpos--; } else { /* Delete space after the word */ line[ypos].text=line[ypos].text.substr(1); line[ypos].attr=line[ypos].attr.substr(1); } draw_line(ypos,xpos); set_cursor(); break; case '\x18': /* CTRL-X (PgDn in SyncEdit) */ if(last_xpos==-1) last_xpos=xpos; if(ypos>=line.length-1) { console.beep(); break; } ypos+=lines_on_screen-1; if(ypos>line.length-1) ypos=line.length-1; if(ypos>=topline+lines_on_screen) topline=ypos-lines_on_screen+1; var i; for(i=edit_top; i<=edit_bottom; i++) draw_line(i-edit_top+topline); xpos=last_xpos; if(xpos>line[ypos].text.length) xpos=line[ypos].text.length; set_cursor(); break; case '\x19': /* CTRL-Y (Delete Line in SyncEdit) */ /* Delete Line */ /* ToDo: Should this kill last_xpos? */ if(line.length==1) line[0]=new Line; else line.splice(ypos,1); if(ypos>=line.length) ypos=line.length-1; if(last_xpos>=0) xpos=last_xpos; if(xpos>line[ypos].text.length) xpos=line[ypos].text.length; var i; for(i=ypos; i<=line.length; i++) draw_line(i); set_cursor(); break; break; case '\x1a': /* CTRL-Z (EOF) (PgUp in SyncEdit) */ if(last_xpos==-1) last_xpos=xpos; if(ypos==0) { console.beep(); break; } ypos-=lines_on_screen-1; if(ypos<0) ypos=0; if(topline>ypos) topline=ypos; var i; for(i=edit_top; i<=edit_bottom; i++) draw_line(i-edit_top+topline); xpos=last_xpos; if(xpos>line[ypos].text.length) xpos=line[ypos].text.length; set_cursor(); break; case '\x1b': /* ESC (This should parse extra ANSI sequences) */ break; case '\x1c': /* CTRL-\ (RegExp) */ break; case '\x1d': /* KEY_LEFT */ last_xpos=-1; xpos--; if(xpos<0) { console.beep(); xpos=0; } set_cursor(); break; case '\x1e': /* KEY_UP */ if(last_xpos==-1) last_xpos=xpos; try_prev_line(); set_cursor(); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ last_xpos=-1; if(xpos>=line[ypos].text.length) /* delete the hardcr, */ line[ypos].hardcr=false; line[ypos].text=line[ypos].text.substr(0,xpos) +line[ypos].text.substr(xpos+1); line[ypos].attr=line[ypos].attr.substr(0,xpos) +line[ypos].attr.substr(xpos+1); if(!rewrap()) draw_line(ypos,xpos); set_cursor(); break; case '\x07': /* CTRL-G (Beep) */ /* Enter Graphic Character */ key=get_graphic(); if(key=='') break; /* Fall-Through */ default: /* Insert the char */ last_xpos=-1; /* * A whitespace at the beginning of a line following a kludge wrap * unkludges it. */ if(xpos==0 && ypos>0 && key.search(/\s/)!=-1) line[ypos-1].kludged=false; if(insert) { line[ypos].text=line[ypos].text.substr(0,xpos) +key +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos) +ascii(curattr) +line[ypos].attr.substr(xpos); } else { line[ypos].text=line[ypos].text.substr(0,xpos) +key +line[ypos].text.substr(xpos+1); line[ypos].attr=line[ypos].attr.substr(0,xpos) +key +line[ypos].attr.substr(xpos+1); } xpos++; if(!rewrap()) draw_line(ypos,xpos-1,false); set_cursor(); } }}
var f=new File(system.temp_dir+"INPUT.MSG");
var f=new File((argc==0?system.temp_dir+"INPUT.MSG":argv[0]));
function edit(quote_first){ var key; redraw_screen(); if(quote_first) { if(quote_mode()) return; } while(1) { set_cursor(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A (Colour) */ key=''; draw_colour_box(); while(key=='') { key=console.getkey(K_UPPER); switch(key) { case 'K': curattr&=0xf8; break; case 'R': curattr=(curattr&0xf8)|RED; break; case 'G': curattr=(curattr&0xf8)|GREEN; break; case 'Y': curattr=(curattr&0xf8)|BROWN; break; case 'B': curattr=(curattr&0xf8)|BLUE; break; case 'M': curattr=(curattr&0xf8)|MAGENTA; break; case 'C': curattr=(curattr&0xf8)|CYAN; break; case 'W': curattr=(curattr&0xf8)|LIGHTGRAY; break; case '0': curattr=(curattr&0x8f); break; case '1': curattr=(curattr&0x8f)|(RED<<4); break; case '2': curattr=(curattr&0x8f)|(GREEN<<4); break; case '3': curattr=(curattr&0x8f)|(BROWN<<4); break; case '4': curattr=(curattr&0x8f)|(BLUE<<4); break; case '5': curattr=(curattr&0x8f)|(MAGENTA<<4); break; case '6': curattr=(curattr&0x8f)|(CYAN<<4); break; case '7': curattr=(curattr&0x8f)|(LIGHTGRAY<<4); break; case 'H': curattr|=0x08; break; case 'I': curattr|=0x80; break; case 'N': curattr=7; break; case ctrl('R'): redraw_screen(); key=''; break; case "\x1b": /* ESC */ break; default: console.beep(); key=''; break; } } status_line(); erase_colour_box(); break; case '\x02': /* CTRL-B KEY_HOME */ last_xpos=-1; xpos=0; break; case '\x03': /* CTRL-C (Center Line) */ last_xpos=-1; line[ypos].hardcr=true; /* Trim leading/trailing whitespace */ line[ypos].text=line[ypos].text.replace(/^(\s*)(.*?)\s*$/,function (str, leading, t, offset, s) { line[ypos].attr=line[ypos].attr.substr(leading.length, t.length); xpos -= leading.length; if(xpos<0) xpos=0; return(t); }); var add=parseInt((80-line[ypos].text.length)/2); for(add=parseInt((80-line[ypos].text.length)/2); add>0; add--) { line[ypos].text=' '+line[ypos].text; line[ypos].attr=ascii(curattr)+line[ypos].attr; xpos++; } if(xpos>line[ypos].length) xpos=line[ypos].length; draw_line(ypos); break; case '\x04': /* CTRL-D (Quick Find in SyncEdit)*/ break; case '\x05': /* CTRL-E KEY_END */ last_xpos=-1; xpos=line[ypos].text.length; break; case '\x06': /* CTRL-F KEY_RIGHT */ last_xpos=-1; xpos++; if(xpos>line[ypos].text.length) { xpos--; console.beep(); } if(xpos>line[ypos].text.length) { if(line[ypos].hardcr) console.beep(); else { if(try_next_line()) x=0; } } break; case '\x07': /* CTRL-G (Beep) */ /* Enter Graphic Character */ key=get_graphic(); if(key=='') break; add_char(key); break; case '\x08': /* CTRL-H Backspace */ last_xpos=-1; if(xpos>0) { line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos); xpos--; } else { if(try_prev_line()) { xpos=line[ypos].text.length; line[ypos].hardcr=false; } } if(!rewrap()) draw_line(ypos,xpos); break; case '\x09': /* CTRL-I TAB... ToDo expand to spaces */ add_char(' '); while(xpos%8) add_char(' '); break; case '\x0a': /* CTRL-J KEY_DOWN (Insert Line in SyncEdit) */ if(last_xpos==-1) last_xpos=xpos; try_next_line(); break; case '\x0b': /* CTRL-K */ console.attributes=7; console.gotoxy(1,edit_top); console.cleartoeol(); console.write("\r\nEditing keys:"); console.cleartoeol(); console.write("\r\n CTRL-A - Change Colour CTRL-P - Page Down"); console.cleartoeol(); console.write("\r\n CTRL-B - Move to beginning of line CTRL-Q - Quick Abort (no save)"); console.cleartoeol(); console.write("\r\n CTRL-C - Center line on screen CTRL-R - Redraw screen"); console.cleartoeol(); console.write("\r\n CTRL-E - Move to end of line CTRL-U - Enter quote mode"); console.cleartoeol(); console.write("\r\n CTRL-F - Move right one character CTRL-V - Toggle insert mode"); console.cleartoeol(); console.write("\r\n CTRL-G - Enter graphic character CTRL-W - Delete word backwards"); console.cleartoeol(); console.write("\r\n CTRL-H - Backspace (BACKSPACE) CTRL-Y - Delete Line"); console.cleartoeol(); console.write("\r\n CTRL-I - Move to next tabstop (TAB) CTRL-Z - Save message and exit"); console.cleartoeol(); console.write("\r\n CTRL-J - Move down one line CTRL-] - Move left one character"); console.cleartoeol(); console.write("\r\n CTRL-L - Insert Line CTRL-^ - Move up one line"); console.cleartoeol(); console.write("\r\n CTRL-O - Page Up CTRL-_ - Quick Abort (no save)"); console.cleartoeol(); console.write('\r\n'); console.cleartoeol(); console.write('\r\n'); console.write("Press any key to return to editing.."); console.cleartoeol(); console.write('\r\n'); console.cleartoeol(); console.up(); console.right(37); console.getkey(); redraw_screen(); break; case '\x0c': /* CTRL-L (Insert Line) */ /* ToDo: Should this kill last_xpos? */ add_new_line_below(ypos-1); xpos=0; break; case '\x0d': /* CTRL-M CR */ last_xpos=-1; if(insert) { add_new_line_below(ypos); /* Move all this to the next line... */ line[ypos+1].text=line[ypos].text.substr(xpos); line[ypos+1].attr=line[ypos].attr.substr(xpos); line[ypos+1].hardcr=line[ypos].hardcr; line[ypos].text=line[ypos].text.substr(0,xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos); line[ypos].hardcr=true; draw_line(ypos,xpos); if(line[ypos].kludged) { line[ypos+1].kludged=true; line[ypos].kludged=false; } draw_line(ypos+1); } try_next_line(); xpos=0; rewrap(); break; case '\x0e': /* CTRL-N */ break; case '\x0f': /* CTRL-O (Quick Save/exit in SyncEdit) */ if(last_xpos==-1) last_xpos=xpos; if(ypos==0) { console.beep(); break; } ypos-=lines_on_screen-1; if(ypos<0) ypos=0; if(topline>ypos) topline=ypos; var i; for(i=edit_top; i<=edit_bottom; i++) draw_line(i-edit_top+topline); xpos=last_xpos; if(xpos>line[ypos].text.length) xpos=line[ypos].text.length; break; case '\x10': /* CTRL-P */ if(last_xpos==-1) last_xpos=xpos; if(ypos>=line.length-1) { console.beep(); break; } ypos+=lines_on_screen-1; if(ypos>line.length-1) ypos=line.length-1; if(ypos>=topline+lines_on_screen) topline=ypos-lines_on_screen+1; var i; for(i=edit_top; i<=edit_bottom; i++) draw_line(i-edit_top+topline); xpos=last_xpos; if(xpos>line[ypos].text.length) xpos=line[ypos].text.length; break; case '\x11': /* CTRL-Q (XOff) (Quick Abort in SyncEdit) */ return; case '\x12': /* CTRL-R (Quick Redraw in SyncEdit) */ redraw_screen(); break; case '\x13': /* CTRL-S (Xon) */ break; case '\x14': /* CTRL-T (Justify Line in SyncEdit) */ break; case '\x15': /* CTRL-U (Quick Quote in SyncEdit) */ if(quote_mode()) return; break; case '\x16': /* CTRL-V (Toggle insert mode) */ insert=!insert; status_line(); break; case '\x17': /* CTRL-W (Delete Word) */ last_xpos=-1; /* Remove trailing part of word */ while(line[ypos].text.length>xpos && line[ypos].text.substr(xpos,1).search(/\s/)==-1) { line[ypos].text=line[ypos].text.substr(0,xpos) +line[ypos].text.substr(xpos+1); line[ypos].attr=line[ypos].attr.substr(0,xpos) +line[ypos].attr.substr(xpos+1); } /* Remove leading part */ while(xpos>0 && line[ypos].text.substr(xpos-1,1).search(/\s/)==-1) { line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos); xpos--; } /* * Remove Space... * Note that no matter what, we should delete a space. * We're either deleting the space from the end of the word if * this was the first word on the line, or the one before the * word otherwise. This puts the cursor on the previous word * if there is one and the next word if there isn't. This * allows multiple ^W to keep deleteing words in all cases. */ if(xpos) { /* Delete space before the deleted word */ line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos); xpos--; } else { /* Delete space after the word */ line[ypos].text=line[ypos].text.substr(1); line[ypos].attr=line[ypos].attr.substr(1); } draw_line(ypos,xpos); break; case '\x18': /* CTRL-X (PgDn in SyncEdit) */ break; case '\x19': /* CTRL-Y (Delete Line in SyncEdit) */ /* Delete Line */ /* ToDo: Should this kill last_xpos? */ if(line.length==1) line[0]=new Line; else line.splice(ypos,1); if(ypos>=line.length) ypos=line.length-1; if(last_xpos>=0) xpos=last_xpos; if(xpos>line[ypos].text.length) xpos=line[ypos].text.length; var i; console.write("\033[M"); /* Delete Line */ /* Redraw bottom line */ draw_line(topline+lines_on_screen-1); /* Old used to redraw everything after current for(i=ypos; i<topline+lines_on_screen; i++) draw_line(i); */ break; break; case '\x1a': /* CTRL-Z (EOF) (PgUp in SyncEdit) */ var f=new File(system.temp_dir+"INPUT.MSG"); f.open("w"); var s=make_strings(true,true); f.write(s[0]); f.close(); return; case '\x1b': /* ESC (This should parse extra ANSI sequences) */ break; case '\x1c': /* CTRL-\ (RegExp) */ break; case '\x1d': /* CTRL-] KEY_LEFT */ last_xpos=-1; xpos--; if(xpos<0) { console.beep(); xpos=0; } break; case '\x1e': /* CTRL-^ KEY_UP */ if(last_xpos==-1) last_xpos=xpos; try_prev_line(); break; case '\x1f': /* CTRL-_ Safe quick-abort*/ return; case '\x7f': /* DELETE */ last_xpos=-1; if(xpos>=line[ypos].text.length) /* delete the hardcr, */ line[ypos].hardcr=false; line[ypos].text=line[ypos].text.substr(0,xpos) +line[ypos].text.substr(xpos+1); line[ypos].attr=line[ypos].attr.substr(0,xpos) +line[ypos].attr.substr(xpos+1); if(!rewrap()) draw_line(ypos,xpos); break; default: /* Insert the char */ add_char(key); } }}
console.gotoxy(xpos,ypos);
set_cursor();
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
xpos=1; console.gotoxy(xpos,ypos);
xpos=0; set_cursor();
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos);
last_xpos=-1; xpos=line[ypos].text.length; set_cursor();
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
if(xpos>line[ypos-edit_top+topline].text.length+1) {
if(xpos>line[ypos].text.length) {
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
if(xpos>80) { xpos=1; try_next_line();
if(xpos>line[ypos].text.length) { if(line[ypos].hardcr) console.beep(); else { if(try_next_line()) x=0; }
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1);
last_xpos=-1; if(xpos>0) { line[ypos].text=line[ypos].text.substr(0,xpos-1) +line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos-1) +line[ypos].attr.substr(xpos);
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1;
if(try_prev_line()) { xpos=line[ypos].text.length; line[ypos].hardcr=false; }
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline);
if(!rewrap()) draw_line(ypos,xpos); set_cursor();
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
add_new_line_below(ypos-edit_top+topline);
add_new_line_below(ypos);
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1);
line[ypos+1].text=line[ypos].text.substr(xpos); line[ypos+1].attr=line[ypos].attr.substr(xpos); line[ypos+1].hardcr=line[ypos].hardcr; line[ypos].text=line[ypos].text.substr(0,xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos); line[ypos].hardcr=true; draw_line(ypos); if(line[ypos].kludged) { line[ypos+1].kludged=true; line[ypos].kludged=false; } draw_line(ypos+1);
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
xpos=1; console.gotoxy(xpos,ypos);
xpos=0; rewrap(); set_cursor();
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
if(insert) insert=false; else insert=true;
insert=!insert;
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
if(xpos<=0) {
if(xpos<0) {
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
xpos=1;
xpos=0;
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline);
last_xpos=-1; if(xpos>=line[ypos].text.length) line[ypos].hardcr=false; line[ypos].text=line[ypos].text.substr(0,xpos) +line[ypos].text.substr(xpos+1); line[ypos].attr=line[ypos].attr.substr(0,xpos) +line[ypos].attr.substr(xpos+1); if(!rewrap()) draw_line(ypos,xpos); set_cursor();
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1)
line[ypos].text=line[ypos].text.substr(0,xpos)
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
+line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { }
+line[ypos].text.substr(xpos); line[ypos].attr=line[ypos].attr.substr(0,xpos) +ascii(curattr) +line[ypos].attr.substr(xpos);
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
+line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr;
+line[ypos].text.substr(xpos+1); line[ypos].attr=line[ypos].attr.substr(0,xpos) +key +line[ypos].attr.substr(xpos+1);
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
if(xpos>80) { xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos);
if(!rewrap()) draw_line(ypos,xpos-1,false); set_cursor();
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { status_line(); key=console.inkey(0,10000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': /* CTRL-@ (NULL) */ case '\x01': /* CTRL-A */ break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': /* CTRL-C */ case '\x04': /* CTRL-D */ break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': /* CTRL-G (Beep) */ break; case '\x08': /* Backspace */ if(xpos>1) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-2) +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-2,1); xpos--; } else { /* ToDo: Backspace onto the previous row and re-wrap... */ if(try_prev_line()) xpos=line[ypos-edit_top+topline].text.length+1; } unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': /* CTRL-K */ case '\x0c': /* CTRL-L */ case '\x0d': /* CR */ if(insert) { add_new_line_below(ypos-edit_top+topline); /* Move all this to the next line... */ line[ypos-edit_top+topline+1].text=line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline+1].attr.splice(0,0,line[ypos-edit_top+topline].attr.slice(xpos-1,line[ypos-edit_top+topline+1].text.length)); line[ypos-edit_top+topline+1].hardcr=line[ypos-edit_top+topline].hardcr; line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,line[ypos-edit_top+topline+1].text.length); line[ypos-edit_top+topline].hardcr=true; redraw_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline+1); } try_next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': /* CTRL-N */ case '\x0f': /* CTRL-O */ case '\x10': /* CTRL-P */ case '\x11': /* CTRL-Q (XOff) */ return; case '\x12': /* CTRL-R */ case '\x13': /* CTRL-S (Xon) */ case '\x14': /* CTRL-T */ case '\x15': /* CTRL-U */ case '\x16': /* CTRL-V */ if(insert) insert=false; else insert=true; break; case '\x17': /* CTRL-W */ case '\x18': /* CTRL-X */ case '\x19': /* CTRL-Y */ case '\x1a': /* CTRL-Z (EOF) */ case '\x1b': /* ESC */ case '\x1c': /* CTRL-\ */ break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': /* CTRL-_ */ break; case '\x7f': /* DELETE */ line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr.splice(xpos-1,1); unwrap_line(ypos-edit_top+topline); redraw_line(ypos-edit_top+topline); break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(xpos-1,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); line[ypos-edit_top+topline].attr[xpos-1]=curattr; } xpos++; if(xpos>80) { /* Wrap */ xpos=1; xpos=wrap_line(ypos-edit_top+topline); next_line(); } else { if(line[ypos-edit_top+topline].text.length > 79) wrap_line(ypos-edit_top+topline); } redraw_line(ypos-edit_top+topline); console.gotoxy(xpos,ypos); } }}
console.gotoxy(1,ypos);
function edit(){ var key; console.gotoxy(xpos,ypos); while(1) { key=console.inkey(1000); if(key=='') continue; switch(key) { /* We're getting all the CTRL keys here... */ case '\x00': case '\x01': break; case '\x02': /* KEY_HOME */ xpos=1; console.gotoxy(xpos,ypos); break; case '\x03': case '\x04': break; case '\x05': /* KEY_END */ xpos=line[ypos-edit_top+topline].text.length+1; if(xpos>80) xpos=80; console.gotoxy(xpos,ypos); break; case '\x06': /* KEY_RIGHT */ xpos++; if(xpos>line[ypos-edit_top+topline].text.length+1) { xpos--; console.beep(); } if(xpos>80) { xpos=1; try_next_line(); } console.gotoxy(xpos,ypos); break; case '\x07': break; case '\x08': /* Backspace */ /* ToDo: Backspace onto the previous row and re-wrap... */ if(xpos==0) { } case '\x09': /* TAB... ToDo expand to spaces */ break; case '\x0a': /* KEY_DOWN */ try_next_line(); console.gotoxy(xpos,ypos); break; case '\x0b': case '\x0c': case '\x0d': /* CR */ /* ToDo: Break current line at current pos... */ if(insert) add_new_line_below(); next_line(); xpos=1; console.gotoxy(xpos,ypos); break; case '\x0e': case '\x0f': case '\x10': case '\x11': /* CTRL-Q */ return; case '\x12': case '\x13': case '\x14': case '\x15': case '\x16': case '\x17': case '\x18': case '\x19': case '\x1a': case '\x1b': case '\x1c': break; case '\x1d': /* KEY_LEFT */ xpos--; if(xpos<=0) { console.beep(); xpos=1; } console.gotoxy(xpos,ypos); break; case '\x1e': /* KEY_UP */ try_prev_line(); console.gotoxy(xpos,ypos); break; case '\x1f': break; case '\xf7': /* DELETE */ break; default: /* Insert the char */ if(insert) { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos-1); line[ypos-edit_top+topline].attr.splice(ypos,0,curattr); if(line[ypos-edit_top+topline].text.length > 80) { /* ToDo: Wrap */ } } else { line[ypos-edit_top+topline].text=line[ypos-edit_top+topline].text.substr(0,xpos-1) +key +line[ypos-edit_top+topline].text.substr(xpos); } console.gotoxy(1,ypos); line[ypos-edit_top+topline].draw(ypos); console.gotoxy(xpos,ypos); xpos++; if(xpos>80) { xpos=1; if(insert) add_new_line_below(); next_line(); break; } console.gotoxy(xpos,ypos); } }}
var dstUri = flowHelper.getDocumentHelper(cocoon).getSourceUri(flowHelper.getPageEnvelope(cocoon).getDocument());
var dstUri = flowHelper.getPageEnvelope(cocoon).getDocument().getSourceURI();
function editDocument() { try { var flowHelper = new FlowHelper(); var resolver = cocoon.getComponent(SourceResolver.ROLE); var dstUri = flowHelper.getDocumentHelper(cocoon).getSourceUri(flowHelper.getPageEnvelope(cocoon).getDocument()); SourceUtil.copy(resolver, cocoon.parameters["sourceUri"], dstUri, _getParameter("useBuffer", "false") == "true"); if(_getParameter("noCheckin", "false") == "false") flowHelper.reservedCheckIn(cocoon, _getParameter("backup", "true") == "true"); if(_getParameter("noWorkflow", "false") == "false") flowHelper.triggerWorkflow(cocoon, _getParameter("workflowEvent", "edit")); if(_getParameter("noStatus", "false") == "false") cocoon.sendStatus(_getParameter("status", 204)); else cocoon.redirectTo(_getParameter("redirectUrl", "FIXME")); } catch (exception) { cocoon.log.error("Can not edit doucment.", exception); } finally { if(resolver != null) cocoon.releaseComponent(resolver); }}
cocoon.log.error("Can not edit doucment.", exception);
cocoon.log.error("Can not edit doucment.", exception.toString());
function editDocument() { try { var flowHelper = new FlowHelper(); var resolver = cocoon.getComponent(SourceResolver.ROLE); var dstUri = flowHelper.getDocumentHelper(cocoon).getSourceUri(flowHelper.getPageEnvelope(cocoon).getDocument()); SourceUtil.copy(resolver, cocoon.parameters["sourceUri"], dstUri, _getParameter("useBuffer", "false") == "true"); if(_getParameter("noCheckin", "false") == "false") flowHelper.reservedCheckIn(cocoon, _getParameter("backup", "true") == "true"); if(_getParameter("noWorkflow", "false") == "false") flowHelper.triggerWorkflow(cocoon, _getParameter("workflowEvent", "edit")); if(_getParameter("noStatus", "false") == "false") cocoon.sendStatus(_getParameter("status", 204)); else cocoon.redirectTo(_getParameter("redirectUrl", "FIXME")); } catch (exception) { cocoon.log.error("Can not edit doucment.", exception); } finally { if(resolver != null) cocoon.releaseComponent(resolver); }}
if (cocoon.log.isDebugEnabled()) { cocoon.log.debug("edit-document.js::editDocument() after usecase.execute(), hasErrors ? " + usecase.hasErrors()); }
function editDocument() { var usecaseName = cocoon.parameters["lenya.usecase"]; var usecaseResolver; var usecase; try { usecaseResolver = cocoon.getComponent("org.apache.lenya.cms.usecase.UsecaseResolver"); usecase = usecaseResolver.resolve(usecaseName); var flowHelper = cocoon.getComponent("org.apache.lenya.cms.cocoon.flow.FlowHelper"); var request = flowHelper.getRequest(cocoon); var sourceUrl = Packages.org.apache.lenya.util.ServletHelper.getWebappURI(request); usecase.setSourceURL(sourceUrl); usecase.setName(usecaseName); usecase.checkPreconditions(); usecase.lockInvolvedObjects(); usecase.execute(); // FIXME: handle error messages //if (usecase.hasErrors()) { //} if(_getParameter("noStatus", "false") == "false") cocoon.sendStatus(_getParameter("status", 204)); else cocoon.redirectTo(_getParameter("redirectUrl", "FIXME")); } catch (exception) { /* FIXME: This is unclean because the flow will not return a value if there is an exception */ cocoon.log.error("Can not edit document.", exception); } finally { /* done with usecase component, tell usecaseResolver to release it */ if (usecaseResolver != null) { if (usecase != null) { usecaseResolver.release(usecase); usecase = undefined; } cocoon.releaseComponent(usecaseResolver); } } }
cocoon.log.error("Can not edit doucment.", exception.toString());
cocoon.log.error("Can not edit document.", exception.toString());
function editDocument() { try { var flowHelper = new FlowHelper(); var resolver = cocoon.getComponent(SourceResolver.ROLE); var dstUri = flowHelper.getPageEnvelope(cocoon).getDocument().getSourceURI(); SourceUtil.copy(resolver, cocoon.parameters["sourceUri"], dstUri, _getParameter("useBuffer", "false") == "true"); if(_getParameter("noCheckin", "false") == "false") flowHelper.reservedCheckIn(cocoon, _getParameter("backup", "true") == "true"); if(_getParameter("noWorkflow", "false") == "false") flowHelper.triggerWorkflow(cocoon, _getParameter("workflowEvent", "edit")); if(_getParameter("noStatus", "false") == "false") cocoon.sendStatus(_getParameter("status", 204)); else cocoon.redirectTo(_getParameter("redirectUrl", "FIXME")); } catch (exception) { cocoon.log.error("Can not edit doucment.", exception.toString()); } finally { if(resolver != null) cocoon.releaseComponent(resolver); }}
if (usecase.getErrorMessages().isEmpty()) {
if (!usecase.getErrorMessages().isEmpty()) { throw new Exception("Saving failed!");
function editDocument() { var usecaseName = cocoon.parameters["lenya.usecase"]; var usecaseResolver; var usecase; try { usecaseResolver = cocoon.getComponent("org.apache.lenya.cms.usecase.UsecaseResolver"); usecase = usecaseResolver.resolve(usecaseName); var flowHelper = cocoon.getComponent("org.apache.lenya.cms.cocoon.flow.FlowHelper"); var request = flowHelper.getRequest(cocoon); var sourceUrl = Packages.org.apache.lenya.util.ServletHelper.getWebappURI(request); if (cocoon.log.isDebugEnabled()) { cocoon.log.debug("edit-document.js::editDocument() calling usecase methods, usecaseName [" + usecaseName + "], sourceUrl [" + sourceUrl + "]"); } usecase.setSourceURL(sourceUrl); usecase.setName(usecaseName); usecase.checkPreconditions(); usecase.lockInvolvedObjects(); if (!usecase.getErrorMessages().isEmpty()) { throw new Exception("Checking pre-conditions or locking failed!"); } else { usecase.execute(); if (usecase.getErrorMessages().isEmpty()) { // TODO: handle error messages } } if (cocoon.log.isDebugEnabled()) { cocoon.log.debug("edit-document.js::editDocument() after usecase.execute(), hasErrors ? " + usecase.hasErrors()); } // FIXME: handle error messages //if (usecase.hasErrors()) { //} if(_getParameter("noStatus", "false") == "false") cocoon.sendStatus(_getParameter("status", 204)); else cocoon.redirectTo(_getParameter("redirectUrl", "FIXME")); } catch (exception) { /* FIXME: This is unclean because the flow will not return a value if there is an exception */ cocoon.log.error("Can not edit document.", exception); } finally { /* done with usecase component, tell usecaseResolver to release it */ if (usecaseResolver != null) { if (usecase != null) { usecaseResolver.release(usecase); usecase = undefined; } cocoon.releaseComponent(usecaseResolver); } } }
usecaseResolver = cocoon.getComponent("org.apache.lenya.cms.usecase.UsecaseResolver"); usecase = usecaseResolver.resolve(usecaseName);
function editDocument() { var usecaseName = cocoon.parameters["lenya.usecase"]; var usecaseResolver; var usecase; try { usecaseResolver = cocoon.getComponent("org.apache.lenya.cms.usecase.UsecaseResolver"); usecase = usecaseResolver.resolve(usecaseName); var flowHelper = cocoon.getComponent("org.apache.lenya.cms.cocoon.flow.FlowHelper"); var request = flowHelper.getRequest(cocoon); var sourceUrl = Packages.org.apache.lenya.util.ServletHelper.getWebappURI(request); if (cocoon.log.isDebugEnabled()) { cocoon.log.debug("edit-document.js::editDocument() calling usecase methods, usecaseName [" + usecaseName + "], sourceUrl [" + sourceUrl + "]"); } usecase.setSourceURL(sourceUrl); usecase.setName(usecaseName); usecase.checkPreconditions(); usecase.lockInvolvedObjects(); if (!usecase.getErrorMessages().isEmpty()) { throw new Exception("Checking pre-conditions or locking failed!"); } else { usecase.execute(); if (!usecase.getErrorMessages().isEmpty()) { throw new Exception("Saving failed!"); } } if (cocoon.log.isDebugEnabled()) { cocoon.log.debug("edit-document.js::editDocument() after usecase.execute(), hasErrors ? " + usecase.hasErrors()); } // FIXME: handle error messages //if (usecase.hasErrors()) { //} if(_getParameter("noStatus", "false") == "false") cocoon.sendStatus(_getParameter("status", 204)); else cocoon.redirectTo(_getParameter("redirectUrl", "FIXME")); } catch (exception) { /* FIXME: This is unclean because the flow will not return a value if there is an exception */ cocoon.log.error("Can not edit document.", exception); } finally { /* done with usecase component, tell usecaseResolver to release it */ if (usecaseResolver != null) { if (usecase != null) { usecaseResolver.release(usecase); usecase = undefined; } cocoon.releaseComponent(usecaseResolver); } } }
usecaseResolver = cocoon.getComponent("org.apache.lenya.cms.usecase.UsecaseResolver"); usecase = usecaseResolver.resolve(sourceUrl, usecaseName);
function editDocument() { var usecaseName = cocoon.parameters["lenya.usecase"]; var usecaseResolver; var usecase; try { usecaseResolver = cocoon.getComponent("org.apache.lenya.cms.usecase.UsecaseResolver"); usecase = usecaseResolver.resolve(usecaseName); var flowHelper = cocoon.getComponent("org.apache.lenya.cms.cocoon.flow.FlowHelper"); var request = flowHelper.getRequest(cocoon); var sourceUrl = Packages.org.apache.lenya.util.ServletHelper.getWebappURI(request); if (cocoon.log.isDebugEnabled()) { cocoon.log.debug("edit-document.js::editDocument() calling usecase methods, usecaseName [" + usecaseName + "], sourceUrl [" + sourceUrl + "]"); } usecase.setSourceURL(sourceUrl); usecase.setName(usecaseName); usecase.checkPreconditions(); usecase.lockInvolvedObjects(); if (!usecase.getErrorMessages().isEmpty()) { throw new Exception("Checking pre-conditions or locking failed!"); } else { usecase.execute(); if (!usecase.getErrorMessages().isEmpty()) { throw new Exception("Saving failed!"); } } if (cocoon.log.isDebugEnabled()) { cocoon.log.debug("edit-document.js::editDocument() after usecase.execute(), hasErrors ? " + usecase.hasErrors()); } // FIXME: handle error messages //if (usecase.hasErrors()) { //} if(_getParameter("noStatus", "false") == "false") cocoon.sendStatus(_getParameter("status", 204)); else cocoon.redirectTo(_getParameter("redirectUrl", "FIXME")); } catch (exception) { /* FIXME: This is unclean because the flow will not return a value if there is an exception */ cocoon.log.error("Can not edit document.", exception); } finally { /* done with usecase component, tell usecaseResolver to release it */ if (usecaseResolver != null) { if (usecase != null) { usecaseResolver.release(usecase); usecase = undefined; } cocoon.releaseComponent(usecaseResolver); } } }
this.setTestCase(new TestCase());
this.setTestCase(new TestCase(), true);
function Editor(window, isSidebar) { this.log.debug("initializing"); this.window = window; window.editor = this; var self = this; this.isSidebar = isSidebar; this.recordFrameTitle = false; this.document = document; this.recordingEnabled = true; this.setOptions(optionsManager.load()); this.loadExtensions(); this.loadSeleniumAPI(); this.selectDefaultReference(); this.treeView = new TreeView(this, document, document.getElementById("commands")); this.sourceView = new SourceView(this, document.getElementById("source")); this.testCaseListeners = new Array(); this.testCaseListeners.push(function(testCase) { if (self.view) { self.view.testCase = testCase; } testCase.observer = { modifiedStateUpdated: function() { self.updateTitle(); } }; }); this.setTestCase(new TestCase()); this.initOptions(); //this.toggleView(this.treeView); // "debugger" cannot be used since it is a reserved word in JS this.selDebugger = new Debugger(this); //top.document.commandDispatcher.getControllers().appendController(Editor.controller); //window.controllers.appendController(Editor.controller); top.controllers.appendController(Editor.controller); //window.controllers.appendController(controller); this.updateViewTabs(); this.infoPanel = new Editor.InfoPanel(this); //top.document.commandDispatcher.updateCommands("selenium-ide-state"); document.addEventListener("focus", Editor.checkTimestamp, false); this.log.info("initialized"); setTimeout("editor.showLoadErrors()", 500); if (isSidebar) { Recorder.registerForWindow(window.parent, this); } else { Recorder.registerAll(this); }}
NewWindow('showEditTimerEventWindow?'+xy, 'editTimer', '780', '370', 'no');
NewWindow('showEditTimerEventWindow?'+xy, 'editTimer', '780', '400', 'no');
function editTimerEvent(xy){ NewWindow('showEditTimerEventWindow?'+xy, 'editTimer', '780', '370', 'no');}
NewWindow('/editTimerEvent?'+xy, 'editTimer', '780', '300', 'no');
NewWindow('/editTimerEvent?'+xy, 'editTimer', '780', '350', 'no');
function editTimerEvent(xy){ NewWindow('/editTimerEvent?'+xy, 'editTimer', '780', '300', 'no');}
return event.srcElement || event.currentTarget;
return event.target || event.srcElement;
element: function(event) { return event.srcElement || event.currentTarget; },
element.style[name] = style[name];
var value = style[name]; if (value == null) value = ""; element.style[name] = value;
function elementSetStyle(element, style) { for (var name in style) { element.style[name] = style[name]; }}
for (i = 0; i < node.attributes.length; i++) { var att = node.attributes[i]; if (att.name == 'name' || att.name == 'value' || att.name == 'id' || att.name == 'style' || att.name == 'action' || att.name == 'onclick' || att.name == 'href') { conditions['@' + att.name] = att.value;
if (node.attributes) { for (i = 0; i < node.attributes.length; i++) { var att = node.attributes[i]; if (att.name == 'name' || att.name == 'value' || att.name == 'id' || att.name == 'style' || att.name == 'action' || att.name == 'onclick' || att.name == 'href') { conditions['@' + att.name] = att.value; }
function elementXPath(node, conditions) { var i; for (i = 0; i < node.attributes.length; i++) { var att = node.attributes[i]; if (att.name == 'name' || att.name == 'value' || att.name == 'id' || att.name == 'style' || att.name == 'action' || att.name == 'onclick' || att.name == 'href') { conditions['@' + att.name] = att.value; } } return node.nodeName.toLowerCase() + encodeConditions(conditions); }
i=finduser(str);
i=bbs.finduser(str);
function email(){ var key; var i; while(1) { if(!(user.settings & USER_EXPERT)) bbs.menu("e-mail"); // async console.putmsg("\r\nyhE-mail: n"); key=get_next_keys("?SRFNUKQ\r"); bbs.log_key(key); switch(key) { case '?': if(user.settings & USER_EXPERT) bbs.menu("e-mail"); break; case 'S': console.putmsg("_\r\nbhE-mail (User name or number): w"); str=get_next_str("",40,K_UPRLWR,false); if(str==null || str=="") break; if(str=="Sysop") str="1"; if(str.search(/\@/)!=-1) bbs.netmail(str); else { i=finduser(str); if(i>0) bbs.email(i,WM_EMAIL); } break; case 'U': console.putmsg("_\r\nbhE-mail (User name or number): w"); str=get_next_str("",40,K_UPRLWR,false); if(str==null || str=="") break; if(str=="Sysop") str="1"; if(str.search(/\@/)!=-1) bbs.netmail(str,WM_FILE); else { i=finduser(str); if(i>0) bbs.email(i,WM_EMAIL|WM_FILE); } break; case 'R': bbs.read_mail(MAIL_YOUR); break; case 'F': bbs.email(1,WM_EMAIL,bbs.text(ReFeedback)); break; case 'N': if(console.noyes("\r\nAttach a file")) i=WM_FILE; else i=0; console.putmsg(bbs.text(EnterNetMailAddress),P_SAVEATR); str=get_next_str("",60,K_LINE,false); if(str!=null && str !="") bbs.netmail(str,i); break; case 'K': bbs.read_mail(MAIL_SENT); break; case 'Q': default: return; } } return}
this.hotkeys=KEY_LEFT+KEY_RIGHT+"\b\x7f\x1b";
this.hotkeys=KEY_LEFT+KEY_RIGHT+"\b\x7f\x1b"+ctrl('O')+ctrl('U')+ctrl('T')+ctrl('K')+ctrl('P');
function Emailmenu(){ var width=24; this.items=new Array(); this.xpos=17; this.ypos=2; this.lpadding="\xb3"; this.rpadding="\xb3"; this.hotkeys=KEY_LEFT+KEY_RIGHT+"\b\x7f\x1b"; this.add(top_bar(width),undefined,undefined,"",""); this.add(format_opt("|Send Mail",width,true),"S",width); this.add("|Read Inbox","R",width); this.add("Read Sent |Messages","M",width,undefined,undefined,user.compare_ars("REST K")); this.add(bottom_bar(width),undefined,undefined,"",""); this.timeout=100; this.callback=message_callback;}
if (!MODULES.Exists(mod_name)) {
if (MODULES.Exists(mod_name)) { item = MODULES.Item(mod_name); MODULES.Remove(mod_name); if (item.deps.length) { output += emit_dep_modules(item.deps); }
function emit_dep_modules(module_names){ var i, mod_name, j; var output = ""; for (i in module_names) { mod_name = module_names[i]; if (!MODULES.Exists(mod_name)) { output += emit_module(item); continue; } item = MODULES.Item(mod_name); output += emit_dep_modules(item.deps); } return output;}
continue;
function emit_dep_modules(module_names){ var i, mod_name, j; var output = ""; for (i in module_names) { mod_name = module_names[i]; if (!MODULES.Exists(mod_name)) { output += emit_module(item); continue; } item = MODULES.Item(mod_name); output += emit_dep_modules(item.deps); } return output;}
item = MODULES.Item(mod_name); output += emit_dep_modules(item.deps);
function emit_dep_modules(module_names){ var i, mod_name, j; var output = ""; for (i in module_names) { mod_name = module_names[i]; if (!MODULES.Exists(mod_name)) { output += emit_module(item); continue; } item = MODULES.Item(mod_name); output += emit_dep_modules(item.deps); } return output;}
emptyFunction: function() {}
emptyFunction: function() {},
emptyFunction: function() {}
element.disabled = 'true';
element.disabled = false;
enable: function(element) { element = $(element); element.blur(); element.disabled = 'true'; return element; }
text = text.replace(/&(nbsp|amp|quot|apos|lt|gt|\d+|x\d+);/g, '&amp;$1;');
text = text.replace(/&(nbsp|amp|quot|apos|lt|gt|\d+|x\d+)(;|\W)/g, '&amp;$1$2');
function encodeText(text) { var escapeXml = options.escapeXmlEntities; if (escapeXml == 'always') { // & -> &amp; // &amp; -> &amp;amp; // &quot; -> &amp;quot; // &nbsp; -> &nbsp; text = text.replace(/&(\w+);/g, '%%tmp_entity%%$1%%'); text = text.replace(/%%tmp_entity%%(amp|apos|quot|lt|gt)%%/g, '&$1;'); text = text.replace(/&/g, '&amp;'); text = text.replace(/%%tmp_entity%%(\w+)%%/g, '&$1;'); text = text.replace(/\'/g, '&apos;'); text = text.replace(/\"/g, '&quot;'); } else if (escapeXml == 'html') { // & -> & // ' -> ' // \xA0 -> &nbsp; // &amp; -> &amp;amp; // &quot; -> &amp;quot; // &nbsp; -> &amp;nbsp; text = text.replace(/&(nbsp|amp|quot|apos|lt|gt|\d+|x\d+);/g, '&amp;$1;'); text = text.replace(/\xA0/g, '&nbsp;'); } if (escapeXml == 'always' || escapeXml == 'partial') { text = text.replace(/</g, '&lt;'); text = text.replace(/>/g, '&gt;'); } if ('true' == options.escapeDollar) { text = text.replace(/([^\$])\$\{/g, '$1\\${'); // replace ${...} to \${...} text = text.replace(/^\$\{/g, '\\${'); // replace ${...} to \${...} text = text.replace(/\$\$\{/g, '${'); // replace $${...} to ${...} } return text;}
text = text.replace(/\n/g, "<br />");
function encodeText(text) { var escapeXml = options.escapeXmlEntities; if (escapeXml == 'always') { // & -> &amp; // &amp; -> &amp;amp; // &quot; -> &amp;quot; // &nbsp; -> &nbsp; text = text.replace(/&(\w+);/g, '%%tmp_entity%%$1%%'); text = text.replace(/%%tmp_entity%%(amp|apos|quot|lt|gt)%%/g, '&$1;'); text = text.replace(/&/g, '&amp;'); text = text.replace(/%%tmp_entity%%(\w+)%%/g, '&$1;'); text = text.replace(/\'/g, '&apos;'); text = text.replace(/\"/g, '&quot;'); } else if (escapeXml == 'html') { // & -> & // ' -> ' // \xA0 -> &nbsp; // &amp; -> &amp;amp; // &quot; -> &amp;quot; // &nbsp; -> &amp;nbsp; text = text.replace(/&(nbsp|amp|quot|apos|lt|gt|\d+|x\d+)(;|\W)/g, '&amp;$1$2'); text = text.replace(/\xA0/g, '&nbsp;'); text = text.replace(/ {2,}/g, function(str) { var result = ''; for (var i = 0; i < str.length; i++) { result += '&nbsp;'; } return result; }); // convert multiple spaces to nbsp } if (escapeXml == 'always' || escapeXml == 'partial') { text = text.replace(/</g, '&lt;'); text = text.replace(/>/g, '&gt;'); } if ('true' == options.escapeDollar) { text = text.replace(/([^\$])\$\{/g, '$1\\${'); // replace ${...} to \${...} text = text.replace(/^\$\{/g, '\\${'); // replace ${...} to \${...} text = text.replace(/\$\$\{/g, '${'); // replace $${...} to ${...} } return text;}
text = text.replace(/ {2,}/g, function(str) { var result = ''; for (var i = 0; i < str.length; i++) { result += '&nbsp;'; } return result; });
function encodeText(text) { var escapeXml = options.escapeXmlEntities; if (escapeXml == 'always') { // & -> &amp; // &amp; -> &amp;amp; // &quot; -> &amp;quot; // &nbsp; -> &nbsp; text = text.replace(/&(\w+);/g, '%%tmp_entity%%$1%%'); text = text.replace(/%%tmp_entity%%(amp|apos|quot|lt|gt)%%/g, '&$1;'); text = text.replace(/&/g, '&amp;'); text = text.replace(/%%tmp_entity%%(\w+)%%/g, '&$1;'); text = text.replace(/\'/g, '&apos;'); text = text.replace(/\"/g, '&quot;'); } else if (escapeXml == 'html') { // & -> & // ' -> ' // \xA0 -> &nbsp; // &amp; -> &amp;amp; // &quot; -> &amp;quot; // &nbsp; -> &amp;nbsp; text = text.replace(/&(nbsp|amp|quot|apos|lt|gt|\d+|x\d+)(;|\W)/g, '&amp;$1$2'); text = text.replace(/\xA0/g, '&nbsp;'); } if (escapeXml == 'always' || escapeXml == 'partial') { text = text.replace(/</g, '&lt;'); text = text.replace(/>/g, '&gt;'); } if ('true' == options.escapeDollar) { text = text.replace(/([^\$])\$\{/g, '$1\\${'); // replace ${...} to \${...} text = text.replace(/^\$\{/g, '\\${'); // replace ${...} to \${...} text = text.replace(/\$\$\{/g, '${'); // replace $${...} to ${...} } return text;}
document.removeEvent('mousemove', this.move.bindWithEvent(this)); document.removeEvent('mouseup', this.end.bind(this, el));
document.removeEvent('mousemove', this.bound.move); document.removeEvent('mouseup', this.bound.end);
end: function(el){ document.removeEvent('mousemove', this.move.bindWithEvent(this)); document.removeEvent('mouseup', this.end.bind(this, el)); this.fireEvent('onComplete', el); }
var sz = compute_height() + "px";
var id = (win.inFrame) ? iframe : around; var tmp = document.getElementById(id); var sz = compute_height() + "px"; tmp.style.display= "block"; tmp.style.height = sz;
function end_resize(w, h) { var sz = compute_height() + "px"; el.style.height = sz; if (win.inFrame) { var ifrm = document.getElementById(iframe); ifrm.style.display= "block"; ifrm.style.height = sz; el.style.opacity= 1; } }
if (win.inFrame) { var ifrm = document.getElementById(iframe); ifrm.style.display= "block"; ifrm.style.height = sz; el.style.opacity= 1; }
el.style.opacity= 1;
function end_resize(w, h) { var sz = compute_height() + "px"; el.style.height = sz; if (win.inFrame) { var ifrm = document.getElementById(iframe); ifrm.style.display= "block"; ifrm.style.height = sz; el.style.opacity= 1; } }
Draggables.notify('onEnd');
Draggables.notify('onEnd', this);
endDrag: function(event) { if(this.active && this.dragging) { this.active = false; this.dragging = false; Droppables.fire(event, this.element); Draggables.notify('onEnd'); if(this.options.revert && this.options.reverteffect) { this.options.reverteffect(this.element, this.currentTop()-this.originalTop, this.currentLeft()-this.originalLeft); } else { this.originalLeft = this.currentLeft(); this.originalTop = this.currentTop(); } this.element.style.zIndex = this.originalZ; if(this.options.endeffect) this.options.endeffect(this.element); Droppables.reset(); Event.stop(event); } this.active = false; this.dragging = false; },
if(this.options.revert && this.options.reverteffect) {
var revert = this.options.revert; if(revert && typeof revert == 'function') revert = revert(this.element); if(revert && this.options.reverteffect) {
endDrag: function(event) { if(this.active && this.dragging) { this.active = false; this.dragging = false; Droppables.fire(event, this.element); Draggables.notify('onEnd'); if(this.options.revert && this.options.reverteffect) { this.options.reverteffect(this.element, this.currentTop()-this.originalTop, this.currentLeft()-this.originalLeft); } else { this.originalLeft = this.currentLeft(); this.originalTop = this.currentTop(); } this.element.style.zIndex = this.originalZ; if(this.options.endeffect) this.options.endeffect(this.element); Droppables.reset(); Event.stop(event); } this.active = false; this.dragging = false; },
new Effect2.Opacity(element, {duration:0.2, from:0.7, to:1.0});
new Effect.Opacity(element, {duration:0.2, from:0.7, to:1.0});
endeffect: function(element) { new Effect2.Opacity(element, {duration:0.2, from:0.7, to:1.0}); },