123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- /* -*- Mode: Javascript; indent-tabs-mode:nil; js-indent-level: 2 -*- */
- /* vim: set ts=2 et sw=2 tw=80: */
- /*************************************************************
- *
- * MathJax/jax/output/HTML-CSS/autoload/mglyph.js
- *
- * Implements the HTML-CSS output for <mglyph> elements.
- *
- * ---------------------------------------------------------------------
- *
- * Copyright (c) 2010-2013 The MathJax Consortium
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () {
- var VERSION = "2.2";
- var MML = MathJax.ElementJax.mml,
- HTMLCSS = MathJax.OutputJax["HTML-CSS"],
- LOCALE = MathJax.Localization;
-
- MML.mglyph.Augment({
- toHTML: function (span,variant) {
- var SPAN = span, values = this.getValues("src","width","height","valign","alt"), err;
- span = this.HTMLcreateSpan(span);
- if (values.src === "") {
- var index = this.Get("index");
- if (index) {
- variant = this.HTMLgetVariant(); var font = variant.defaultFont;
- if (font) {
- font.noStyleChar = true; font.testString = String.fromCharCode(index) + 'ABCabc';
- if (HTMLCSS.Font.testFont(font)) {
- this.HTMLhandleVariant(span,variant,String.fromCharCode(index));
- } else {
- if (values.alt === "")
- {values.alt = LOCALE._(["MathML","BadMglyphFont"],"Bad font: %1",font.family)}
- err = MML.merror(values.alt).With({mathsize:"75%"});
- this.Append(err); err.toHTML(span); this.data.pop();
- span.bbox = err.HTMLspanElement().bbox;
- }
- }
- }
- } else {
- if (!this.img) {this.img = MML.mglyph.GLYPH[values.src]}
- if (!this.img) {
- this.img = MML.mglyph.GLYPH[values.src] = {img: new Image(), status: "pending"};
- var img = this.img.img;
- img.onload = MathJax.Callback(["HTMLimgLoaded",this]);
- img.onerror = MathJax.Callback(["HTMLimgError",this]);
- img.src = values.src;
- MathJax.Hub.RestartAfter(img.onload);
- }
- if (this.img.status !== "OK") {
- err = MML.merror(
- LOCALE._(["MathML","BadMglyph"],"Bad mglyph: %1",values.src)
- ).With({mathsize:"75%"});
- this.Append(err); err.toHTML(span); this.data.pop();
- span.bbox = err.HTMLspanElement().bbox;
- } else {
- var mu = this.HTMLgetMu(span);
- img = HTMLCSS.addElement(span,"img",{isMathJax:true, src:values.src, alt:values.alt, title:values.alt});
- if (values.width) {
- if (String(values.width).match(/^\s*-?\d+\s*$/)) {values.width += "px"}
- img.style.width = HTMLCSS.Em(HTMLCSS.length2em(values.width,mu,this.img.img.width/HTMLCSS.em));
- }
- if (values.height) {
- if (String(values.height).match(/^\s*-?\d+\s*$/)) {values.height += "px"}
- img.style.height = HTMLCSS.Em(HTMLCSS.length2em(values.height,mu,this.img.img.height/HTMLCSS.em));
- }
- span.bbox.w = span.bbox.rw = img.offsetWidth/HTMLCSS.em;
- span.bbox.h = img.offsetHeight/HTMLCSS.em;
- if (values.valign) {
- if (String(values.valign).match(/^\s*-?\d+\s*$/)) {values.valign += "px"}
- span.bbox.d = -HTMLCSS.length2em(values.valign,mu,this.img.img.height/HTMLCSS.em);
- img.style.verticalAlign = HTMLCSS.Em(-span.bbox.d);
- span.bbox.h -= span.bbox.d;
- }
- }
- }
- if (!SPAN.bbox) {
- SPAN.bbox = {w: span.bbox.w, h: span.bbox.h, d: span.bbox.d,
- rw: span.bbox.rw, lw: span.bbox.lw};
- } else if (span.bbox) {
- SPAN.bbox.w += span.bbox.w;
- if (SPAN.bbox.w > SPAN.bbox.rw) {SPAN.bbox.rw = SPAN.bbox.w}
- if (span.bbox.h > SPAN.bbox.h) {SPAN.bbox.h = span.bbox.h}
- if (span.bbox.d > SPAN.bbox.d) {SPAN.bbox.d = span.bbox.d}
- }
- this.HTMLhandleSpace(span);
- this.HTMLhandleColor(span);
- return span;
- },
- HTMLimgLoaded: function (event,status) {
- if (typeof(event) === "string") {status = event}
- this.img.status = (status || "OK")
- },
- HTMLimgError: function () {this.img.img.onload("error")}
- },{
- GLYPH: {} // global list of all loaded glyphs
- });
-
- MathJax.Hub.Startup.signal.Post("HTML-CSS mglyph Ready");
- MathJax.Ajax.loadComplete(HTMLCSS.autoloadDir+"/mglyph.js");
-
- });
|