]> jfr.im git - irc/quakenet/qwebirc.git/blame - js/ui/baseuiwindow.js
Fixes issue 68 (proper command queuing).
[irc/quakenet/qwebirc.git] / js / ui / baseuiwindow.js
CommitLineData
96f28062
CP
1qwebirc.ui.HILIGHT_NONE = 0;
2qwebirc.ui.HILIGHT_ACTIVITY = 1;
3qwebirc.ui.HILIGHT_SPEECH = 2;
4qwebirc.ui.HILIGHT_US = 3;
5
5c0b5a6e
CP
6qwebirc.ui.WINDOW_LASTLINE = qwebirc.ui.WINDOW_QUERY | qwebirc.ui.WINDOW_MESSAGES | qwebirc.ui.WINDOW_CHANNEL | qwebirc.ui.WINDOW_STATUS;
7
e20e5a6b 8qwebirc.ui.Window = new Class({
94b18192
CP
9 Implements: [Events],
10 initialize: function(parentObject, client, type, name, identifier) {
11 this.parentObject = parentObject;
12 this.type = type;
13 this.name = name;
14 this.active = false;
15 this.client = client;
16 this.identifier = identifier;
96f28062 17 this.hilighted = qwebirc.ui.HILIGHT_NONE;
381fddfd 18 this.scrolltimer = null;
9b63b053 19 this.commandhistory = this.parentObject.commandhistory;
25be5960 20 this.scrolleddown = true;
9d538d73 21 this.scrollpos = null;
52090a1f 22 this.lastNickHash = {};
3236ca77 23 this.lastSelected = null;
17f40fd9 24 this.subWindow = null;
f84bf379 25 this.closed = false;
5c0b5a6e
CP
26
27 if(this.type & qwebirc.ui.WINDOW_LASTLINE) {
28 this.lastPositionLine = new Element("hr");
29 this.lastPositionLine.addClass("lastpos");
30 this.lastPositionLineInserted = false;
31 }
94b18192 32 },
1f06a70a 33 updateTopic: function(topic, element) {
2cd9e32d 34 qwebirc.ui.Colourise("[" + topic + "]", element, this.client.exec, this.parentObject.urlDispatcher.bind(this.parentObject), this);
94b18192
CP
35 },
36 close: function() {
f84bf379
CP
37 this.closed = true;
38
381fddfd
CP
39 if($defined(this.scrolltimer)) {
40 $clear(this.scrolltimer);
41 this.scrolltimer = null;
42 }
43
94b18192
CP
44 this.parentObject.__closed(this);
45 this.fireEvent("close", this);
46 },
17f40fd9
CP
47 subEvent: function(event) {
48 if($defined(this.subWindow))
49 this.subWindow.fireEvent(event);
50 },
51 setSubWindow: function(window) {
52 this.subWindow = window;
53 },
94b18192 54 select: function() {
5c0b5a6e
CP
55 if(this.lastPositionLineInserted && !this.parentObject.uiOptions.LASTPOS_LINE) {
56 this.lines.removeChild(this.lastPositionLine);
57 this.lastPositionLineInserted = false;
58 }
59
94b18192
CP
60 this.active = true;
61 this.parentObject.__setActiveWindow(this);
381fddfd 62 if(this.hilighted)
96f28062 63 this.setHilighted(qwebirc.ui.HILIGHT_NONE);
17f40fd9
CP
64
65 this.subEvent("select");
9d538d73 66 this.resetScrollPos();
3236ca77 67 this.lastSelected = new Date();
94b18192
CP
68 },
69 deselect: function() {
17f40fd9
CP
70 this.subEvent("deselect");
71
9d538d73 72 this.setScrollPos();
7c633700
CP
73 if($defined(this.scrolltimer)) {
74 $clear(this.scrolltimer);
75 this.scrolltimer = null;
76 }
77
2dd49204
CP
78 if(this.type & qwebirc.ui.WINDOW_LASTLINE)
79 this.replaceLastPositionLine();
5c0b5a6e 80
94b18192
CP
81 this.active = false;
82 },
9d538d73
CP
83 resetScrollPos: function() {
84 if(this.scrolleddown) {
85 this.scrollToBottom();
86 } else if($defined(this.scrollpos)) {
87 this.getScrollParent().scrollTo(this.scrollpos.x, this.scrollpos.y);
88 }
89 },
90 setScrollPos: function() {
91 if(!this.parentObject.singleWindow) {
92 this.scrolleddown = this.scrolledDown();
93 this.scrollpos = this.lines.getScroll();
94 }
95 },
30bd2620 96 addLine: function(type, line, colour, element) {
96f28062 97 var hilight = qwebirc.ui.HILIGHT_NONE;
b2e77cf9
CP
98 var lhilight = false;
99
96f28062
CP
100 if(type) {
101 hilight = qwebirc.ui.HILIGHT_ACTIVITY;
102
103 if(type.match(/(NOTICE|ACTION|MSG)$/)) {
f74802c5 104 if(this.type == qwebirc.ui.WINDOW_QUERY || this.type == qwebirc.ui.WINDOW_MESSAGES) {
7af2d0c1 105 if(type.match(/^OUR/) || type.match(/NOTICE$/)) {
f74802c5
CP
106 hilight = qwebirc.ui.HILIGHT_ACTIVITY;
107 } else {
108 hilight = qwebirc.ui.HILIGHT_US;
aeb8c784 109 this.parentObject.beep();
326478c2 110 this.parentObject.flash();
f74802c5 111 }
b2e77cf9
CP
112 }
113 if(!type.match(/^OUR/) && this.client.hilightController.match(line["m"])) {
114 lhilight = true;
115 hilight = qwebirc.ui.HILIGHT_US;
aeb8c784 116 this.parentObject.beep();
326478c2 117 this.parentObject.flash();
b2e77cf9 118 } else if(hilight != qwebirc.ui.HILIGHT_US) {
96f28062
CP
119 hilight = qwebirc.ui.HILIGHT_SPEECH;
120 }
121 }
122 }
123
124 if(!this.active && (hilight != qwebirc.ui.HILIGHT_NONE))
125 this.setHilighted(hilight);
126
381fddfd 127 if(type)
b2e77cf9 128 line = this.parentObject.theme.message(type, line, lhilight);
381fddfd 129
2cd9e32d 130 qwebirc.ui.Colourise(qwebirc.irc.IRCTimestamp(new Date()) + " " + line, element, this.client.exec, this.parentObject.urlDispatcher.bind(this.parentObject), this);
381fddfd 131 this.scrollAdd(element);
94b18192
CP
132 },
133 errorMessage: function(message) {
5fc104ff 134 this.addLine("", message, "warncolour");
381fddfd 135 },
0acc3c54 136 infoMessage: function(message) {
5fc104ff 137 this.addLine("", message, "infocolour");
0acc3c54 138 },
381fddfd 139 setHilighted: function(state) {
96f28062
CP
140 if(state == qwebirc.ui.HILIGHT_NONE || state >= this.hilighted)
141 this.hilighted = state;
381fddfd 142 },
25be5960 143 scrolledDown: function() {
7c633700
CP
144 if(this.scrolltimer)
145 return true;
146
381fddfd 147 var parent = this.lines;
381fddfd 148
381fddfd
CP
149 var prev = parent.getScroll();
150 var prevbottom = parent.getScrollSize().y;
151 var prevsize = parent.getSize();
25be5960 152
fccb1dac
CP
153 /* fixes an IE bug */
154 if(prevbottom < prevsize.y)
155 prevbottom = prevsize.y;
156
7c633700
CP
157 return prev.y + prevsize.y == prevbottom;
158 },
9d538d73
CP
159 getScrollParent: function() {
160 var scrollparent = this.lines;
7c633700
CP
161
162 if($defined(this.scroller))
163 scrollparent = this.scroller;
9d538d73
CP
164 return scrollparent;
165 },
166 scrollToBottom: function() {
73a06774
CP
167 if(this.type == qwebirc.ui.WINDOW_CUSTOM || this.type == qwebirc.ui.WINDOW_CONNECT)
168 return;
169
9d538d73
CP
170 var parent = this.lines;
171 var scrollparent = this.getScrollParent();
7c633700
CP
172
173 scrollparent.scrollTo(parent.getScroll().x, parent.getScrollSize().y);
174 },
175 scrollAdd: function(element) {
176 var parent = this.lines;
381fddfd
CP
177
178 /* scroll in bursts, else the browser gets really slow */
179 if($defined(element)) {
25be5960 180 var sd = this.scrolledDown();
381fddfd 181 parent.appendChild(element);
7c633700 182 if(sd) {
381fddfd
CP
183 if(this.scrolltimer)
184 $clear(this.scrolltimer);
7c633700 185 this.scrolltimer = this.scrollAdd.delay(50, this, [null]);
381fddfd
CP
186 }
187 } else {
25be5960 188 this.scrollToBottom();
381fddfd
CP
189 this.scrolltimer = null;
190 }
9b63b053 191 },
52090a1f 192 updateNickList: function(nicks) {
833f14ce 193 var nickHash = {}, present = {};
52090a1f
CP
194 var added = [];
195 var lnh = this.lastNickHash;
196
833f14ce
CP
197 for(var i=0;i<nicks.length;i++)
198 present[nicks[i]] = 1;
199
200 for(var k in lnh)
201 if(!present[k])
202 this.nickListRemove(k, lnh[k]);
203
52090a1f
CP
204 for(var i=0;i<nicks.length;i++) {
205 var n = nicks[i];
206 var l = lnh[n];
207 if(!l) {
208 l = this.nickListAdd(n, i);
209 if(!l)
210 l = 1;
211 }
212 nickHash[n] = l;
213 }
214
52090a1f
CP
215 this.lastNickHash = nickHash;
216 },
217 nickListAdd: function(position, nick) {
218 },
219 nickListRemove: function(nick, stored) {
220 },
9b63b053
CP
221 historyExec: function(line) {
222 this.commandhistory.addLine(line);
223 this.client.exec(line);
eb271d86
CP
224 },
225 focusChange: function(newValue) {
eb271d86
CP
226 if(newValue == true || !(this.type & qwebirc.ui.WINDOW_LASTLINE))
227 return;
2dd49204
CP
228
229 this.replaceLastPositionLine();
230 },
231 replaceLastPositionLine: function() {
232 if(this.parentObject.uiOptions.LASTPOS_LINE) {
233 if(!this.lastPositionLineInserted) {
234 this.scrollAdd(this.lastPositionLine);
235 } else if(this.lines.lastChild != this.lastPositionLine) {
d081c4b3
CP
236 try {
237 this.lines.removeChild(this.lastPositionLine);
238 } catch(e) {
239 /* IGNORE, /clear removes lastPositionLine from the dom without resetting it. */
240 }
2dd49204
CP
241 this.scrollAdd(this.lastPositionLine);
242 }
243 } else {
244 if(this.lastPositionLineInserted)
245 this.lines.removeChild(this.lastPositionLine);
246 }
247
248 this.lastPositionLineInserted = this.parentObject.uiOptions.LASTPOS_LINE;
eb271d86 249 }
94b18192 250});