]> jfr.im git - irc/quakenet/qwebirc.git/blame - js/ui/frontends/qui.js
attempt to fix the sometimes visible reflow issue at startup
[irc/quakenet/qwebirc.git] / js / ui / frontends / qui.js
CommitLineData
e20e5a6b 1qwebirc.ui.QUI = new Class({
144ee52f 2 Extends: qwebirc.ui.RootUI,
2cad083e
CP
3 initialize: function(parentElement, theme, options) {
4 this.parent(parentElement, qwebirc.ui.QUI.Window, "qui", options);
e20e5a6b
CP
5 this.theme = theme;
6 this.parentElement = parentElement;
4dd199c3 7 this.setModifiableStylesheet("qui");
e20e5a6b
CP
8 },
9 postInitialize: function() {
10 this.qjsui = new qwebirc.ui.QUI.JSUI("qwebirc-qui", this.parentElement);
bfbe72f9
CP
11 this.qjsui.addEvent("reflow", function() {
12 var w = this.getActiveWindow();
13 if($defined(w))
14 w.onResize();
15 }.bind(this));
941e1642 16 this.qjsui.top.addClass("outertabbar");
a4a71818
CP
17 this.qjsui.left.addClass("outertabbar");
18
19 this.qjsui.top.addClass("outertabbar_top");
20 this.qjsui.left.addClass("outertabbar_left");
21
e20e5a6b
CP
22 this.qjsui.bottom.addClass("input");
23 this.qjsui.right.addClass("nicklist");
24 this.qjsui.topic.addClass("topic");
25 this.qjsui.middle.addClass("lines");
26
a4a71818
CP
27 this.outerTabs = new Element("div");
28 this.sideTabs = null;
0989d983 29
941e1642
CP
30 this.tabs = new Element("div");
31 this.tabs.addClass("tabbar");
9da8639a
CP
32
33 this.__createDropdownMenu();
a4a71818 34
941e1642 35 this.outerTabs.appendChild(this.tabs);
e20e5a6b 36 this.origtopic = this.topic = this.qjsui.topic;
a4a71818 37 this.lines = this.qjsui.middle;
e20e5a6b
CP
38 this.orignicklist = this.nicklist = this.qjsui.right;
39
40 this.input = this.qjsui.bottom;
41 this.reflow = this.qjsui.reflow.bind(this.qjsui);
abc73af7
CP
42
43 var scrollHandler = function(x) {
ff4befd8 44 var event = new Event(x);
947934f4
CP
45 var up, down;
46 if(this.sideTabs) {
47 var p = this.qjsui.left;
48
49 /* don't scroll if we're scrollable */
50 if(p.getScrollSize().y > p.clientHeight)
51 return;
52
53 up = event.wheel < 0;
54 down = event.wheel > 0;
55 } else {
56 up = event.wheel > 0;
57 down = event.wheel < 0;
58 }
a4a71818 59
947934f4 60 if(up) {
ff4befd8 61 this.nextWindow();
947934f4 62 } else if(down) {
b35116e2 63 this.prevWindow();
ff4befd8
CP
64 }
65 event.stop();
abc73af7
CP
66 }.bind(this);
67 this.qjsui.left.addEvent("mousewheel", scrollHandler);
68 this.qjsui.top.addEvent("mousewheel", scrollHandler);
69
e20e5a6b
CP
70 this.createInput();
71 this.reflow();
99f6fd59
CP
72 for(var i=50;i<1000;i+=50)
73 this.reflow.delay(i, true);
74 for(var i=1000;i<2000;i+=100)
75 this.reflow.delay(i);
76 for(var i=2000;i<15000;i+=500)
77 this.reflow.delay(i);
78
a4a71818
CP
79 this.setSideTabs(this.uiOptions.SIDE_TABS);
80
81 },
82 newWindow: function(client, type, name) {
83 var w = this.parent(client, type, name);
84 w.setSideTabs(this.sideTabs);
85 return w;
e20e5a6b 86 },
0989d983 87 __createDropdownMenu: function() {
e9837dce 88 var dropdownMenu = new Element("span");
43cb8910 89 dropdownMenu.addClass("dropdownmenu");
0989d983
CP
90
91 dropdownMenu.hide = function() {
43cb8910
CP
92 dropdownMenu.setStyle("display", "none");
93 dropdownMenu.visible = false;
e9837dce 94 document.removeEvent("mousedown", hideEvent);
43cb8910 95 }.bind(this);
e9837dce 96 var hideEvent = function() { dropdownMenu.hide(); };
0989d983
CP
97
98 dropdownMenu.hide();
43cb8910
CP
99 this.parentElement.appendChild(dropdownMenu);
100
101 this.UICommands.forEach(function(x) {
102 var text = x[0];
103 var fn = this[x[1] + "Window"].bind(this);
104 var e = new Element("a");
0989d983 105 e.addEvent("mousedown", function(e) { new Event(e).stop(); });
43cb8910
CP
106 e.addEvent("click", function() {
107 dropdownMenu.hide();
108 fn();
109 });
110 e.set("text", text);
111 dropdownMenu.appendChild(e);
112 }.bind(this));
113
941e1642 114 var dropdown = new Element("div");
43cb8910 115 dropdown.addClass("dropdown-tab");
fbe5af77 116 dropdown.appendChild(new Element("img", {src: qwebirc.global.staticBaseURL + "images/icon.png", title: "menu", alt: "menu"}));
391f51ff
CP
117 dropdown.setStyle("opacity", 1);
118
941e1642 119 this.outerTabs.appendChild(dropdown);
9da8639a 120 dropdownMenu.show = function(x) {
43cb8910 121 new Event(x).stop();
321abaf8 122
43cb8910
CP
123 if(dropdownMenu.visible) {
124 dropdownMenu.hide();
125 return;
126 }
a4a71818
CP
127 var parentSize = this.outerTabs.parentNode.getSize().y;
128
129 dropdownMenu.setStyle("left", parentSize.x);
385143a6 130 dropdownMenu.setStyle("top", top-1); /* -1 == top border */
43cb8910
CP
131 dropdownMenu.setStyle("display", "inline-block");
132 dropdownMenu.visible = true;
e9837dce
CP
133
134 document.addEvent("mousedown", hideEvent);
43cb8910 135 }.bind(this);
e9837dce 136 dropdown.addEvent("mousedown", function(e) { new Event(e).stop(); });
43cb8910 137 dropdown.addEvent("click", dropdownMenu.show);
0989d983 138 },
e20e5a6b
CP
139 createInput: function() {
140 var form = new Element("form");
141 this.input.appendChild(form);
c1416a8d 142
e20e5a6b
CP
143 form.addClass("input");
144
145 var inputbox = new Element("input");
fc38a626 146 this.addEvent("signedOn", function() {
1761242b 147 inputbox.placeholder = "chat here! you can also use commands, like /JOIN or /HELP";
63494576
CP
148 var d = function() { inputbox.addClass("input-flash"); }.delay(250);
149 var d = function() { inputbox.removeClass("input-flash"); }.delay(500);
150 var d = function() { inputbox.addClass("input-flash"); }.delay(750);
151 var d = function() { inputbox.removeClass("input-flash"); }.delay(1000);
152 var d = function() { inputbox.addClass("input-flash"); }.delay(1250);
153 var d = function() { inputbox.removeClass("input-flash"); }.delay(1750);
fc38a626 154 });
e20e5a6b
CP
155 form.appendChild(inputbox);
156 this.inputbox = inputbox;
7c82e345 157 this.inputbox.maxLength = 470;
c1416a8d
CP
158
159 var sendInput = function() {
e20e5a6b
CP
160 if(inputbox.value == "")
161 return;
162
3184781b 163 this.resetTabComplete();
e20e5a6b
CP
164 this.getActiveWindow().historyExec(inputbox.value);
165 inputbox.value = "";
fc38a626 166 inputbox.placeholder = "";
c1416a8d
CP
167 }.bind(this);
168
169 if(!qwebirc.util.deviceHasKeyboard()) {
170 inputbox.addClass("mobile-input");
171 var inputButton = new Element("input", {type: "button"});
172 inputButton.addClass("mobile-button");
173 inputButton.addEvent("click", function() {
174 sendInput();
175 inputbox.focus();
176 });
177 inputButton.value = ">";
178 this.input.appendChild(inputButton);
179 var reflowButton = function() {
180 var containerSize = this.input.getSize();
181 var buttonSize = inputButton.getSize();
182
183 var buttonLeft = containerSize.x - buttonSize.x - 5; /* lovely 5 */
184
185 inputButton.setStyle("left", buttonLeft);
186 inputbox.setStyle("width", buttonLeft - 5);
187 inputButton.setStyle("height", containerSize.y);
188 }.bind(this);
189 this.qjsui.addEvent("reflow", reflowButton);
190 } else {
191 inputbox.addClass("keyboard-input");
192 }
193
194 form.addEvent("submit", function(e) {
195 new Event(e).stop();
196 sendInput();
197 });
710fd882
CP
198
199 var reset = this.resetTabComplete.bind(this);
200 inputbox.addEvent("focus", reset);
201 inputbox.addEvent("mousedown", reset);
202 inputbox.addEvent("keypress", reset);
203
e20e5a6b
CP
204 inputbox.addEvent("keydown", function(e) {
205 var resultfn;
206 var cvalue = inputbox.value;
710fd882
CP
207
208 if(e.alt || e.control || e.meta)
209 return;
210
211 if(e.key == "up" && !e.shift) {
e20e5a6b 212 resultfn = this.commandhistory.upLine;
710fd882 213 } else if(e.key == "down" && !e.shift) {
e20e5a6b 214 resultfn = this.commandhistory.downLine;
710fd882
CP
215 } else if(e.key == "tab") {
216 this.tabComplete(inputbox, e.shift);
217
3184781b 218 new Event(e).stop();
710fd882 219 e.preventDefault();
3184781b 220 return;
e20e5a6b
CP
221 } else {
222 return;
223 }
224
3184781b 225 this.resetTabComplete();
e20e5a6b
CP
226 if((cvalue != "") && (this.lastcvalue != cvalue))
227 this.commandhistory.addLine(cvalue, true);
228
229 var result = resultfn.bind(this.commandhistory)();
230
231 new Event(e).stop();
710fd882
CP
232 e.preventDefault();
233
e20e5a6b
CP
234 if(!result)
235 result = "";
236 this.lastcvalue = result;
237
238 inputbox.value = result;
1d6756bc 239 qwebirc.util.setAtEnd(inputbox);
e20e5a6b
CP
240 }.bind(this));
241 },
242 setLines: function(lines) {
243 this.lines.parentNode.replaceChild(lines, this.lines);
244 this.qjsui.middle = this.lines = lines;
245 },
246 setChannelItems: function(nicklist, topic) {
247 if(!$defined(nicklist)) {
248 nicklist = this.orignicklist;
249 topic = this.origtopic;
250 }
251 this.nicklist.parentNode.replaceChild(nicklist, this.nicklist);
252 this.qjsui.right = this.nicklist = nicklist;
253
254 this.topic.parentNode.replaceChild(topic, this.topic);
255 this.qjsui.topic = this.topic = topic;
a4a71818
CP
256 },
257 setSideTabs: function(value) {
258 if(value === this.sideTabs)
259 return;
260
261 if(this.sideTabs === true) {
262 this.qjsui.left.removeChild(this.outerTabs);
263 } else if(this.sideTabs === false) {
264 this.qjsui.top.removeChild(this.outerTabs);
265 }
266 if(value) {
267 this.qjsui.left.appendChild(this.outerTabs);
268 this.qjsui.top.style.display = "none";
269 this.qjsui.left.style.display = "";
270 } else {
271 this.qjsui.top.appendChild(this.outerTabs);
272 this.qjsui.top.style.display = "";
273 this.qjsui.left.style.display = "none";
274 }
275 this.sideTabs = value;
276 this.windows.each(function(k, v) {
277 v.each(function(k, v2) {
278 v2.setSideTabs(value);
279 });
280 });
e20e5a6b
CP
281 }
282});
283
284qwebirc.ui.QUI.JSUI = new Class({
bfbe72f9 285 Implements: [Events],
b1ee83f3
CP
286 initialize: function(class_, parent, sizer) {
287 this.parent = parent;
288 this.sizer = $defined(sizer)?sizer:parent;
a4a71818 289
24ede2cb
CP
290 this.class_ = class_;
291 this.create();
292
6c19eb8f
CP
293 this.reflowevent = null;
294
b1ee83f3 295 window.addEvent("resize", function() {
6c19eb8f 296 this.reflow(100);
b1ee83f3
CP
297 }.bind(this));
298 },
24ede2cb 299 applyClasses: function(pos, l) {
6c19eb8f 300 l.addClass("dynamicpanel");
24ede2cb 301 l.addClass(this.class_);
a4a71818 302 l.addClass(pos + "boundpanel");
24ede2cb
CP
303 },
304 create: function() {
305 var XE = function(pos) {
306 var element = new Element("div");
307 this.applyClasses(pos, element);
b1ee83f3 308
24ede2cb
CP
309 this.parent.appendChild(element);
310 return element;
b1ee83f3
CP
311 }.bind(this);
312
24ede2cb 313 this.top = XE("top");
a4a71818 314 this.left = XE("left");
24ede2cb
CP
315 this.topic = XE("topic");
316 this.middle = XE("middle");
317 this.right = XE("right");
318 this.bottom = XE("bottom");
b1ee83f3 319 },
6c19eb8f
CP
320 reflow: function(delay) {
321 if(!delay)
322 delay = 1;
323
324 if(this.reflowevent)
325 $clear(this.reflowevent);
326 this.__reflow();
327 this.reflowevent = this.__reflow.delay(delay, this);
328 },
329 __reflow: function() {
b1ee83f3
CP
330 var bottom = this.bottom;
331 var middle = this.middle;
332 var right = this.right;
333 var topic = this.topic;
334 var top = this.top;
a4a71818
CP
335 var left = this.left;
336
337 /* |----------------------------------------------|
338 * | top |
339 * |----------------------------------------------|
340 * | left | topic | right |
341 * | |-------------------------------| |
342 * | | middle | |
343 * | | | |
344 * | | | |
345 * | |---------------------------------------|
346 * | | bottom |
347 * |----------------------------------------------|
348 */
349
b1ee83f3
CP
350 var topicsize = topic.getSize();
351 var topsize = top.getSize();
352 var rightsize = right.getSize();
353 var bottomsize = bottom.getSize();
a4a71818 354 var leftsize = left.getSize();
b1ee83f3
CP
355 var docsize = this.sizer.getSize();
356
357 var mheight = (docsize.y - topsize.y - bottomsize.y - topicsize.y);
6e18a495 358 var mwidth = (docsize.x - rightsize.x - leftsize.x);
b1ee83f3 359
a4a71818 360 left.setStyle("top", topsize.y);
4b9f894d 361 topic.setStyle("top", topsize.y);
a4a71818 362 topic.setStyle("left", leftsize.x);
970463d9 363 topic.setStyle("width", docsize.x - leftsize.x);
b1ee83f3 364
4b9f894d 365 middle.setStyle("top", (topsize.y + topicsize.y));
a4a71818 366 middle.setStyle("left", leftsize.x);
b1ee83f3 367 if(mheight > 0) {
4b9f894d
CP
368 middle.setStyle("height", mheight);
369 right.setStyle("height", mheight);
b1ee83f3
CP
370 }
371
6c19eb8f 372 if(mwidth > 0)
4b9f894d
CP
373 middle.setStyle("width", mwidth);
374 right.setStyle("top", (topsize.y + topicsize.y));
a4a71818
CP
375
376 bottom.setStyle("left", leftsize.x);
bfbe72f9 377 this.fireEvent("reflow");
b1ee83f3 378 },
5f464ed5 379 showChannel: function(state, nicklistVisible) {
b1ee83f3
CP
380 var display = "none";
381 if(state)
382 display = "block";
383
5f464ed5 384 this.right.setStyle("display", nicklistVisible ? display : "none");
b1ee83f3 385 this.topic.setStyle("display", display);
6c19eb8f
CP
386 },
387 showInput: function(state) {
941e1642 388 this.bottom.isVisible = state;
6c19eb8f 389 this.bottom.setStyle("display", state?"block":"none");
b1ee83f3
CP
390 }
391});
35155ba7 392
e20e5a6b
CP
393qwebirc.ui.QUI.Window = new Class({
394 Extends: qwebirc.ui.Window,
f4ae92cc 395
f74802c5
CP
396 initialize: function(parentObject, client, type, name, identifier) {
397 this.parent(parentObject, client, type, name, identifier);
be0bd774 398
cb9d1c92 399 this.tab = new Element("a");
f4ae92cc 400 this.tab.addClass("tab");
fd60516d 401 this.tab.addEvent("focus", function() { this.blur() }.bind(this.tab));;
ff1c78b3
CP
402
403 this.spaceNode = document.createTextNode(" ");
35155ba7 404 parentObject.tabs.appendChild(this.tab);
ff1c78b3 405 parentObject.tabs.appendChild(this.spaceNode);
a4a71818 406
e20e5a6b
CP
407 if(type != qwebirc.ui.WINDOW_STATUS && type != qwebirc.ui.WINDOW_CONNECT) {
408 var tabclose = new Element("span");
a4a71818 409 this.tabclose = tabclose;
e20e5a6b 410 tabclose.set("text", "X");
f4ae92cc 411 tabclose.addClass("tabclose");
f84bf379 412 var close = function(e) {
f4ae92cc 413 new Event(e).stop();
a4a71818 414
f84bf379
CP
415 if(this.closed)
416 return;
a4a71818 417
e20e5a6b 418 if(type == qwebirc.ui.WINDOW_CHANNEL)
f4ae92cc
CP
419 this.client.exec("/PART " + name);
420
421 this.close();
a4a71818 422
941e1642 423 //parentObject.inputbox.focus();
f84bf379 424 }.bind(this);
a4a71818 425
f84bf379
CP
426 tabclose.addEvent("click", close);
427 this.tab.addEvent("mouseup", function(e) {
b46f79e6 428 var button = 1;
a4a71818 429
b46f79e6
CP
430 if(Browser.Engine.trident)
431 button = 4;
432
433 if(e.event.button == button)
f84bf379 434 close(e);
f4ae92cc 435 }.bind(this));
a4a71818 436
f4ae92cc 437 this.tab.appendChild(tabclose);
a4a71818
CP
438 } else {
439 this.tabclose = null;
f4ae92cc 440 }
be0bd774 441
a4a71818
CP
442 this.tab.appendText(name);
443 this.tab.addEvent("click", function(e) {
444 new Event(e).stop();
445
446 if(this.closed)
447 return;
448
449 parentObject.selectWindow(this);
450 }.bind(this));
451
452
be0bd774 453 this.lines = new Element("div");
6c19eb8f 454 this.parentObject.qjsui.applyClasses("middle", this.lines);
be0bd774 455 this.lines.addClass("lines");
e82478eb
CP
456 if(type != qwebirc.ui.WINDOW_CUSTOM && type != qwebirc.ui.WINDOW_CONNECT)
457 this.lines.addClass("ircwindow");
6c19eb8f 458
b1ee83f3
CP
459 this.lines.addEvent("scroll", function() {
460 this.scrolleddown = this.scrolledDown();
ff6a32cc 461 this.scrollpos = this.getScrollParent().getScroll();
be0bd774 462 }.bind(this));
be0bd774 463
a524fb92 464 if(type == qwebirc.ui.WINDOW_CHANNEL) {
be0bd774 465 this.topic = new Element("div");
a4a71818 466 this.parentObject.qjsui.applyClasses("topic", this.topic);
be0bd774 467 this.topic.addClass("topic");
b1ee83f3 468 this.topic.addClass("tab-invisible");
be0bd774 469 this.topic.set("html", "&nbsp;");
8eb4377c 470 this.topic.addEvent("dblclick", this.editTopic.bind(this));
6c19eb8f 471 this.parentObject.qjsui.applyClasses("topic", this.topic);
2326e8d5 472
52090a1f 473 this.prevNick = null;
66de775f
CP
474 this.nicklist = new Element("div");
475 this.nicklist.addClass("nicklist");
b1ee83f3 476 this.nicklist.addClass("tab-invisible");
cffd43cf 477 this.nicklist.addEvent("click", this.removePrevMenu.bind(this));
a4a71818 478 this.parentObject.qjsui.applyClasses("right", this.nicklist);
2326e8d5
CP
479
480 this.updateTopic("");
be0bd774 481 }
b1ee83f3 482
f121b688 483 this.nicksColoured = this.parentObject.uiOptions.NICK_COLOURS;
a4a71818 484 this.reflow();
b1ee83f3 485 },
5aa173fb 486 rename: function(name) {
2326e8d5
CP
487 var newNode = document.createTextNode(name);
488 if(this.parentObject.sideTabs) {
489 this.tab.replaceChild(newNode, this.tab.childNodes[1]);
490 } else {
491 this.tab.replaceChild(newNode, this.tab.firstChild);
492 }
493
494 if(this.type == qwebirc.ui.WINDOW_QUERY)
495 this.updateTopic("");
5aa173fb 496 },
eaf3ed38 497 editTopic: function() {
2326e8d5
CP
498 if(this.type != qwebirc.ui.WINDOW_CHANNEL)
499 return;
500
eaf3ed38
CP
501 if(!this.client.nickOnChanHasPrefix(this.client.nickname, this.name, "@")) {
502/* var cmodes = this.client.getChannelModes(channel);
503 if(cmodes.indexOf("t")) {*/
95d00e97 504 alert("Sorry, you need to be a channel operator to change the topic!");
eaf3ed38
CP
505 return;
506 /*}*/
507 }
508 var newTopic = prompt("Change topic of " + this.name + " to:", this.topic.topicText);
509 if(newTopic === null)
510 return;
511
512 this.client.exec("/TOPIC " + newTopic);
513 },
b1ee83f3
CP
514 reflow: function() {
515 this.parentObject.reflow();
35155ba7
CP
516 },
517 onResize: function() {
ff6a32cc
CP
518 if(this.scrolleddown) {
519 if(Browser.Engine.trident) {
520 this.scrollToBottom.delay(5, this);
521 } else {
522 this.scrollToBottom();
523 }
524 } else if($defined(this.scrollpos)) {
525 if(Browser.Engine.trident) {
526 this.getScrollParent().scrollTo(this.scrollpos.x, this.scrollpos.y);
527 } else {
528 this.getScrollParent().scrollTo.delay(5, this, [this.scrollpos.x, this.scrollpos.y]);
529 }
530 }
359b7edd 531 },
cffd43cf 532 createMenu: function(nick, parent) {
d2512acf 533 var e = new Element("div");
cffd43cf
CP
534 parent.appendChild(e);
535 e.addClass("menu");
536
27add99a 537 var nickArray = [nick];
cffd43cf 538 qwebirc.ui.MENU_ITEMS.forEach(function(x) {
27add99a
CP
539 if(!x.predicate || x.predicate !== true && !x.predicate.apply(this, nickArray))
540 return;
541
542 var e2 = new Element("a");
543 e.appendChild(e2);
7555d601 544
27add99a 545 e2.set("text", "- " + x.text);
7555d601 546
27add99a
CP
547 e2.addEvent("focus", function() { this.blur() }.bind(e2));
548 e2.addEvent("click", function(ev) { new Event(ev.stop()); this.menuClick(x.fn); }.bind(this));
cffd43cf
CP
549 }.bind(this));
550 return e;
551 },
552 menuClick: function(fn) {
553 /*
554 this.prevNick.removeChild(this.prevNick.menu);
555 this.prevNick.menu = null;
556 */
557 fn.bind(this)(this.prevNick.realNick);
558 this.removePrevMenu();
559 },
d8272bcb
CP
560 moveMenuClass: function() {
561 if(!this.prevNick)
562 return;
563 if(this.nicklist.firstChild == this.prevNick) {
564 this.prevNick.removeClass("selected-middle");
565 } else {
566 this.prevNick.addClass("selected-middle");
567 }
568 },
cffd43cf
CP
569 removePrevMenu: function() {
570 if(!this.prevNick)
571 return;
572
573 this.prevNick.removeClass("selected");
d8272bcb 574 this.prevNick.removeClass("selected-middle");
cffd43cf
CP
575 if(this.prevNick.menu)
576 this.prevNick.removeChild(this.prevNick.menu);
577 this.prevNick = null;
578 },
52090a1f 579 nickListAdd: function(nick, position) {
f121b688
CP
580 var realNick = this.client.stripPrefix(nick);
581
52090a1f
CP
582 var e = new Element("a");
583 qwebirc.ui.insertAt(position, this.nicklist, e);
f121b688
CP
584 var span = new Element("span");
585 if(this.parentObject.uiOptions.NICK_COLOURS) {
586 var colour = realNick.toHSBColour(this.client);
587 if($defined(colour))
588 span.setStyle("color", colour.rgbToHex());
589 }
590 span.set("text", nick);
591 e.appendChild(span);
52090a1f 592
f121b688 593 e.realNick = realNick;
52090a1f
CP
594
595 e.addEvent("click", function(x) {
aab6d06a
CP
596 if(this.prevNick == e) {
597 this.removePrevMenu();
598 return;
599 }
600
cffd43cf 601 this.removePrevMenu();
52090a1f
CP
602 this.prevNick = e;
603 e.addClass("selected");
d8272bcb 604 this.moveMenuClass();
27add99a 605 e.menu = this.createMenu(e.realNick, e);
52090a1f
CP
606 new Event(x).stop();
607 }.bind(this));
52090a1f 608
fd60516d 609 e.addEvent("focus", function() { this.blur() }.bind(e));
d8272bcb 610 this.moveMenuClass();
52090a1f
CP
611 return e;
612 },
613 nickListRemove: function(nick, stored) {
614 this.nicklist.removeChild(stored);
d8272bcb 615 this.moveMenuClass();
f4ae92cc
CP
616 },
617 updateTopic: function(topic) {
f4ae92cc
CP
618 var t = this.topic;
619
620 while(t.firstChild)
621 t.removeChild(t.firstChild);
622
2326e8d5
CP
623 var suffix;
624 if(this.type == qwebirc.ui.WINDOW_CHANNEL) {
625 suffix = ": ";
66de775f 626 } else {
2326e8d5
CP
627 suffix = "";
628 }
629 qwebirc.ui.Colourise(this.name + suffix, t, null, null, this);
630
631 if(this.type == qwebirc.ui.WINDOW_CHANNEL) {
eaf3ed38 632 t.topicText = topic;
2326e8d5
CP
633 if (topic) {
634 this.parent(topic, t);
635 } else {
636 t.appendChild(document.createTextNode("(no topic set)"));
637 }
66de775f 638 }
2326e8d5 639
359b7edd 640 this.reflow();
f4ae92cc
CP
641 },
642 select: function() {
e20e5a6b 643 var inputVisible = this.type != qwebirc.ui.WINDOW_CONNECT && this.type != qwebirc.ui.WINDOW_CUSTOM;
6c19eb8f 644
f4ae92cc 645 this.tab.removeClass("tab-unselected");
f4ae92cc 646 this.tab.addClass("tab-selected");
359b7edd 647
6c19eb8f
CP
648 this.parentObject.setLines(this.lines);
649 this.parentObject.setChannelItems(this.nicklist, this.topic);
650 this.parentObject.qjsui.showInput(inputVisible);
5f464ed5 651 this.parentObject.qjsui.showChannel($defined(this.nicklist), this.parentObject.uiOptions.SHOW_NICKLIST);
6c19eb8f
CP
652
653 this.reflow();
24ede2cb 654
7c633700 655 this.parent();
25be5960 656
6c19eb8f
CP
657 if(inputVisible)
658 this.parentObject.inputbox.focus();
f121b688
CP
659
660 if(this.type == qwebirc.ui.WINDOW_CHANNEL && this.nicksColoured != this.parentObject.uiOptions.NICK_COLOURS) {
661 this.nicksColoured = this.parentObject.uiOptions.NICK_COLOURS;
662
663 var nodes = this.nicklist.childNodes;
664 if(this.parentObject.uiOptions.NICK_COLOURS) {
665 for(var i=0;i<nodes.length;i++) {
666 var e = nodes[i], span = e.firstChild;
667 var colour = e.realNick.toHSBColour(this.client);
668 if($defined(colour))
669 span.setStyle("color", colour.rgbToHex());
670 };
671 } else {
672 for(var i=0;i<nodes.length;i++) {
673 var span = nodes[i].firstChild;
674 span.setStyle("color", null);
675 };
676 }
677 }
f4ae92cc
CP
678 },
679 deselect: function() {
680 this.parent();
681
f4ae92cc
CP
682 this.tab.removeClass("tab-selected");
683 this.tab.addClass("tab-unselected");
684 },
685 close: function() {
686 this.parent();
687
f4ae92cc 688 this.parentObject.tabs.removeChild(this.tab);
ff1c78b3
CP
689 this.parentObject.tabs.removeChild(this.spaceNode);
690 this.reflow();
f4ae92cc 691 },
b35116e2 692 addLine: function(type, line, colourClass) {
f4ae92cc
CP
693 var e = new Element("div");
694
b35116e2
CP
695 if(colourClass) {
696 e.addClass(colourClass);
f4ae92cc
CP
697 } else if(this.lastcolour) {
698 e.addClass("linestyle1");
699 } else {
700 e.addClass("linestyle2");
701 }
f4ae92cc 702 this.lastcolour = !this.lastcolour;
35155ba7 703
b35116e2 704 this.parent(type, line, colourClass, e);
be0bd774
CP
705 },
706 setHilighted: function(state) {
2a802692 707 var laststate = this.hilighted;
96f28062 708
be0bd774 709 this.parent(state);
96f28062
CP
710
711 if(state == laststate)
712 return;
713
714 this.tab.removeClass("tab-hilight-activity");
715 this.tab.removeClass("tab-hilight-us");
716 this.tab.removeClass("tab-hilight-speech");
f4ae92cc 717
96f28062
CP
718 switch(this.hilighted) {
719 case qwebirc.ui.HILIGHT_US:
720 this.tab.addClass("tab-hilight-us");
721 break;
722 case qwebirc.ui.HILIGHT_SPEECH:
723 this.tab.addClass("tab-hilight-speech");
724 break;
725 case qwebirc.ui.HILIGHT_ACTIVITY:
726 this.tab.addClass("tab-hilight-activity");
727 break;
be0bd774 728 }
a4a71818
CP
729 },
730 setSideTabs: function(value) {
731 if(this.tabclose === null)
732 return;
733 this.tab.removeChild(this.tabclose);
734 if(value) {
735 this.tab.insertBefore(this.tabclose, this.tab.firstChild);
736 } else {
737 this.tab.appendChild(this.tabclose);
738 }
f4ae92cc
CP
739 }
740});