]> jfr.im git - irc/quakenet/qwebirc.git/blame - js/ui/baseuiwindow.js
TODO update, also include more instead of sortables.
[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)$/)) {
79 if(this.type == qwebirc.ui.WINDOW_QUERY) {
96f28062 80 hilight = qwebirc.ui.HILIGHT_US;
b2e77cf9
CP
81 }
82 if(!type.match(/^OUR/) && this.client.hilightController.match(line["m"])) {
83 lhilight = true;
84 hilight = qwebirc.ui.HILIGHT_US;
85 } else if(hilight != qwebirc.ui.HILIGHT_US) {
96f28062
CP
86 hilight = qwebirc.ui.HILIGHT_SPEECH;
87 }
88 }
89 }
90
91 if(!this.active && (hilight != qwebirc.ui.HILIGHT_NONE))
92 this.setHilighted(hilight);
93
381fddfd 94 if(type)
b2e77cf9 95 line = this.parentObject.theme.message(type, line, lhilight);
381fddfd 96
2cd9e32d 97 qwebirc.ui.Colourise(qwebirc.irc.IRCTimestamp(new Date()) + " " + line, element, this.client.exec, this.parentObject.urlDispatcher.bind(this.parentObject), this);
381fddfd 98 this.scrollAdd(element);
94b18192
CP
99 },
100 errorMessage: function(message) {
101 this.addLine("", message, "red");
381fddfd
CP
102 },
103 setHilighted: function(state) {
96f28062
CP
104 if(state == qwebirc.ui.HILIGHT_NONE || state >= this.hilighted)
105 this.hilighted = state;
381fddfd 106 },
25be5960 107 scrolledDown: function() {
7c633700
CP
108 if(this.scrolltimer)
109 return true;
110
381fddfd 111 var parent = this.lines;
381fddfd 112
381fddfd
CP
113 var prev = parent.getScroll();
114 var prevbottom = parent.getScrollSize().y;
115 var prevsize = parent.getSize();
25be5960 116
fccb1dac
CP
117 /* fixes an IE bug */
118 if(prevbottom < prevsize.y)
119 prevbottom = prevsize.y;
120
7c633700
CP
121 return prev.y + prevsize.y == prevbottom;
122 },
9d538d73
CP
123 getScrollParent: function() {
124 var scrollparent = this.lines;
7c633700
CP
125
126 if($defined(this.scroller))
127 scrollparent = this.scroller;
9d538d73
CP
128 return scrollparent;
129 },
130 scrollToBottom: function() {
131 var parent = this.lines;
132 var scrollparent = this.getScrollParent();
7c633700
CP
133
134 scrollparent.scrollTo(parent.getScroll().x, parent.getScrollSize().y);
135 },
136 scrollAdd: function(element) {
137 var parent = this.lines;
381fddfd
CP
138
139 /* scroll in bursts, else the browser gets really slow */
140 if($defined(element)) {
25be5960 141 var sd = this.scrolledDown();
381fddfd 142 parent.appendChild(element);
7c633700 143 if(sd) {
381fddfd
CP
144 if(this.scrolltimer)
145 $clear(this.scrolltimer);
7c633700 146 this.scrolltimer = this.scrollAdd.delay(50, this, [null]);
381fddfd
CP
147 }
148 } else {
25be5960 149 this.scrollToBottom();
381fddfd
CP
150 this.scrolltimer = null;
151 }
9b63b053 152 },
52090a1f 153 updateNickList: function(nicks) {
833f14ce 154 var nickHash = {}, present = {};
52090a1f
CP
155 var added = [];
156 var lnh = this.lastNickHash;
157
833f14ce
CP
158 for(var i=0;i<nicks.length;i++)
159 present[nicks[i]] = 1;
160
161 for(var k in lnh)
162 if(!present[k])
163 this.nickListRemove(k, lnh[k]);
164
52090a1f
CP
165 for(var i=0;i<nicks.length;i++) {
166 var n = nicks[i];
167 var l = lnh[n];
168 if(!l) {
169 l = this.nickListAdd(n, i);
170 if(!l)
171 l = 1;
172 }
173 nickHash[n] = l;
174 }
175
52090a1f
CP
176 this.lastNickHash = nickHash;
177 },
178 nickListAdd: function(position, nick) {
179 },
180 nickListRemove: function(nick, stored) {
181 },
9b63b053
CP
182 historyExec: function(line) {
183 this.commandhistory.addLine(line);
184 this.client.exec(line);
94b18192
CP
185 }
186});