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