*** empty log message ***
[m17n/m17n-lib-js.git] / xex.js
diff --git a/xex.js b/xex.js
index b342683..4f567b0 100644 (file)
--- a/xex.js
+++ b/xex.js
@@ -2,7 +2,7 @@
 
 var Xex = {
   LogNode: null,
-  Log: function (arg, indent)
+  Log: function (arg, indent, cont)
   {
     if (! Xex.LogNode)
       return;
@@ -14,7 +14,9 @@ var Xex = {
        if (indent != undefined)
          for (var i = 0; i <= indent; i++)
            str += '  ';
-       Xex.LogNode.value += "\n" + str + arg;
+       if (! cont)
+         Xex.LogNode.value += "\n";
+       Xex.LogNode.value += str + arg;
        Xex.LogNode.scrollTop = Xex.LogNode.scrollHeight;
       }
   }
@@ -2021,6 +2023,38 @@ MIM.State = function (name)
       }
     return this.Current ();
   }
+
+  MIM.Candidates.prototype.CurrentGroup = function (selector)
+  {
+    var col, start, end
+    if (this.column > 0)
+      {
+       col = this.index % this.column;
+       start = this.index - col;
+       end = start + this.column;
+       if (end > this.total)
+         end = this.total;
+      }
+    else
+      {
+       start = this.blocks[this.row].Index;
+       col = this.index - start;
+       end = start + this.blocks[this.row].Count ();
+      }
+    var group = new Array ();
+    group.push (col);
+    var row = this.row;
+    var block = this.blocks[row++];
+    while (start < end)
+      {
+       var c = block.get (start - block.Index);
+       group.push (c);
+       start++;
+       if (start == block.Index + block.Count ())
+         block = this.blocks[row++];
+      }
+    return group;
+  }
 }) ();
 
 MIM.im_domain = new Xex.Domain ('input-method', null, null);
@@ -2496,7 +2530,7 @@ MIM.im_domain.DefType (MIM.State.prototype);
     if (out.index > this.key_head)
       {
        this.key_head = out.index;
-       Xex.Log (' with submap for ' + this.key_head + 'keys');
+       Xex.Log (' with submap for ' + this.key_head + 'keys', false, true);
        restore_state.call (this);
        this.keymap = sub;
        if (sub.map_actions)
@@ -2529,7 +2563,7 @@ MIM.im_domain.DefType (MIM.State.prototype);
       }
     else
       {
-       Xex.Log (' without submap');
+       Xex.Log (' without submap', false, true);
        this.keymap = sub;
        var current_state = this.state;
        var map = this.keymap;
@@ -2682,6 +2716,7 @@ MIM.im_domain.DefType (MIM.State.prototype);
     {
       this.preedit_replace (this.cursor_pos, this.cursor_pos, text, candidates);
       this.changed = MIM.ChangedStatus.Preedit | MIM.ChangedStatus.CursorPos;
+      this.candidates = candidates;
     },
 
     rep: function (old_text, new_text, candidates)
@@ -2844,7 +2879,6 @@ MIM.im_domain.DefType (MIM.State.prototype);
       this.key_unhandled = false;
       this.keys.val.push (key);
       var count = 0;
-      Xex.Log ("keyhead=" + this.key_head + " len="+this.keys.val.length);
       while (this.key_head < this.keys.val.length)
        {
          if (! handle_key.call (this))
@@ -2884,6 +2918,14 @@ MIM.im_domain.DefType (MIM.State.prototype);
          //this.keys.val.splice (0, this.keys.val.length);
          this.key_head = this.state_key_head = this.commit_key_head = 0;
        }
+      MIM.show (this);
+      if (false && (this.changed & MIM.ChangedStatus.Candidate))
+       {
+         if (this.candidate_show)
+           MIM.show (this);
+         else
+           MIM.hide (this);
+       }
       return (! this.key_unhandled
              && this.produced.length == 0);
     }
@@ -3129,65 +3171,91 @@ MIM.update = function (target, ic)
 };
 
 (function () {
-  function capitalize(prop){
-    return prop.replace(/-(.)/g, function(m, m1){ return m1.toUpperCase() })
-  }
-
-  function imitateElement(elmOriginal, elmClone){
-    var styleOriginal = getComputedStyle(elmOriginal,'');
-    var styleClone = getComputedStyle(elmClone,'');
-       
-    elmClone.style.left = elmOriginal.offsetLeft + 'px'; 
-    elmClone.style.top = elmOriginal.offsetTop + 'px';
-               
-    var copyProps = [
-      'width', 'height',
-      'padding-left', 'padding-right', 'padding-top', 'padding-bottom', 
-      'border-left-style', 'border-right-style','border-top-style','border-bottom-style', 
-      'border-left-width', 'border-right-width','border-top-width','border-bottom-width', 
-      'font-family', 'font-size', 'line-height', 'letter-spacing', 'word-spacing'];
-    for(var i in copyProps){
-      elmClone.style[capitalize(copyProps[i])] = 
-       styleOriginal.getPropertyValue(copyProps[i]);
-    }
-       
-    elmClone.style.width = elmOriginal.offsetWidth;
-    elmClone.style.height = elmOriginal.offsetHeight;
-    elmClone.style.visibility="hidden"; // ÄɲÃ
-    elmClone.style.position = "absolute"; //ÄɲÃ
-    //elmClone.style =elmOriginal.style;
-                
-    elmClone.scrollLeft = elmOriginal.scrollLeft;
-    elmClone.scrollTop = elmOriginal.scrollTop;
-  }
-
-  var elm;
-
-  MIM.caret_pos = function (target)
-  {
-    if (! elm)
+  var style_props = {
+    width: 'width',
+    height: 'height',
+    padingLeft: 'padding-left',
+    paddingRight: 'padding-right',
+    paddingTop: 'padding-top',
+    paddintBottom: 'padding-bottom', 
+    borderLeftStyle: 'border-left-style',
+    borderRightStyle: 'border-right-style',
+    borderTopStyle: 'border-top-style',
+    borderBottomStyle: 'border-bottom-style',
+    borderLeftWidth: 'border-left-width',
+    borderRightWidth: 'border-right-width',
+    borderTopWidth: 'border-top-width',
+    borderBottomWidth: 'border-bottom-width',
+    fontFamily: 'font-family',
+    fontSize: 'font-size',
+    lineHeight: 'line-height',
+    letterSpacing: 'letter-spacing',
+    wordSpacing: 'word-spacing' };
+
+  function copy_style (from, to)
+  {
+    var from_style = getComputedStyle(from,'');
+    for(var name in style_props)
+      to.style[name] = from_style.getPropertyValue (style_props[name]);
+    to.style.left = from.offsetLeft + 'px'; 
+    to.style.top = from.offsetTop + 'px';
+    to.style.width = from.offsetWidth;
+    to.style.height = from.offsetHeight;
+  }
+
+  MIM.show = function (ic)
+  {
+    Xex.Log ('show:' + ic.candidates);
+    if (! ic.candidates)
+      return;
+    var target = ic.target;
+    if (! ic.div_node)
       {
-         elm = document.createElement ('div');
-       document.getElementsByTagName ('body')[0].appendChild (elm);
-      }
-
-    imitateElement(target, elm);
-    var selectionEnd = target.selectionEnd;
-    var value = target.value;
-
-    var elmCursor = document.createElement('span');
-    elmCursor.innerHTML = '|';
-
-    //elm = document.createElement ('pre');
-    elm.innerHTML = '';
-    var elmChild = document.createTextNode(value.substr(0,selectionEnd));
-    elm.appendChild(elmChild);
-    elm.appendChild(elmCursor);
-
-    var x = target.offsetLeft + elmCursor.offsetLeft +2;
-    var y = target.offsetTop + elmCursor.offsetTop -2;
-
-    Xex.Log ("x:" + x + "px y:" + y + "px w:" + elm.offsetWidth);
+       ic.target_top = 0;
+       ic.target_left = 0;
+       for (var elm = ic.target.offsetParent; elm; elm = elm.offsetParent)
+         {
+           ic.target_top += elm.offsetTop;
+           ic.target_left += elm.offsetLeft;
+         }
+       ic.div_node = document.createElement ('div');
+       copy_style (target, ic.div_node);
+       ic.div_node.style.visibility="hidden";
+       ic.div_node.style.position = "absolute";
+       document.getElementsByTagName ('body')[0].appendChild (ic.div_node);
+       ic.div_node_first = document.createElement ('span');
+       ic.div_node_last = document.createElement('span');
+       ic.div_node_last.innerHTML = '.';
+       ic.div_node.appendChild (ic.div_node_first);
+       ic.div_node.appendChild (ic.div_node_last);
+       ic.can_node = document.createElement ('table');
+       ic.can_node.style.position = 'absolute';
+       ic.can_node.style.display = 'none';
+       ic.can_node.style.backgroundColor = "white";
+       ic.can_node.style.border = "1px solid black";
+       document.getElementsByTagName ('body')[0].appendChild (ic.can_node);
+      }
+
+    ic.can_node.innerHTML = '';
+    var tr = document.createElement ('tr');
+    ic.can_node.appendChild (tr);
+    var group = ic.candidates.CurrentGroup ();
+    for (var i = 1; i < group.length; i++)
+      {
+       var td = document.createElement ('td');
+       td.nowrap = true;
+       td.innerHTML = i + '.' + group[i];
+       if (i == group[0] + 1)
+         td.style.backgroundColor = 'lightblue';
+       ic.can_node.appendChild (td);
+      }
+    ic.div_node_first.innerHTML = target.value.substr (0, ic.range[0]);
+    var x = ic.target_left + ic.div_node.lastChild.offsetLeft;
+    var y = (ic.target_top + ic.div_node.lastChild.offsetTop
+            + ic.div_node.lastChild.offsetHeight - target.scrollTop + 10);
+    ic.can_node.style.left = x + 'px';
+    ic.can_node.style.top = y + 'px';
+    ic.can_node.style.display = 'block';
   }
 }) ();
 
@@ -3232,8 +3300,6 @@ MIM.keydown = function (event)
   if (! (target.type == "text" || target.type == "textarea"))
     return;
 
-  MIM.caret_pos (target);
-
   var ic = target.mim_ic;
   if (! ic || ic.im != MIM.current)
     {
@@ -3252,6 +3318,7 @@ MIM.keydown = function (event)
       if (! MIM.get_range (target, ic))
        ic.reset ();
     }
+  //MIM.show (target, ic);
   MIM.debug_print (event, ic);
   ic.key = MIM.decode_key_event (event);
   if (ic.key)
@@ -3294,7 +3361,6 @@ MIM.keypress = function (event)
     Xex.Log ("filtering " + ic.key);
     try {
       var result = ic.Filter (ic.key);
-      Xex.Log ("result = " + result);
     } catch (e) {
       Xex.Log ('Error:' + e);
       throw (e);