]> jfr.im git - irc/quakenet/qwebirc.git/blobdiff - js/ui/baseui.js
Add command history.
[irc/quakenet/qwebirc.git] / js / ui / baseui.js
index e342a25faa72b27b8cd6e4ac8d3f1e79b215e38b..60b1b1269e200101fc117204e9b80de571510940 100644 (file)
@@ -2,40 +2,14 @@ var WINDOW_STATUS = 1;
 var WINDOW_QUERY = 2;
 var WINDOW_CHANNEL = 3;
 
-var UIWindow = new Class({
-  Implements: [Events],
-  initialize: function(parentObject, client, type, name, identifier) {
-    this.parentObject = parentObject;
-    this.type = type;
-    this.name = name;
-    this.active = false;
-    this.client = client;
-    this.identifier = identifier;
+var BaseUI = new Class({
+  Implements: [Events, Options],
+  options: {
+    appTitle: "QuakeNet Web IRC"
   },
-  updateNickList: function(nicks) {
-  },
-  updateTopic: function(topic)  {
-  },
-  close: function() {
-    this.parentObject.__closed(this);
-    this.fireEvent("close", this);
-  },
-  select: function() {
-    this.active = true;
-    this.parentObject.__setActiveWindow(this);
-  },
-  deselect: function() {
-    this.active = false;
-  },
-  addLine: function(type, line, colour) {
-  },
-  errorMessage: function(message) {
-    this.addLine("", message, "red");
-  }
-});
-
-var UI = new Class({
-  initialize: function(parentElement, windowClass, uiName) {
+  initialize: function(parentElement, windowClass, uiName, options) {
+    this.setOptions(options);
+    
     this.windows = {};
     this.windowArray = [];
     this.windowClass = windowClass;
@@ -43,6 +17,7 @@ var UI = new Class({
     this.parentElement.addClass("qwebirc");
     this.parentElement.addClass("qwebirc-" + uiName);
     this.firstClient = false;
+    this.commandhistory = new CommandHistory();
   },
   newClient: function(client) {
     this.windows[client] = {}
@@ -50,8 +25,10 @@ var UI = new Class({
     this.selectWindow(w);
     if(!this.firstClient) {
       this.firstClient = true;
-      w.addLine("", "qwebirc v" + QWEBIRC_VERSION + " -- Copyright (C) 2008 Chris Porter. All rights reserved.");
+      w.addLine("", "qwebirc v" + QWEBIRC_VERSION);
+      w.addLine("", "Copyright (C) 2008 Chris Porter. All rights reserved.");
       w.addLine("", "http://webchat.quakenet.org/");
+      w.addLine("", "This is BETA quality software, please report bugs to slug@quakenet.org");
     }
     return w;
   },
@@ -75,6 +52,7 @@ var UI = new Class({
     if(this.active)
       this.active.deselect();
     window.select();  /* calls setActiveWindow */
+    document.title = window.name + " - " + this.options.appTitle;
   },
   __closed: function(window) {
     if(window.active) {
@@ -95,7 +73,7 @@ var UI = new Class({
     
     delete this.windows[window.client][window.identifier];
   },
-  loginBox: function(callback) {
+  loginBox: function(callback, initialNickname, initialChannels) {
     /*
       this shouldn't be called by overriding classes!
       some form of user input MUST be received before an
@@ -103,13 +81,44 @@ var UI = new Class({
       tricked into getting themselves glined
     */
 
-    var nick = prompt("Nickname:");
+    var nick = prompt("Nickname:", initialNickname);
     if(!nick) {
       alert("Aborted.");
       return;
     }
 
-    var chans = prompt("Channels (seperate by comma):", "#quakenetX");
+    var chans = prompt("Channels (seperate by comma):", initialChannels);
     callback({"nickname": nick, "autojoin": chans});
   }
 });
+
+var UI = new Class({
+  Extends: BaseUI,
+  initialize: function(parentElement, windowClass, uiName, options) {
+    this.parent(parentElement, windowClass, uiName, options);
+    window.addEvent("keydown", function(x) {
+      if(!x.alt)
+        return;
+        
+      if(x.key == "a" || x.key == "A") {
+        for(var i=0;i<this.windowArray.length;i++) {
+          if(this.windowArray[i].hilighted) {
+            this.selectWindow(this.windowArray[i]);
+            break;
+          }
+        }
+      } else if(x.key >= '0' && x.key <= '9') {
+        number = x.key - '0';
+        if(number == 0)
+          number = 10
+          
+        number = number - 1;
+        
+        if(number >= this.windowArray.length)
+          return;
+          
+        this.selectWindow(this.windowArray[number]);
+      }
+    }.bind(this));
+  }
+});