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