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