Commit c82a4c49 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Реализовано добавление заливки текста. Сделано, чтобы AutoColor правильно...

Реализовано добавление заливки текста. Сделано, чтобы AutoColor правильно отрабатывал, когда есть заливка у текста.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55925 954022d7-b5bf-4e40-9824-e11837661b57
parent 68a3e08a
......@@ -5710,6 +5710,14 @@ CDocument.prototype =
{
var StartPos = this.Selection.StartPos;
var EndPos = this.Selection.EndPos;
if ( StartPos === EndPos && type_Paragraph === this.Content[StartPos].GetType() && false === this.Content[StartPos].Selection_CheckParaEnd() )
{
this.Paragraph_Add( new ParaTextPr( { Shd : Shd } ) );
this.Recalculate();
}
else
{
if ( EndPos < StartPos )
{
var Temp = StartPos;
......@@ -5752,6 +5760,7 @@ CDocument.prototype =
this.DrawingDocument.OnRecalculatePage( Index, this.Pages[Index] );
this.DrawingDocument.OnEndRecalculate(false, true);
}
break;
}
......
......@@ -5271,6 +5271,14 @@ CDocumentContent.prototype =
{
var StartPos = this.Selection.StartPos;
var EndPos = this.Selection.EndPos;
if ( StartPos === EndPos && type_Paragraph === this.Content[StartPos].GetType() && false === this.Content[StartPos].Selection_CheckParaEnd() )
{
this.Paragraph_Add( new ParaTextPr( { Shd : Shd } ) );
this.Parent.OnContentRecalculate( false );
}
else
{
if ( EndPos < StartPos )
{
var Temp = StartPos;
......@@ -5293,6 +5301,7 @@ CDocumentContent.prototype =
}
this.Parent.OnContentRecalculate( false );
}
break;
}
......
This diff is collapsed.
......@@ -678,6 +678,9 @@ ParaRun.prototype =
{
// Нам надо выяснить заливку у родительского класса (возможно мы находимся в ячейке таблицы с забивкой)
BgColor = Para.Parent.Get_TextBackGroundColor();
if ( undefined !== CurTextPr.Shd && shd_Nil !== CurTextPr.Shd.Value )
BgColor = CurTextPr.Shd.Get_Color( this.Paragraph );
}
// Определим автоцвет относительно заливки
......@@ -2929,7 +2932,7 @@ ParaRun.prototype =
var Para = PDSE.Paragraph;
var pGraphics = PDSE.Graphics;
var AutoColor = PDSE.AutoColor;
var BgColor = PDSE.BgColor;
var Theme = PDSE.Theme;
var FontScheme = Theme.themeElements.fontScheme;
......@@ -2939,6 +2942,11 @@ ParaRun.prototype =
var CurTextPr = this.Get_CompiledPr( false );
pGraphics.SetTextPr( CurTextPr, Theme );
if ( undefined !== CurTextPr.Shd && shd_Nil !== CurTextPr.Shd.Value )
BgColor = CurTextPr.Shd.Get_Color( Para );
var AutoColor = ( undefined != BgColor && false === BgColor.Check_BlackAutoColor() ? new CDocumentColor( 255, 255, 255, false ) : new CDocumentColor( 0, 0, 0, false ) );
var RGBA;
if(CurTextPr.Unifill)
{
......@@ -3119,7 +3127,13 @@ ParaRun.prototype =
var UnderlineY = Y + UndOff;
var LineW = (CurTextPr.FontSize / 18) * g_dKoef_pt_to_mm;
var AutoColor = PDSL.AutoColor;
var BgColor = PDSL.BgColor;
if ( undefined !== CurTextPr.Shd && shd_Nil !== CurTextPr.Shd.Value )
BgColor = CurTextPr.Shd.Get_Color( Para );
var AutoColor = ( undefined != BgColor && false === BgColor.Check_BlackAutoColor() ? new CDocumentColor( 255, 255, 255, false ) : new CDocumentColor( 0, 0, 0, false ) );
var CurColor = new CDocumentColor( 0, 0, 0, false );
// Выставляем цвет обводки
......
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