]> jfr.im git - irc/quakenet/qwebirc.git/blob - js/ui/baseuiwindow.js
Fix issue 76 (/clear breaks window switching).
[irc/quakenet/qwebirc.git] / js / ui / baseuiwindow.js
1 qwebirc.ui.HILIGHT_NONE = 0;
2 qwebirc.ui.HILIGHT_ACTIVITY = 1;
3 qwebirc.ui.HILIGHT_SPEECH = 2;
4 qwebirc.ui.HILIGHT_US = 3;
5
6 qwebirc.ui.WINDOW_LASTLINE = qwebirc.ui.WINDOW_QUERY | qwebirc.ui.WINDOW_MESSAGES | qwebirc.ui.WINDOW_CHANNEL | qwebirc.ui.WINDOW_STATUS;
7
8 qwebirc.ui.Window = new Class({
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;
17 this.hilighted = qwebirc.ui.HILIGHT_NONE;
18 this.scrolltimer = null;
19 this.commandhistory = this.parentObject.commandhistory;
20 this.scrolleddown = true;
21 this.scrollpos = null;
22 this.lastNickHash = {};
23 this.lastSelected = null;
24 this.subWindow = null;
25 this.closed = false;
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 }
32 },
33 updateTopic: function(topic, element) {
34 qwebirc.ui.Colourise("[" + topic + "]", element, this.client.exec, this.parentObject.urlDispatcher.bind(this.parentObject), this);
35 },
36 close: function() {
37 this.closed = true;
38
39 if($defined(this.scrolltimer)) {
40 $clear(this.scrolltimer);
41 this.scrolltimer = null;
42 }
43
44 this.parentObject.__closed(this);
45 this.fireEvent("close", this);
46 },
47 subEvent: function(event) {
48 if($defined(this.subWindow))
49 this.subWindow.fireEvent(event);
50 },
51 setSubWindow: function(window) {
52 this.subWindow = window;
53 },
54 select: function() {
55 if(this.lastPositionLineInserted && !this.parentObject.uiOptions.LASTPOS_LINE) {
56 this.lines.removeChild(this.lastPositionLine);
57 this.lastPositionLineInserted = false;
58 }
59
60 this.active = true;
61 this.parentObject.__setActiveWindow(this);
62 if(this.hilighted)
63 this.setHilighted(qwebirc.ui.HILIGHT_NONE);
64
65 this.subEvent("select");
66 this.resetScrollPos();
67 this.lastSelected = new Date();
68 },
69 deselect: function() {
70 this.subEvent("deselect");
71
72 this.setScrollPos();
73 if($defined(this.scrolltimer)) {
74 $clear(this.scrolltimer);
75 this.scrolltimer = null;
76 }
77
78 if(this.type & qwebirc.ui.WINDOW_LASTLINE)
79 this.replaceLastPositionLine();
80
81 this.active = false;
82 },
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 },
96 addLine: function(type, line, colour, element) {
97 var hilight = qwebirc.ui.HILIGHT_NONE;
98 var lhilight = false;
99
100 if(type) {
101 hilight = qwebirc.ui.HILIGHT_ACTIVITY;
102
103 if(type.match(/(NOTICE|ACTION|MSG)$/)) {
104 if(this.type == qwebirc.ui.WINDOW_QUERY || this.type == qwebirc.ui.WINDOW_MESSAGES) {
105 if(type.match(/^OUR/) || type.match(/NOTICE$/)) {
106 hilight = qwebirc.ui.HILIGHT_ACTIVITY;
107 } else {
108 hilight = qwebirc.ui.HILIGHT_US;
109 this.parentObject.beep();
110 this.parentObject.flash();
111 }
112 }
113 if(!type.match(/^OUR/) && this.client.hilightController.match(line["m"])) {
114 lhilight = true;
115 hilight = qwebirc.ui.HILIGHT_US;
116 this.parentObject.beep();
117 this.parentObject.flash();
118 } else if(hilight != qwebirc.ui.HILIGHT_US) {
119 hilight = qwebirc.ui.HILIGHT_SPEECH;
120 }
121 }
122 }
123
124 if(!this.active && (hilight != qwebirc.ui.HILIGHT_NONE))
125 this.setHilighted(hilight);
126
127 if(type)
128 line = this.parentObject.theme.message(type, line, lhilight);
129
130 qwebirc.ui.Colourise(qwebirc.irc.IRCTimestamp(new Date()) + " " + line, element, this.client.exec, this.parentObject.urlDispatcher.bind(this.parentObject), this);
131 this.scrollAdd(element);
132 },
133 errorMessage: function(message) {
134 this.addLine("", message, "warncolour");
135 },
136 infoMessage: function(message) {
137 this.addLine("", message, "infocolour");
138 },
139 setHilighted: function(state) {
140 if(state == qwebirc.ui.HILIGHT_NONE || state >= this.hilighted)
141 this.hilighted = state;
142 },
143 scrolledDown: function() {
144 if(this.scrolltimer)
145 return true;
146
147 var parent = this.lines;
148
149 var prev = parent.getScroll();
150 var prevbottom = parent.getScrollSize().y;
151 var prevsize = parent.getSize();
152
153 /* fixes an IE bug */
154 if(prevbottom < prevsize.y)
155 prevbottom = prevsize.y;
156
157 return prev.y + prevsize.y == prevbottom;
158 },
159 getScrollParent: function() {
160 var scrollparent = this.lines;
161
162 if($defined(this.scroller))
163 scrollparent = this.scroller;
164 return scrollparent;
165 },
166 scrollToBottom: function() {
167 if(this.type == qwebirc.ui.WINDOW_CUSTOM || this.type == qwebirc.ui.WINDOW_CONNECT)
168 return;
169
170 var parent = this.lines;
171 var scrollparent = this.getScrollParent();
172
173 scrollparent.scrollTo(parent.getScroll().x, parent.getScrollSize().y);
174 },
175 scrollAdd: function(element) {
176 var parent = this.lines;
177
178 /* scroll in bursts, else the browser gets really slow */
179 if($defined(element)) {
180 var sd = this.scrolledDown();
181 parent.appendChild(element);
182 if(sd) {
183 if(this.scrolltimer)
184 $clear(this.scrolltimer);
185 this.scrolltimer = this.scrollAdd.delay(50, this, [null]);
186 }
187 } else {
188 this.scrollToBottom();
189 this.scrolltimer = null;
190 }
191 },
192 updateNickList: function(nicks) {
193 var nickHash = {}, present = {};
194 var added = [];
195 var lnh = this.lastNickHash;
196
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
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
215 this.lastNickHash = nickHash;
216 },
217 nickListAdd: function(position, nick) {
218 },
219 nickListRemove: function(nick, stored) {
220 },
221 historyExec: function(line) {
222 this.commandhistory.addLine(line);
223 this.client.exec(line);
224 },
225 focusChange: function(newValue) {
226 if(newValue == true || !(this.type & qwebirc.ui.WINDOW_LASTLINE))
227 return;
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) {
236 try {
237 this.lines.removeChild(this.lastPositionLine);
238 } catch(e) {
239 /* IGNORE, /clear removes lastPositionLine from the dom without resetting it. */
240 }
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;
249 }
250 });