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