X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/blobdiff_plain/b2e77cf94c0ec63565a26d71f02117be2bb65918..5f2808af69256656fead748a8c5ee46f41177ce1:/js/ui/baseuiwindow.js?ds=sidebyside diff --git a/js/ui/baseuiwindow.js b/js/ui/baseuiwindow.js index 62e5475..84d337e 100644 --- a/js/ui/baseuiwindow.js +++ b/js/ui/baseuiwindow.js @@ -16,15 +16,18 @@ qwebirc.ui.Window = new Class({ this.scrolltimer = null; this.commandhistory = this.parentObject.commandhistory; this.scrolleddown = true; + this.scrollpos = null; this.lastNickHash = {}; - //new CommandHistory(); - }, - updateNickList: function(nicks) { + this.lastSelected = null; + this.subWindow = null; + this.closed = false; }, updateTopic: function(topic, element) { qwebirc.ui.Colourise("[" + topic + "]", element, this.client.exec, this.parentObject.urlDispatcher.bind(this.parentObject), this); }, close: function() { + this.closed = true; + if($defined(this.scrolltimer)) { $clear(this.scrolltimer); this.scrolltimer = null; @@ -33,17 +36,27 @@ 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() { this.active = true; this.parentObject.__setActiveWindow(this); if(this.hilighted) this.setHilighted(qwebirc.ui.HILIGHT_NONE); - if(this.scrolleddown) - this.scrollToBottom(); + + this.subEvent("select"); + this.resetScrollPos(); + this.lastSelected = new Date(); }, deselect: function() { - if(!this.parentObject.singleWindow) - this.scrolleddown = this.scrolledDown(); + this.subEvent("deselect"); + + this.setScrollPos(); if($defined(this.scrolltimer)) { $clear(this.scrolltimer); this.scrolltimer = null; @@ -51,6 +64,19 @@ qwebirc.ui.Window = new Class({ this.active = false; }, + resetScrollPos: function() { + if(this.scrolleddown) { + this.scrollToBottom(); + } else if($defined(this.scrollpos)) { + this.getScrollParent().scrollTo(this.scrollpos.x, this.scrollpos.y); + } + }, + setScrollPos: function() { + if(!this.parentObject.singleWindow) { + this.scrolleddown = this.scrolledDown(); + this.scrollpos = this.lines.getScroll(); + } + }, addLine: function(type, line, colour, element) { var hilight = qwebirc.ui.HILIGHT_NONE; var lhilight = false; @@ -59,12 +85,18 @@ qwebirc.ui.Window = new Class({ hilight = qwebirc.ui.HILIGHT_ACTIVITY; if(type.match(/(NOTICE|ACTION|MSG)$/)) { - if(this.type == qwebirc.ui.WINDOW_QUERY) { - hilight = qwebirc.ui.HILIGHT_US; + if(this.type == qwebirc.ui.WINDOW_QUERY || this.type == qwebirc.ui.WINDOW_MESSAGES) { + if(type.match(/^OUR/) || type.match(/NOTICE$/)) { + hilight = qwebirc.ui.HILIGHT_ACTIVITY; + } else { + hilight = qwebirc.ui.HILIGHT_US; + this.parentObject.beep(); + } } if(!type.match(/^OUR/) && this.client.hilightController.match(line["m"])) { lhilight = true; hilight = qwebirc.ui.HILIGHT_US; + this.parentObject.beep(); } else if(hilight != qwebirc.ui.HILIGHT_US) { hilight = qwebirc.ui.HILIGHT_SPEECH; } @@ -81,7 +113,10 @@ qwebirc.ui.Window = new Class({ 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) @@ -103,12 +138,19 @@ qwebirc.ui.Window = new Class({ return prev.y + prevsize.y == prevbottom; }, - scrollToBottom: function() { - var parent = this.lines; - var scrollparent = parent; + getScrollParent: function() { + var scrollparent = this.lines; if($defined(this.scroller)) scrollparent = this.scroller; + 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(); scrollparent.scrollTo(parent.getScroll().x, parent.getScrollSize().y); }, @@ -130,10 +172,17 @@ qwebirc.ui.Window = new Class({ } }, updateNickList: function(nicks) { - var nickHash = {}; + var nickHash = {}, present = {}; var added = []; var lnh = this.lastNickHash; + for(var i=0;i