Commit 738adde5 authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

Заменила i,j для аксента на соответствующие стилям i,j без точек

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58615 954022d7-b5bf-4e40-9824-e11837661b57
parent c5f7bf0c
......@@ -135,7 +135,7 @@ CAccentLine.prototype.calcSize = function(stretch)
return {width: width, height: height};
}
CAccentLine.prototype.calcCoord = function(stretch)
CAccentLine.prototype.old_calcCoord = function(stretch)
{
var fontSize = this.Parent.Get_CompiledCtrPrp().FontSize;
......@@ -155,7 +155,7 @@ CAccentLine.prototype.calcCoord = function(stretch)
return {XX: X, YY: Y, W: W, H: H};
}
CAccentLine.prototype.drawPath = function(pGraphics, XX, YY)
CAccentLine.prototype.old_drawPath = function(pGraphics, XX, YY)
{
pGraphics._m(XX[0], YY[0]);
pGraphics._l(XX[1], YY[1]);
......@@ -203,7 +203,7 @@ CAccentDoubleLine.prototype.calcSize = function(stretch)
return {width: width, height: height};
}
CAccentDoubleLine.prototype.calcCoord = function(stretch)
CAccentDoubleLine.prototype.old_calcCoord = function(stretch)
{
var fontSize = this.Parent.Get_CompiledCtrPrp().FontSize;
......@@ -227,7 +227,7 @@ CAccentDoubleLine.prototype.calcCoord = function(stretch)
return {XX: X, YY: Y, W: W, H: H};
}
CAccentDoubleLine.prototype.drawPath = function(pGraphics, XX, YY)
CAccentDoubleLine.prototype.old_drawPath = function(pGraphics, XX, YY)
{
pGraphics._m(XX[0], YY[0]);
pGraphics._l(XX[1], YY[1]);
......@@ -593,10 +593,11 @@ CAccent.prototype.draw = function(x, y, pGraphics)
if(Info.Result == true)
{
var bStyle = Info.sty == STY_BI || Info.sty == STY_ITALIC,
bScript = Info.scr == TXT_ROMAN || Info.scr == TXT_SANS_SERIF;
var bAlphabet = Info.Latin || Info.Greek;
var bRomanSerif = (Info.sty == STY_BI || Info.sty == STY_ITALIC) && (Info.scr == TXT_ROMAN || Info.scr == TXT_SANS_SERIF),
bScript = Info.scr == TXT_SCRIPT;
if(bStyle && bScript && (Info.Latin || Info.Greek))
if(bAlphabet && (bRomanSerif || bScript))
{
if(this.Pr.chr != 0x305 && this.Pr.chr >= 0x300 && this.Pr.chr <= 0x315 || this.Pr.chr == 0x20DB)
{
......
......@@ -21,6 +21,10 @@ var StartTextElement = 0x2B1A; // Cambria Math
// смена хентов
// editor.SetFontRenderingMode(2);
//change FontSize
//editor.put_TextPrFontSize(parseInt("37"));
function CMathSize()
{
this.width = 0;
......@@ -109,10 +113,14 @@ CMathText.prototype =
{
if(code == 0x68) // h
code = 0x210E;
else if((code == 0x69 && bAccent) || code == 0x131) // "i" with dot || "i" dotless plain => "i" dotless italic
/*else if((code == 0x69 && bAccent) || code == 0x131) // "i" with dot || "i" dotless plain => "i" dotless italic
code = 0x1D6A4;
else if((code == 0x6A && bAccent) ||code == 0x237) // "j" with dot || "j" dotless plain => "j" dotless italic
code = 0x1D6A5;
code = 0x1D6A5;*/
else if(code == 0x69 && bAccent)
code = 2835;
else if(code == 0x6A && bAccent)
code = 2836;
else if(bCapitale)
code = code + 0x1D3F3;
else if(bSmall)
......@@ -143,7 +151,11 @@ CMathText.prototype =
}
else if(Sty == STY_BI)
{
if(bCapitale)
if(code == 0x69 && bAccent)
code = 2841;
else if(code == 0x6A && bAccent)
code = 2842;
else if(bCapitale)
code = code + 0x1D427;
else if(bSmall)
code = code + 0x1D421;
......@@ -174,7 +186,11 @@ CMathText.prototype =
}
else if(Sty == STY_BOLD)
{
if(bCapitale)
if(code == 0x69 && bAccent)
code = 2829;
else if(code == 0x6A && bAccent)
code = 2830;
else if(bCapitale)
code = code + 0x1D3BF;
else if(bSmall)
code = code + 0x1D3B9;
......@@ -211,16 +227,26 @@ CMathText.prototype =
{
if(bAccent)
{
if(code == 0x69) // "i" with dot => "i" dotless plain
/*if(code == 0x69) // "i" with dot => "i" dotless plain
code = 0x131;
else if(code == 0x6A) // "j" with dot => "j" dotless plain
code = 0x237;
code = 0x237;*/
if(code == 0x69 && bAccent)
code = 199;
else if(code == 0x6A && bAccent)
code = 2828;
}
}
}
else if(Scr == TXT_DOUBLE_STRUCK)
{
if(code == 0x43) // C
if(code == 0x69 && bAccent)
code = 2851;
else if(code == 0x6A && bAccent)
code = 2852;
else if(code == 0x43) // C
code = 0x2102;
else if(code == 0x48) // H
code = 0x210D;
......@@ -299,7 +325,11 @@ CMathText.prototype =
}
else if(Scr == TXT_MONOSPACE)
{
if(bCapitale)
if(code == 0x69 && bAccent)
code = 4547;
else if(code == 0x6A && bAccent)
code = 4548;
else if(bCapitale)
code = code + 0x1D62F;
else if(bSmall)
code = code + 0x1D629;
......@@ -310,14 +340,22 @@ CMathText.prototype =
{
if(Sty == STY_BOLD ||Sty == STY_BI)
{
if(bCapitale)
if(code == 0x69 && bAccent)
code = 2849;
else if(code == 0x6A && bAccent)
code = 2850;
else if(bCapitale)
code = code + 0x1D52B;
else if(bSmall)
code = code + 0x1D525;
}
else
{
if(code == 0x43) // C
if(code == 0x69 && bAccent)
code = 2847;
else if(code == 0x6A && bAccent)
code = 2848;
else if(code == 0x43) // C
code = 0x212D;
else if(code == 0x48) // H
code = 0x210C;
......@@ -338,7 +376,11 @@ CMathText.prototype =
{
if(Sty == STY_ITALIC)
{
if(bCapitale)
if(code == 0x69 && bAccent)
code = 2857;
else if(code == 0x6A && bAccent)
code = 2858;
else if(bCapitale)
code = code + 0x1D5C7;
else if(bSmall)
code = code + 0x1D5C1;
......@@ -347,7 +389,11 @@ CMathText.prototype =
}
else if(Sty == STY_BOLD)
{
if(bCapitale)
if(code == 0x69 && bAccent)
code = 2855;
else if(code == 0x6A && bAccent)
code = 2856;
else if(bCapitale)
code = code + 0x1D593;
else if(bSmall)
code = code + 0x1D58D;
......@@ -378,7 +424,11 @@ CMathText.prototype =
}
else if(Sty == STY_BI)
{
if(bCapitale)
if(code == 0x69 && bAccent)
code = 2859;
else if(code == 0x6A && bAccent)
code = 2860;
else if(bCapitale)
code = code + 0x1D5FB;
else if(bSmall)
code = code + 0x1D5F5;
......@@ -409,7 +459,11 @@ CMathText.prototype =
}
else
{
if(bCapitale)
if(code == 0x69 && bAccent)
code = 2853;
else if(code == 0x6A && bAccent)
code = 2854;
else if(bCapitale)
code = code + 0x1D55F;
else if(bSmall)
code = code + 0x1D559;
......@@ -422,7 +476,11 @@ CMathText.prototype =
{
if(Sty == STY_ITALIC || Sty == STY_PLAIN)
{
if(code == 0x42) // B
if(code == 0x69 && bAccent)
code = 2843;
else if(code == 0x6A && bAccent)
code = 2844;
else if(code == 0x42) // B
code = 0x212C;
else if(code == 0x45) // E
code = 0x2130;
......@@ -451,7 +509,11 @@ CMathText.prototype =
}
else
{
if(bCapitale)
if(code == 0x69 && bAccent)
code = 2845;
else if(code == 0x6A && bAccent)
code = 2846;
else if(bCapitale)
code = code + 0x1D48F;
else if(bSmall)
code = code + 0x1D489;
......@@ -485,6 +547,13 @@ CMathText.prototype =
var letter = this.getCode();
var bAccentIJ = this.bJDraw ? false : this.Parent.IsAccent();
bAccentIJ = bAccentIJ && (this.value == 0x69 || this.value == 0x6A);
if(bAccentIJ)
oMeasure.SetStringGid(true);
var metricsTxt;
if(this.bJDraw)
......@@ -492,6 +561,9 @@ CMathText.prototype =
else
metricsTxt = oMeasure.MeasureCode(letter);
if(bAccentIJ)
oMeasure.SetStringGid(false);
// смещения
this.rasterOffsetX = metricsTxt.rasterOffsetX;
this.rasterOffsetY = metricsTxt.rasterOffsetY;
......@@ -550,6 +622,11 @@ CMathText.prototype =
pGraphics.transform(sx, shy, shx, sy, 0, 0);*/
var bAccent = this.bJDraw ? false : this.Parent.IsAccent();
if(bAccent && (this.value == 0x69 || this.value == 0x6A))
pGraphics.tg(this.getCode(), X, Y);
else
pGraphics.FillTextCode(X, Y, this.getCode()); //на отрисовку символа отправляем положение baseLine
},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment