/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you 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 . */ #include "cmdid.h" #include "hintids.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "colex.hxx" #include "colmgr.hxx" //UUUU #include // Taking the updated values from the set void SwPageExample::UpdateExample( const SfxItemSet& rSet ) { SfxItemPool* pPool = rSet.GetPool(); sal_uInt16 nWhich = pPool->GetWhich( SID_ATTR_PAGE ); if ( rSet.GetItemState( nWhich, false ) == SfxItemState::SET ) { // alignment const SvxPageItem* pPage = static_cast(&rSet.Get( nWhich )); if ( pPage ) SetUsage( pPage->GetPageUsage() ); } nWhich = pPool->GetWhich( SID_ATTR_PAGE_SIZE ); if ( rSet.GetItemState( nWhich, false ) == SfxItemState::SET ) { // orientation and size from PageItem const SvxSizeItem& rSize = static_cast(rSet.Get( nWhich )); SetSize( rSize.GetSize() ); } nWhich = RES_LR_SPACE; if ( rSet.GetItemState( nWhich, false ) == SfxItemState::SET ) { // set left and right border const SvxLRSpaceItem& rLRSpace = static_cast(rSet.Get( nWhich )); SetLeft( rLRSpace.GetLeft() ); SetRight( rLRSpace.GetRight() ); } else { SetLeft( 0 ); SetRight( 0 ); } nWhich = RES_UL_SPACE; if ( rSet.GetItemState( nWhich, false ) == SfxItemState::SET ) { // set upper and lower border const SvxULSpaceItem& rULSpace = static_cast(rSet.Get( nWhich )); SetTop( rULSpace.GetUpper() ); SetBottom( rULSpace.GetLower() ); } else { SetTop( 0 ); SetBottom( 0 ); } // evaluate header-attributes const SfxPoolItem* pItem; if( SfxItemState::SET == rSet.GetItemState( pPool->GetWhich( SID_ATTR_PAGE_HEADERSET), false, &pItem ) ) { const SfxItemSet& rHeaderSet = static_cast(pItem)->GetItemSet(); const SfxBoolItem& rHeaderOn = static_cast(rHeaderSet.Get( pPool->GetWhich( SID_ATTR_PAGE_ON ) ) ); if ( rHeaderOn.GetValue() ) { const SvxSizeItem& rSize = static_cast(rHeaderSet.Get(pPool->GetWhich(SID_ATTR_PAGE_SIZE))); const SvxULSpaceItem& rUL = static_cast(rHeaderSet.Get( pPool->GetWhich(SID_ATTR_ULSPACE))); const SvxLRSpaceItem& rLR = static_cast(rHeaderSet.Get( pPool->GetWhich(SID_ATTR_LRSPACE))); SetHdHeight( rSize.GetSize().Height() - rUL.GetLower()); SetHdDist( rUL.GetLower() ); SetHdLeft( rLR.GetLeft() ); SetHdRight( rLR.GetRight() ); SetHeader( true ); if(SfxItemState::SET == rHeaderSet.GetItemState(RES_BACKGROUND)) { //UUUU create FillAttributes from SvxBrushItem //SetHdColor(rItem.GetColor()); const SvxBrushItem& rItem = static_cast< const SvxBrushItem& >(rHeaderSet.Get(RES_BACKGROUND)); SfxItemSet aTempSet(*rHeaderSet.GetPool(), XATTR_FILL_FIRST, XATTR_FILL_LAST); setSvxBrushItemAsFillAttributesToTargetSet(rItem, aTempSet); setHeaderFillAttributes( drawinglayer::attribute::SdrAllFillAttributesHelperPtr( new drawinglayer::attribute::SdrAllFillAttributesHelper( aTempSet))); } if ( rHeaderSet.GetItemState( RES_BOX ) == SfxItemState::SET ) { const SvxBoxItem& rItem = static_cast(rHeaderSet.Get( RES_BOX )); SetHdBorder( rItem ); } } else SetHeader( false ); } if( SfxItemState::SET == rSet.GetItemState( pPool->GetWhich( SID_ATTR_PAGE_FOOTERSET), false, &pItem ) ) { const SfxItemSet& rFooterSet = static_cast(pItem)->GetItemSet(); const SfxBoolItem& rFooterOn = static_cast(rFooterSet.Get( SID_ATTR_PAGE_ON )); if ( rFooterOn.GetValue() ) { const SvxSizeItem& rSize = static_cast(rFooterSet.Get( pPool->GetWhich( SID_ATTR_PAGE_SIZE ) )); const SvxULSpaceItem& rUL = static_cast(rFooterSet.Get( pPool->GetWhich( SID_ATTR_ULSPACE ) )); const SvxLRSpaceItem& rLR = static_cast(rFooterSet.Get( pPool->GetWhich( SID_ATTR_LRSPACE ) )); SetFtHeight( rSize.GetSize().Height() - rUL.GetUpper()); SetFtDist( rUL.GetUpper() ); SetFtLeft( rLR.GetLeft() ); SetFtRight( rLR.GetRight() ); SetFooter( true ); if( rFooterSet.GetItemState( RES_BACKGROUND ) == SfxItemState::SET ) { //UUUU create FillAttributes from SvxBrushItem //SetFtColor(rItem.GetColor()); const SvxBrushItem& rItem = static_cast< const SvxBrushItem& >(rFooterSet.Get(RES_BACKGROUND)); SfxItemSet aTempSet(*rFooterSet.GetPool(), XATTR_FILL_FIRST, XATTR_FILL_LAST); setSvxBrushItemAsFillAttributesToTargetSet(rItem, aTempSet); setFooterFillAttributes( drawinglayer::attribute::SdrAllFillAttributesHelperPtr( new drawinglayer::attribute::SdrAllFillAttributesHelper( aTempSet))); } if( rFooterSet.GetItemState( RES_BOX ) == SfxItemState::SET ) { const SvxBoxItem& rItem = static_cast(rFooterSet.Get( RES_BOX )); SetFtBorder( rItem ); } } else SetFooter( false ); } if(SfxItemState::SET == rSet.GetItemState(RES_BACKGROUND, false, &pItem)) { //UUUU create FillAttributes from SvxBrushItem const SvxBrushItem& rItem = static_cast< const SvxBrushItem& >(*pItem); SfxItemSet aTempSet(*rSet.GetPool(), XATTR_FILL_FIRST, XATTR_FILL_LAST); setSvxBrushItemAsFillAttributesToTargetSet(rItem, aTempSet); setPageFillAttributes( drawinglayer::attribute::SdrAllFillAttributesHelperPtr( new drawinglayer::attribute::SdrAllFillAttributesHelper( aTempSet))); } Invalidate(); } void SwColExample::DrawPage(vcl::RenderContext& rRenderContext, const Point& rOrg, const bool bSecond, const bool bEnabled) { SwPageExample::DrawPage(rRenderContext, rOrg, bSecond, bEnabled); sal_uInt16 nColumnCount; if (pColMgr && 0 != (nColumnCount = pColMgr->GetCount())) { long nL = GetLeft(); long nR = GetRight(); if (GetUsage() == SVX_PAGE_MIRROR && !bSecond) { // rotate for mirrored nL = GetRight(); nR = GetLeft(); } rRenderContext.SetFillColor(Color(COL_LIGHTGRAY)); Rectangle aRect; aRect.Right() = rOrg.X() + GetSize().Width() - nR; aRect.Left() = rOrg.X() + nL; aRect.Top() = rOrg.Y() + GetTop() + GetHdHeight() + GetHdDist(); aRect.Bottom()= rOrg.Y() + GetSize().Height() - GetBottom() - GetFtHeight() - GetFtDist(); rRenderContext.DrawRect(aRect); //UUUU const Rectangle aDefineRect(aRect); //UUUU const drawinglayer::attribute::SdrAllFillAttributesHelperPtr& rFillAttributes = getPageFillAttributes(); if (!rFillAttributes.get() || !rFillAttributes->isUsed()) { //UUUU If there is no fill, use fallback color const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); const Color& rFieldColor = rStyleSettings.GetFieldColor(); setPageFillAttributes( drawinglayer::attribute::SdrAllFillAttributesHelperPtr( new drawinglayer::attribute::SdrAllFillAttributesHelper(rFieldColor))); } // #97495# make sure that the automatic column width's are always equal bool bAutoWidth = pColMgr->IsAutoWidth(); sal_Int32 nAutoColWidth = 0; if (bAutoWidth) { sal_Int32 nColumnWidthSum = 0; sal_uInt16 i; for (i = 0; i < nColumnCount; ++i) nColumnWidthSum += pColMgr->GetColWidth( i ); nAutoColWidth = nColumnWidthSum / nColumnCount; } sal_uInt16 i; for (i = 0; i < nColumnCount; i++) { if (!bAutoWidth) nAutoColWidth = pColMgr->GetColWidth(i); aRect.Right() = aRect.Left() + nAutoColWidth; //UUUU use primitive draw command drawFillAttributes(rRenderContext, getPageFillAttributes(), aRect, aDefineRect); if (i < nColumnCount - 1) aRect.Left() = aRect.Right() + pColMgr->GetGutterWidth(i); } if (pColMgr->HasLine()) { Point aUp(rOrg.X() + nL, rOrg.Y() + GetTop()); Point aDown(rOrg.X() + nL, rOrg.Y() + GetSize().Height() - GetBottom() - GetFtHeight() - GetFtDist()); if (pColMgr->GetLineHeightPercent() != 100) { long nLength = aDown.Y() - aUp.Y(); nLength -= nLength * pColMgr->GetLineHeightPercent() / 100; switch (pColMgr->GetAdjust()) { case COLADJ_BOTTOM: aUp.Y() += nLength; break; case COLADJ_TOP: aDown.Y() -= nLength; break; case COLADJ_CENTER: aUp.Y() += nLength / 2; aDown.Y() -= nLength / 2; break; default:; // prevent warning } } for (i = 0; i < nColumnCount - 1; i++) { int nGutter = pColMgr->GetGutterWidth(i); int nDist = pColMgr->GetColWidth( i ) + nGutter; nDist -= (i == 0) ? nGutter / 2 : 0; aUp.X() += nDist; aDown.X() += nDist; rRenderContext.DrawLine(aUp, aDown); } } } } VCL_BUILDER_FACTORY(SwColExample) SwColumnOnlyExample::SwColumnOnlyExample(vcl::Window* pParent) : Window(pParent) , m_aFrmSize(1,1) { SetMapMode( MapMode( MAP_TWIP ) ); m_aWinSize = GetOptimalSize(); m_aWinSize.Height() -= 4; m_aWinSize.Width() -= 4; m_aWinSize = PixelToLogic( m_aWinSize ); SetBorderStyle( WindowBorderStyle::MONO ); m_aFrmSize = SvxPaperInfo::GetPaperSize(PAPER_A4);// DIN A4 ::FitToActualSize(m_aCols, (sal_uInt16)m_aFrmSize.Width()); long nHeight = m_aFrmSize.Height(); Fraction aScale( m_aWinSize.Height(), nHeight ); MapMode aMapMode( GetMapMode() ); aMapMode.SetScaleX( aScale ); aMapMode.SetScaleY( aScale ); SetMapMode( aMapMode ); } VCL_BUILDER_FACTORY(SwColumnOnlyExample) void SwColumnOnlyExample::Paint(vcl::RenderContext& rRenderContext, const Rectangle& /*rRect*/) { const StyleSettings& rStyleSettings = rRenderContext.GetSettings().GetStyleSettings(); const Color& rFieldColor = rStyleSettings.GetFieldColor(); const Color& rDlgColor = rStyleSettings.GetDialogColor(); const Color& rFieldTextColor = SwViewOption::GetFontColor(); Color aGrayColor(COL_LIGHTGRAY); if (rFieldColor == aGrayColor) aGrayColor.Invert(); Size aLogSize(rRenderContext.PixelToLogic(rRenderContext.GetOutputSizePixel())); Rectangle aCompleteRect(Point(0,0), aLogSize); rRenderContext.SetLineColor(rDlgColor); rRenderContext.SetFillColor(rDlgColor); rRenderContext.DrawRect(aCompleteRect); rRenderContext.SetLineColor(rFieldTextColor); Point aTL((aLogSize.Width() - m_aFrmSize.Width()) / 2, (aLogSize.Height() - m_aFrmSize.Height()) / 2); Rectangle aRect(aTL, m_aFrmSize); //draw a shadow rectangle rRenderContext.SetFillColor(Color(COL_GRAY)); Rectangle aShadowRect(aRect); aShadowRect.Move(aTL.Y(), aTL.Y()); rRenderContext.DrawRect(aShadowRect); rRenderContext.SetFillColor(rFieldColor); rRenderContext.DrawRect(aRect); rRenderContext.SetFillColor(aGrayColor); //column separator? long nLength = aLogSize.Height() - 2 * aTL.Y(); Point aUp(aTL); Point aDown(aTL.X(), nLength); bool bLines = false; if (m_aCols.GetLineAdj() != COLADJ_NONE) { bLines = true; sal_uInt16 nPercent = m_aCols.GetLineHeight(); if (nPercent != 100) { nLength -= nLength * nPercent / 100; switch(m_aCols.GetLineAdj()) { case COLADJ_BOTTOM: aUp.Y() += nLength; break; case COLADJ_TOP: aDown.Y() -= nLength; break; case COLADJ_CENTER: aUp.Y() += nLength / 2; aDown.Y() -= nLength / 2; break; default: break; //prevent warning } } } const SwColumns& rCols = m_aCols.GetColumns(); sal_uInt16 nColCount = rCols.size(); if (nColCount) { rRenderContext.DrawRect(aRect); rRenderContext.SetFillColor(rFieldColor); Rectangle aFrmRect(aTL, m_aFrmSize); long nSum = aTL.X(); for (sal_uInt16 i = 0; i < nColCount; i++) { const SwColumn* pCol = &rCols[i]; aFrmRect.Left() = nSum + pCol->GetLeft(); //nSum + pCol->GetLeft() + aTL.X(); nSum += pCol->GetWishWidth(); aFrmRect.Right() = nSum - pCol->GetRight(); rRenderContext.DrawRect(aFrmRect); } if (bLines) { nSum = aTL.X(); for (sal_uInt16 i = 0; i < nColCount - 1; i++) { nSum += rCols[i].GetWishWidth(); aUp.X() = nSum; aDown.X() = nSum; rRenderContext.DrawLine(aUp, aDown); } } } } void SwColumnOnlyExample::SetColumns(const SwFormatCol& rCol) { m_aCols = rCol; sal_uInt16 nWishSum = m_aCols.GetWishWidth(); long nFrmWidth = m_aFrmSize.Width(); SwColumns& rCols = m_aCols.GetColumns(); sal_uInt16 nColCount = rCols.size(); for(sal_uInt16 i = 0; i < nColCount; i++) { SwColumn* pCol = &rCols[i]; long nWish = pCol->GetWishWidth(); nWish *= nFrmWidth; nWish /= nWishSum; pCol->SetWishWidth((sal_uInt16)nWish); long nLeft = pCol->GetLeft(); nLeft *= nFrmWidth; nLeft /= nWishSum; pCol->SetLeft((sal_uInt16)nLeft); long nRight = pCol->GetRight(); nRight *= nFrmWidth; nRight /= nWishSum; pCol->SetRight((sal_uInt16)nRight); } // #97495# make sure that the automatic column width's are always equal if(nColCount && m_aCols.IsOrtho()) { sal_Int32 nColumnWidthSum = 0; sal_uInt16 i; for(i = 0; i < nColCount; ++i) { SwColumn* pCol = &rCols[i]; nColumnWidthSum += pCol->GetWishWidth(); nColumnWidthSum -= (pCol->GetRight() + pCol->GetLeft()); } nColumnWidthSum /= nColCount; for(i = 0; i < nColCount; ++i) { SwColumn* pCol = &rCols[i]; pCol->SetWishWidth( static_cast< sal_uInt16 >(nColumnWidthSum + pCol->GetRight() + pCol->GetLeft())); } } } Size SwColumnOnlyExample::GetOptimalSize() const { return LogicToPixel(Size(75, 46), MapMode(MAP_APPFONT)); } SwPageGridExample::~SwPageGridExample() { disposeOnce(); } void SwPageGridExample::dispose() { delete pGridItem; SwPageExample::dispose(); } void SwPageGridExample::DrawPage(vcl::RenderContext& rRenderContext, const Point& rOrg, const bool bSecond, const bool bEnabled) { SwPageExample::DrawPage(rRenderContext, rOrg, bSecond, bEnabled); if (pGridItem && pGridItem->GetGridType()) { //paint the grid now Color aLineColor = pGridItem->GetColor(); if (aLineColor.GetColor() == COL_AUTO) { aLineColor = rRenderContext.GetFillColor(); aLineColor.Invert(); } rRenderContext.SetLineColor(aLineColor); long nL = GetLeft(); long nR = GetRight(); if (GetUsage() == SVX_PAGE_MIRROR && !bSecond) { // rotate for mirrored nL = GetRight(); nR = GetLeft(); } Rectangle aRect; aRect.Right() = rOrg.X() + GetSize().Width() - nR; aRect.Left() = rOrg.X() + nL; aRect.Top() = rOrg.Y() + GetTop() + GetHdHeight() + GetHdDist(); aRect.Bottom()= rOrg.Y() + GetSize().Height() - GetBottom() - GetFtHeight() - GetFtDist(); //increase the values to get a 'viewable' preview sal_Int32 nBaseHeight = pGridItem->GetBaseHeight() * 3; sal_Int32 nRubyHeight = pGridItem->GetRubyHeight() * 3; //detect height of rectangles Rectangle aRubyRect(aRect.TopLeft(), m_bVertical ? Size(nRubyHeight, aRect.GetHeight()) : Size(aRect.GetWidth(), nRubyHeight)); Rectangle aCharRect(aRect.TopLeft(), m_bVertical ? Size(nBaseHeight, aRect.GetHeight()) : Size(aRect.GetWidth(), nBaseHeight)); sal_Int32 nLineHeight = nBaseHeight + nRubyHeight; //detect count of rectangles sal_Int32 nLines = (m_bVertical ? aRect.GetWidth(): aRect.GetHeight()) / nLineHeight; if (nLines > pGridItem->GetLines()) nLines = pGridItem->GetLines(); // determine start position if (m_bVertical) { sal_Int16 nXStart = static_cast(aRect.GetWidth() / 2 - nLineHeight * nLines /2); aRubyRect.Move(nXStart, 0); aCharRect.Move(nXStart, 0); } else { sal_Int16 nYStart = static_cast(aRect.GetHeight() / 2 - nLineHeight * nLines /2); aRubyRect.Move(0, nYStart); aCharRect.Move(0, nYStart); } if (pGridItem->IsRubyTextBelow()) m_bVertical ? aRubyRect.Move(nBaseHeight, 0) : aRubyRect.Move(0, nBaseHeight); else m_bVertical ? aCharRect.Move(nRubyHeight, 0) : aCharRect.Move(0, nRubyHeight); //vertical lines bool bBothLines = pGridItem->GetGridType() == GRID_LINES_CHARS; rRenderContext.SetFillColor(Color(COL_TRANSPARENT)); sal_Int32 nXMove = m_bVertical ? nLineHeight : 0; sal_Int32 nYMove = m_bVertical ? 0 : nLineHeight; for (sal_Int32 nLine = 0; nLine < nLines; nLine++) { rRenderContext.DrawRect(aRubyRect); rRenderContext.DrawRect(aCharRect); if (bBothLines) { Point aStart = aCharRect.TopLeft(); Point aEnd = m_bVertical ? aCharRect.TopRight() : aCharRect.BottomLeft(); while (m_bVertical ? aStart.Y() < aRect.Bottom(): aStart.X() < aRect.Right()) { rRenderContext.DrawLine(aStart, aEnd); if(m_bVertical) aStart.Y() = aEnd.Y() += nBaseHeight; else aStart.X() = aEnd.X() += nBaseHeight; } } aRubyRect.Move(nXMove, nYMove); aCharRect.Move(nXMove, nYMove); } } } void SwPageGridExample::UpdateExample( const SfxItemSet& rSet ) { DELETEZ(pGridItem); //get the grid information if(SfxItemState::DEFAULT <= rSet.GetItemState(RES_TEXTGRID, true)) pGridItem = static_cast(static_cast(rSet.Get(RES_TEXTGRID)).Clone()); if( SfxItemState::DEFAULT <= rSet.GetItemState( RES_FRAMEDIR, true )) { const SvxFrameDirectionItem& rDirItem = static_cast(rSet.Get(RES_FRAMEDIR)); m_bVertical = rDirItem.GetValue() == FRMDIR_VERT_TOP_RIGHT|| rDirItem.GetValue() == FRMDIR_VERT_TOP_LEFT; } SwPageExample::UpdateExample(rSet); } VCL_BUILDER_FACTORY(SwPageGridExample) /* vim:set shiftwidth=4 softtabstop=4 expandtab: */