X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/blobdiff_plain/f74802c5a6a42c7648f5df677f3b393291eb0ce4..2db47312ba944bdc5e4dd427e42fde9435ec6fa0:/js/ui/baseuiwindow.js diff --git a/js/ui/baseuiwindow.js b/js/ui/baseuiwindow.js index 01e0ff1..5369d1a 100644 --- a/js/ui/baseuiwindow.js +++ b/js/ui/baseuiwindow.js @@ -3,6 +3,10 @@ qwebirc.ui.HILIGHT_ACTIVITY = 1; qwebirc.ui.HILIGHT_SPEECH = 2; qwebirc.ui.HILIGHT_US = 3; +qwebirc.ui.MAXIMUM_LINES_PER_WINDOW = 1000; + +qwebirc.ui.WINDOW_LASTLINE = qwebirc.ui.WINDOW_QUERY | qwebirc.ui.WINDOW_MESSAGES | qwebirc.ui.WINDOW_CHANNEL | qwebirc.ui.WINDOW_STATUS; + qwebirc.ui.Window = new Class({ Implements: [Events], initialize: function(parentObject, client, type, name, identifier) { @@ -19,9 +23,14 @@ qwebirc.ui.Window = new Class({ this.scrollpos = null; this.lastNickHash = {}; this.lastSelected = null; + this.subWindow = null; this.closed = false; - }, - updateNickList: function(nicks) { + + if(this.type & qwebirc.ui.WINDOW_LASTLINE) { + this.lastPositionLine = new Element("hr"); + this.lastPositionLine.addClass("lastpos"); + this.lastPositionLineInserted = false; + } }, updateTopic: function(topic, element) { qwebirc.ui.Colourise("[" + topic + "]", element, this.client.exec, this.parentObject.urlDispatcher.bind(this.parentObject), this); @@ -37,22 +46,40 @@ qwebirc.ui.Window = new Class({ this.parentObject.__closed(this); this.fireEvent("close", this); }, + subEvent: function(event) { + if($defined(this.subWindow)) + this.subWindow.fireEvent(event); + }, + setSubWindow: function(window) { + this.subWindow = window; + }, select: function() { + if(this.lastPositionLineInserted && !this.parentObject.uiOptions.LASTPOS_LINE) { + this.lines.removeChild(this.lastPositionLine); + this.lastPositionLineInserted = false; + } + this.active = true; this.parentObject.__setActiveWindow(this); if(this.hilighted) this.setHilighted(qwebirc.ui.HILIGHT_NONE); - + + this.subEvent("select"); this.resetScrollPos(); this.lastSelected = new Date(); }, deselect: function() { + this.subEvent("deselect"); + this.setScrollPos(); if($defined(this.scrolltimer)) { $clear(this.scrolltimer); this.scrolltimer = null; } + if(this.type & qwebirc.ui.WINDOW_LASTLINE) + this.replaceLastPositionLine(); + this.active = false; }, resetScrollPos: function() { @@ -77,15 +104,19 @@ qwebirc.ui.Window = new Class({ if(type.match(/(NOTICE|ACTION|MSG)$/)) { if(this.type == qwebirc.ui.WINDOW_QUERY || this.type == qwebirc.ui.WINDOW_MESSAGES) { - if(type.match(/^OUR/)) { + if(type.match(/^OUR/) || type.match(/NOTICE$/)) { hilight = qwebirc.ui.HILIGHT_ACTIVITY; } else { hilight = qwebirc.ui.HILIGHT_US; + this.parentObject.beep(); + this.parentObject.flash(); } } if(!type.match(/^OUR/) && this.client.hilightController.match(line["m"])) { lhilight = true; hilight = qwebirc.ui.HILIGHT_US; + this.parentObject.beep(); + this.parentObject.flash(); } else if(hilight != qwebirc.ui.HILIGHT_US) { hilight = qwebirc.ui.HILIGHT_SPEECH; } @@ -98,11 +129,19 @@ qwebirc.ui.Window = new Class({ if(type) line = this.parentObject.theme.message(type, line, lhilight); - qwebirc.ui.Colourise(qwebirc.irc.IRCTimestamp(new Date()) + " " + line, element, this.client.exec, this.parentObject.urlDispatcher.bind(this.parentObject), this); + var tsE = document.createElement("span"); + tsE.className = "timestamp"; + tsE.appendChild(document.createTextNode(qwebirc.irc.IRCTimestamp(new Date()) + " ")); + element.appendChild(tsE); + + qwebirc.ui.Colourise(line, element, this.client.exec, this.parentObject.urlDispatcher.bind(this.parentObject), this); this.scrollAdd(element); }, errorMessage: function(message) { - this.addLine("", message, "red"); + this.addLine("", message, "warncolour"); + }, + infoMessage: function(message) { + this.addLine("", message, "infocolour"); }, setHilighted: function(state) { if(state == qwebirc.ui.HILIGHT_NONE || state >= this.hilighted) @@ -116,13 +155,16 @@ qwebirc.ui.Window = new Class({ var prev = parent.getScroll(); var prevbottom = parent.getScrollSize().y; - var prevsize = parent.getSize(); - - /* fixes an IE bug */ - if(prevbottom < prevsize.y) - prevbottom = prevsize.y; + var prevheight = parent.clientHeight; + + /* + * fixes an IE bug: the scrollheight is less than the actual height + * when the div isn't full + */ + if(prevbottom < prevheight) + prevbottom = prevheight; - return prev.y + prevsize.y == prevbottom; + return prev.y + prevheight == prevbottom; }, getScrollParent: function() { var scrollparent = this.lines; @@ -132,6 +174,9 @@ qwebirc.ui.Window = new Class({ return scrollparent; }, scrollToBottom: function() { + if(this.type == qwebirc.ui.WINDOW_CUSTOM || this.type == qwebirc.ui.WINDOW_CONNECT) + return; + var parent = this.lines; var scrollparent = this.getScrollParent(); @@ -144,10 +189,15 @@ qwebirc.ui.Window = new Class({ if($defined(element)) { var sd = this.scrolledDown(); parent.appendChild(element); + if(parent.childNodes.length > qwebirc.ui.MAXIMUM_LINES_PER_WINDOW) + parent.removeChild(parent.firstChild); if(sd) { if(this.scrolltimer) $clear(this.scrolltimer); this.scrolltimer = this.scrollAdd.delay(50, this, [null]); + } else { + this.scrollToBottom(); + this.scrolltimer = null; } } else { this.scrollToBottom(); @@ -186,5 +236,32 @@ qwebirc.ui.Window = new Class({ historyExec: function(line) { this.commandhistory.addLine(line); this.client.exec(line); + }, + focusChange: function(newValue) { + if(newValue == true || !(this.type & qwebirc.ui.WINDOW_LASTLINE)) + return; + + this.replaceLastPositionLine(); + }, + replaceLastPositionLine: function() { + if(this.parentObject.uiOptions.LASTPOS_LINE) { + if(!this.lastPositionLineInserted) { + this.scrollAdd(this.lastPositionLine); + } else if(this.lines.lastChild != this.lastPositionLine) { + try { + this.lines.removeChild(this.lastPositionLine); + } catch(e) { + /* IGNORE, /clear removes lastPositionLine from the dom without resetting it. */ + } + this.scrollAdd(this.lastPositionLine); + } + } else { + if(this.lastPositionLineInserted) + this.lines.removeChild(this.lastPositionLine); + } + + this.lastPositionLineInserted = this.parentObject.uiOptions.LASTPOS_LINE; + }, + rename: function(name) { } });