/* -*- 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 #include #include "editeng/fontitem.hxx" #include "svdibrow.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace com::sun::star; #define ITEMBROWSER_WHICHCOL_ID 1 #define ITEMBROWSER_STATECOL_ID 2 #define ITEMBROWSER_TYPECOL_ID 3 #define ITEMBROWSER_NAMECOL_ID 4 #define ITEMBROWSER_VALUECOL_ID 5 #define ITEM_NOT_FOUND std::numeric_limits::max() enum class ItemType { DONTKNOW, BYTE, INT16, UINT16, INT32, UINT32, ENUM, BOOL, FLAG, STRING, POINT, RECT, RANGE, FRACTION, XCOLOR, COLOR, FONT, FONTHEIGHT, FONTWIDTH, FIELD }; class ImpItemListRow { public: OUString aName; OUString aValue; SfxItemState eState; sal_uInt16 nWhichId; const std::type_info* pType; ItemType eItemType; sal_Int32 nVal; sal_Int32 nMin; sal_Int32 nMax; bool bComment; bool bIsNum; bool bCanNum; public: ImpItemListRow() : eState(SfxItemState::UNKNOWN), nWhichId(0), pType(nullptr), eItemType(ItemType::DONTKNOW), nVal(0), nMin(0), nMax(0), bComment(false), bIsNum(false), bCanNum(false) {} OUString GetItemTypeStr() const; bool operator==(const ImpItemListRow& rEntry) const; bool operator!=(const ImpItemListRow& rEntry) const { return !operator==(rEntry); } }; OUString ImpItemListRow::GetItemTypeStr() const { switch(eItemType) { case ItemType::BYTE : return OUString("Byte"); break; case ItemType::INT16 : return OUString("Int16"); break; case ItemType::UINT16 : return OUString("UInt16"); break; case ItemType::INT32 : return OUString("Int32"); break; case ItemType::UINT32 : return OUString("UInt32"); break; case ItemType::ENUM : return OUString("Enum"); break; case ItemType::BOOL : return OUString("Bool"); break; case ItemType::FLAG : return OUString("Flag"); break; case ItemType::STRING : return OUString("String"); break; case ItemType::POINT : return OUString("Point"); break; case ItemType::RECT : return OUString("Rectangle");break; case ItemType::RANGE : return OUString("Range"); break; case ItemType::FRACTION : return OUString("Fraction"); break; case ItemType::XCOLOR : return OUString("XColor"); break; case ItemType::COLOR : return OUString("Color"); break; case ItemType::FONT : return OUString("Font"); break; case ItemType::FONTHEIGHT: return OUString("FontHeight");break; case ItemType::FONTWIDTH : return OUString("FontWidth"); break; case ItemType::FIELD : return OUString("Field"); break; default: break; } return OUString(); } bool ImpItemListRow::operator==(const ImpItemListRow& rEntry) const { return (aName.equals(rEntry.aName) && aValue.equals(rEntry.aValue) && eState==rEntry.eState && nWhichId==rEntry.nWhichId && bComment==rEntry.bComment && bIsNum==rEntry.bIsNum && bCanNum==rEntry.bCanNum && pType==rEntry.pType && eItemType==rEntry.eItemType && nVal==rEntry.nVal && nMin==rEntry.nMin && nMax==rEntry.nMax); } class ImpItemEdit: public Edit { VclPtr pBrowse; public: ImpItemEdit(vcl::Window* pParent, SdrItemBrowserControl* pBrowse_, WinBits nBits) : Edit(pParent, nBits), pBrowse(pBrowse_) {} virtual ~ImpItemEdit() override { disposeOnce(); } virtual void dispose() override { pBrowse.clear(); Edit::dispose(); } virtual void KeyInput(const KeyEvent& rEvt) override; }; void ImpItemEdit::KeyInput(const KeyEvent& rKEvt) { SdrItemBrowserControl* pBrowseMerk = pBrowse; sal_uInt16 nKeyCode(rKEvt.GetKeyCode().GetCode() + rKEvt.GetKeyCode().GetModifier()); if(nKeyCode == KEY_RETURN) { pBrowseMerk->EndChangeEntry(); pBrowseMerk->GrabFocus(); } else if(nKeyCode == KEY_ESCAPE) { pBrowseMerk->BreakChangeEntry(); pBrowseMerk->GrabFocus(); } else if(nKeyCode == KEY_UP || nKeyCode == KEY_DOWN) { pBrowseMerk->EndChangeEntry(); pBrowseMerk->GrabFocus(); pBrowseMerk->KeyInput(rKEvt); } else Edit::KeyInput(rKEvt); } // - SdrItemBrowserControl - #define MYBROWSEMODE (BrowserMode::THUMBDRAGGING|BrowserMode::KEEPHIGHLIGHT|BrowserMode::NO_HSCROLL|BrowserMode::HIDECURSOR) SdrItemBrowserControl::SdrItemBrowserControl(vcl::Window* pParent): BrowseBox(pParent, WB_3DLOOK | WB_BORDER | WB_TABSTOP, MYBROWSEMODE), aList() { ImpCtor(); } SdrItemBrowserControl::~SdrItemBrowserControl() { disposeOnce(); } void SdrItemBrowserControl::dispose() { pEditControl.disposeAndClear(); delete pAktChangeEntry; Clear(); BrowseBox::dispose(); } void SdrItemBrowserControl::ImpCtor() { pEditControl = nullptr; pAktChangeEntry = nullptr; nLastWhichOfs = 0; nLastWhich = 0; nLastWhichOben = 0; // not implemented yet nLastWhichUnten = 0; // not implemented yet bWhichesButNames = false; bDontHideIneffectiveItems = false; bDontSortItems = false; bShowWhichIds = false; bShowRealValues = false; bShowWhichIds = true; // not implemented yet bShowRealValues = true; // not implemented yet InsertDataColumn( ITEMBROWSER_WHICHCOL_ID, "Which", GetTextWidth(" Which ") + 2); InsertDataColumn( ITEMBROWSER_STATECOL_ID, "State", std::max(GetTextWidth(" State ") + 2 , GetTextWidth("DontCare") + 2)); InsertDataColumn( ITEMBROWSER_TYPECOL_ID , "Type", GetTextWidth(" Type_ ") + 2); InsertDataColumn( ITEMBROWSER_NAMECOL_ID , "Name", 150); InsertDataColumn( ITEMBROWSER_VALUECOL_ID, "Value", GetTextWidth("12345678901234567890")); SetDataRowHeight( GetTextHeight()); long nWdt=GetColumnWidth(ITEMBROWSER_WHICHCOL_ID)+ GetColumnWidth(ITEMBROWSER_STATECOL_ID)+ GetColumnWidth(ITEMBROWSER_TYPECOL_ID )+ GetColumnWidth(ITEMBROWSER_NAMECOL_ID )+ GetColumnWidth(ITEMBROWSER_VALUECOL_ID); long nHgt=GetTitleHeight()+16*GetDataRowHeight(); SetOutputSizePixel(Size(nWdt,nHgt)); } void SdrItemBrowserControl::Clear() { const std::size_t nCount=aList.size(); for (std::size_t nNum=0; nNum= 0 && _nRow < (sal_Int32)aList.size() ) { ImpItemListRow* pEntry = ImpGetEntry(_nRow); if ( pEntry ) { if ( pEntry->bComment ) { if (_nColId == ITEMBROWSER_NAMECOL_ID) sRet = pEntry->aName; } else { sRet = "???"; switch (_nColId) { case ITEMBROWSER_WHICHCOL_ID: sRet = OUString::number( pEntry->nWhichId ); break; case ITEMBROWSER_STATECOL_ID: { switch (pEntry->eState) { case SfxItemState::UNKNOWN : sRet = "Unknown"; break; case SfxItemState::DISABLED: sRet = "Disabled"; break; case SfxItemState::DONTCARE: sRet = "DontCare"; break; case SfxItemState::SET : sRet = "Set"; break; case SfxItemState::DEFAULT : sRet = "Default"; break; case SfxItemState::READONLY: sRet = "ReadOnly"; break; } // switch } break; case ITEMBROWSER_TYPECOL_ID: sRet = pEntry->GetItemTypeStr(); break; case ITEMBROWSER_NAMECOL_ID: sRet = pEntry->aName; break; case ITEMBROWSER_VALUECOL_ID: sRet = pEntry->aValue; break; } // switch } } } return sRet; } void SdrItemBrowserControl::PaintField(OutputDevice& rDev, const tools::Rectangle& rRect, sal_uInt16 nColumnId) const { if (nAktPaintRow<0 || static_cast(nAktPaintRow)>=aList.size()) { return; } tools::Rectangle aR(rRect); aR.Bottom()++; ImpItemListRow* pEntry=ImpGetEntry(nAktPaintRow); if (pEntry->bComment) { if (nColumnId==ITEMBROWSER_NAMECOL_ID) { rDev.SetLineColor(); rDev.SetFillColor( Color( COL_LIGHTGRAY ) ); aR.Left()=0; aR.Right()=rDev.GetOutputSize().Width(); rDev.DrawRect(aR); rDev.DrawText(rRect.TopLeft(),pEntry->aName); } } else { rDev.SetClipRegion(vcl::Region(aR)); rDev.DrawText(aR.TopLeft(),GetCellText(nAktPaintRow,nColumnId)); rDev.SetClipRegion(); } } std::size_t SdrItemBrowserControl::GetCurrentPos() const { std::size_t nRet=ITEM_NOT_FOUND; if (GetSelectRowCount()==1) { long nPos=static_cast(const_cast(this))->FirstSelectedRow(); if (nPos>=0 && static_cast(nPos)(nPos); } } return nRet; } sal_uInt16 SdrItemBrowserControl::GetCurrentWhich() const { sal_uInt16 nRet=0; const std::size_t nPos=GetCurrentPos(); if (nPos!=ITEM_NOT_FOUND) { nRet=ImpGetEntry(nPos)->nWhichId; } return nRet; } void SdrItemBrowserControl::DoubleClick(const BrowserMouseEvent&) { const std::size_t nPos=GetCurrentPos(); if (nPos!=ITEM_NOT_FOUND) { BeginChangeEntry(nPos); } } void SdrItemBrowserControl::KeyInput(const KeyEvent& rKEvt) { sal_uInt16 nKeyCode=rKEvt.GetKeyCode().GetCode()+rKEvt.GetKeyCode().GetModifier(); bool bAusgewertet = false; const std::size_t nPos=GetCurrentPos(); if (nPos!=ITEM_NOT_FOUND) { if (nKeyCode==KEY_RETURN) { if (BeginChangeEntry(nPos)) bAusgewertet = true; } else if (nKeyCode==KEY_ESCAPE) { } else if (rKEvt.GetKeyCode().GetModifier()==KEY_SHIFT+KEY_MOD1+KEY_MOD2) { // Ctrl if (nKeyCode==KEY_SHIFT+KEY_MOD1+KEY_MOD2+KEY_W) { bWhichesButNames=!bWhichesButNames; SetDirty(); } if (nKeyCode==KEY_SHIFT+KEY_MOD1+KEY_MOD2+KEY_I) { bDontHideIneffectiveItems=!bDontHideIneffectiveItems; SetDirty(); } if (nKeyCode==KEY_SHIFT+KEY_MOD1+KEY_MOD2+KEY_S) { bDontSortItems=!bDontSortItems; SetDirty(); } } } if (!bAusgewertet) BrowseBox::KeyInput(rKEvt); } void SdrItemBrowserControl::SetDirty() { aSetDirtyHdl.Call(*this); } tools::Rectangle SdrItemBrowserControl::GetFieldCharacterBounds(sal_Int32 /*_nRow*/,sal_Int32 /*_nColumnPos*/,sal_Int32 /*nIndex*/) { // no accessibility implementation required return tools::Rectangle(); } sal_Int32 SdrItemBrowserControl::GetFieldIndexAtPoint(sal_Int32 /*_nRow*/,sal_Int32 /*_nColumnPos*/,const Point& /*_rPoint*/) { // no accessibility implementation required return -1; } void SdrItemBrowserControl::Select() { EndChangeEntry(); BrowseBox::Select(); ImpSaveWhich(); } void SdrItemBrowserControl::ImpSaveWhich() { sal_uInt16 nWh=GetCurrentWhich(); if (nWh!=0) { long nPos=GetCurrentPos(); long nTop=GetTopRow(); long nBtm=GetTopRow()+GetVisibleRows()+1; nLastWhich=nWh; nLastWhichOfs=nPos-nTop; if (nTop<0) nTop=0; if (nBtm>=(long)aList.size()) nBtm=aList.size()-1; nLastWhichOben=ImpGetEntry(nTop)->nWhichId; nLastWhichUnten=ImpGetEntry(nBtm)->nWhichId; } } void SdrItemBrowserControl::ImpRestoreWhich() { if (nLastWhich!=0) { bool bFnd = false; const std::size_t nCount=aList.size(); std::size_t nNum; for (nNum=0; nNumbComment) { sal_uInt16 nWh=pEntry->nWhichId; if (nWh==nLastWhich) bFnd = true; } } if (bFnd) { long nPos=nNum-1; long nWhichOfs=nPos-GetTopRow(); if (nWhichOfs!=nLastWhichOfs) { ScrollRows(nWhichOfs-nLastWhichOfs); } GoToRow(nPos); } } } bool SdrItemBrowserControl::BeginChangeEntry(std::size_t nPos) { BreakChangeEntry(); bool bRet = false; ImpItemListRow* pEntry=ImpGetEntry(nPos); if (pEntry!=nullptr && !pEntry->bComment) { SetMode(MYBROWSEMODE & BrowserMode(~BrowserMode::KEEPHIGHLIGHT)); pEditControl=VclPtr::Create(&GetDataWindow(),this,0); tools::Rectangle aRect(GetFieldRectPixel(nPos, ITEMBROWSER_VALUECOL_ID, false)); aRect.Left()+=2; // little offset for the Edit, so it's exact to the pixel aRect.Right()--; pEditControl->SetPosSizePixel(aRect.TopLeft(),aRect.GetSize()); pEditControl->SetText(pEntry->aValue); pEditControl->SetBackground( Wallpaper(Color(COL_LIGHTGRAY))); vcl::Font aFont(pEditControl->GetFont()); aFont.SetFillColor(Color(COL_LIGHTGRAY)); pEditControl->SetFont(aFont); pEditControl->Show(); pEditControl->GrabFocus(); pEditControl->SetSelection(Selection(SELECTION_MIN,SELECTION_MAX)); vcl::Window* pParent=GetParent(); aWNamMerk=pParent->GetText(); OUString aNeuNam(aWNamMerk); aNeuNam += " "; aNeuNam += pEntry->GetItemTypeStr(); if (pEntry->bCanNum) { aNeuNam += ": "; aNeuNam += OUString::number(pEntry->nMin); aNeuNam += ".."; aNeuNam += OUString::number(pEntry->nMax); } aNeuNam += " - Type 'del' to reset to default."; pParent->SetText(aNeuNam); pAktChangeEntry=new ImpItemListRow(*pEntry); bRet = true; } return bRet; } void SdrItemBrowserControl::EndChangeEntry() { if (!pEditControl) return; aEntryChangedHdl.Call(*this); BreakChangeEntry(); } void SdrItemBrowserControl::BreakChangeEntry() { if (pEditControl!=nullptr) { pEditControl.disposeAndClear(); delete pAktChangeEntry; pAktChangeEntry=nullptr; vcl::Window* pParent=GetParent(); pParent->SetText(aWNamMerk); SetMode(MYBROWSEMODE); } } void SdrItemBrowserControl::ImpSetEntry(const ImpItemListRow& rEntry, std::size_t nEntryNum) { SAL_WARN_IF(nEntryNum > aList.size(), "svx", "trying to set item " << nEntryNum << "in a vector of size " << aList.size()); if (nEntryNum >= aList.size()) { nEntryNum = aList.size(); aList.push_back(new ImpItemListRow(rEntry)); RowInserted(nEntryNum); } else { ImpItemListRow* pAktEntry=ImpGetEntry(nEntryNum); if (*pAktEntry!=rEntry) { bool bStateDiff=rEntry.eState!=pAktEntry->eState; bool bValueDiff=!rEntry.aValue.equals(pAktEntry->aValue); bool bAllDiff = true; if (bStateDiff || bValueDiff) { // check whether only state and/or value have changed ImpItemListRow aTest(rEntry); aTest.eState=pAktEntry->eState; aTest.aValue=pAktEntry->aValue; if (aTest==*pAktEntry) bAllDiff = false; } *pAktEntry=rEntry; if (bAllDiff) { RowModified(nEntryNum); } else { if (bStateDiff) RowModified(nEntryNum,ITEMBROWSER_STATECOL_ID); if (bValueDiff) RowModified(nEntryNum,ITEMBROWSER_VALUECOL_ID); } } } } bool ImpGetItem(const SfxItemSet& rSet, sal_uInt16 nWhich, const SfxPoolItem*& rpItem) { SfxItemState eState=rSet.GetItemState(nWhich,true,&rpItem); if (eState==SfxItemState::DEFAULT) { rpItem=&rSet.Get(nWhich); } return (eState==SfxItemState::DEFAULT || eState==SfxItemState::SET) && rpItem!=nullptr; } bool IsItemIneffective(sal_uInt16 nWhich, const SfxItemSet* pSet, sal_uInt16& rIndent) { rIndent=0; if (pSet==nullptr) return false; const SfxPoolItem* pItem=nullptr; bool bRet = false; switch (nWhich) { case XATTR_LINEDASH : case XATTR_LINEWIDTH : case XATTR_LINECOLOR : case XATTR_LINESTART : case XATTR_LINEEND : case XATTR_LINESTARTWIDTH : case XATTR_LINEENDWIDTH : case XATTR_LINESTARTCENTER : case XATTR_LINEENDCENTER : case XATTR_LINETRANSPARENCE : { rIndent=1; if (ImpGetItem(*pSet,XATTR_LINESTYLE,pItem)) { drawing::LineStyle eLineStyle=static_cast(pItem)->GetValue(); if (eLineStyle==drawing::LineStyle_NONE) return true; if (eLineStyle!=drawing::LineStyle_DASH && nWhich==XATTR_LINEDASH) return true; } if (nWhich==XATTR_LINESTART || nWhich==XATTR_LINESTARTCENTER) { rIndent=2; if (ImpGetItem(*pSet,XATTR_LINESTARTWIDTH,pItem)) { sal_Int32 nWdt=static_cast(pItem)->GetValue(); if (nWdt==0) return true; } } if (nWhich==XATTR_LINEEND || nWhich==XATTR_LINEENDCENTER) { rIndent=2; if (ImpGetItem(*pSet,XATTR_LINEENDWIDTH,pItem)) { sal_Int32 nWdt=static_cast(pItem)->GetValue(); if (nWdt==0) return true; } } } break; case XATTR_FILLCOLOR : /* only for Style=Color */ case XATTR_FILLGRADIENT : /* only for Style=Gradient */ case XATTR_FILLHATCH : /* only for Style=Hatch */ case XATTR_FILLTRANSPARENCE : /* only for Style=Color */ case XATTR_GRADIENTSTEPCOUNT : /* only for Style=Gradient */ case XATTR_FILLBACKGROUND : /* only for Style=Hatch */ { rIndent=1; if (ImpGetItem(*pSet,XATTR_FILLSTYLE,pItem)) { drawing::FillStyle eFillStyle=static_cast(pItem)->GetValue(); if (eFillStyle==drawing::FillStyle_NONE) return true; // transparency currently only for SolidFill if (eFillStyle!=drawing::FillStyle_SOLID && (nWhich==XATTR_FILLCOLOR || nWhich==XATTR_FILLTRANSPARENCE)) return true; if (eFillStyle!=drawing::FillStyle_GRADIENT && (nWhich==XATTR_FILLGRADIENT || nWhich==XATTR_GRADIENTSTEPCOUNT)) return true; if (eFillStyle!=drawing::FillStyle_HATCH && (nWhich==XATTR_FILLHATCH || nWhich==XATTR_FILLBACKGROUND)) return true; } } break; case XATTR_FILLBITMAP : case XATTR_FILLBMP_TILE : case XATTR_FILLBMP_POS : /* currently only if TILE=sal_True */ case XATTR_FILLBMP_SIZEX : /* only if not Stretch */ case XATTR_FILLBMP_SIZEY : /* only if not Stretch */ case XATTR_FILLBMP_SIZELOG : /* only if SIZELOG=sal_False to reset to sal_True (old) -> but is still in use */ case XATTR_FILLBMP_TILEOFFSETX : /* only if TILE=sal_True */ case XATTR_FILLBMP_TILEOFFSETY : /* only if TILE=sal_True */ case XATTR_FILLBMP_STRETCH : /* only if TILE=sal_False */ case XATTR_FILLBMP_POSOFFSETX : /* only if TILE=sal_True*/ case XATTR_FILLBMP_POSOFFSETY : { /* only if TILE=sal_True*/ rIndent=1; if (ImpGetItem(*pSet,XATTR_FILLSTYLE,pItem)) { drawing::FillStyle eFillStyle=static_cast(pItem)->GetValue(); if (eFillStyle!=drawing::FillStyle_BITMAP) return true; } if (nWhich==XATTR_FILLBITMAP || nWhich==XATTR_FILLBMP_TILE) { return false; // always selectable } bool bTileTRUE = false; bool bTileFALSE = false; bool bStretchTRUE = false; if (ImpGetItem(*pSet,XATTR_FILLBMP_TILE,pItem)) { bTileTRUE=static_cast(pItem)->GetValue(); bTileFALSE=!bTileTRUE; } if (ImpGetItem(*pSet,XATTR_FILLBMP_STRETCH,pItem)) { bStretchTRUE=static_cast(pItem)->GetValue(); } // Stretch not selectable if Tile=TRUE if (nWhich==XATTR_FILLBMP_STRETCH) return bTileTRUE; // and 7+1 items (sub-attributes) remain rIndent=2; // Pos (enum) not selectable if Tile=FALSE if (nWhich==XATTR_FILLBMP_POS) return bTileFALSE; // SizeXY not selectable if Stretch=TRUE if (nWhich==XATTR_FILLBMP_SIZEX || nWhich==XATTR_FILLBMP_SIZEY) { return bTileFALSE && bStretchTRUE; } // 2 items specially for Tile if (nWhich==XATTR_FILLBMP_POSOFFSETX || nWhich==XATTR_FILLBMP_POSOFFSETY) { return bTileFALSE; } // another 2 items specially for Tile -- however, these exclude each other if (nWhich==XATTR_FILLBMP_TILEOFFSETX || nWhich==XATTR_FILLBMP_TILEOFFSETY) { if (bTileFALSE) return true; sal_uInt16 nX=0,nY=0; bool bX = false,bY = false; if (ImpGetItem(*pSet,XATTR_FILLBMP_TILEOFFSETX,pItem)) { nX=static_cast(pItem)->GetValue(); bX = true; } if (ImpGetItem(*pSet,XATTR_FILLBMP_TILEOFFSETY,pItem)) { nY=static_cast(pItem)->GetValue(); bY = true; } if (nWhich==XATTR_FILLBMP_TILEOFFSETX) { if (nX!=0 || !bX) return false; if (nY!=0) return true; } else { if (nY!=0 || !bY) return false; if (nX!=0) return true; } } // SizeLog not selectable if Stretch=TRUE and/or // if SizeLog=sal_False. // -> apparently still in use // (sal_True is the static PoolDefault) if (nWhich==XATTR_FILLBMP_SIZELOG) { if (bTileFALSE && bStretchTRUE) return true; } } break; case XATTR_FORMTXTADJUST : case XATTR_FORMTXTDISTANCE : case XATTR_FORMTXTSTART : case XATTR_FORMTXTMIRROR : case XATTR_FORMTXTOUTLINE : case XATTR_FORMTXTSHADOW : case XATTR_FORMTXTSHDWCOLOR : case XATTR_FORMTXTSHDWXVAL : case XATTR_FORMTXTSHDWYVAL : case XATTR_FORMTXTHIDEFORM : case XATTR_FORMTXTSHDWTRANSP: { rIndent=1; if (ImpGetItem(*pSet,XATTR_FORMTXTSTYLE,pItem)) { XFormTextStyle eStyle=static_cast(pItem)->GetValue(); if (eStyle==XFormTextStyle::NONE) return true; } if ((nWhich>=XATTR_FORMTXTSHDWCOLOR && nWhich<=XATTR_FORMTXTSHDWYVAL) || nWhich>=XATTR_FORMTXTSHDWTRANSP) { rIndent=2; if (ImpGetItem(*pSet,XATTR_FORMTXTSHADOW,pItem)) { XFormTextShadow eShadow=static_cast(pItem)->GetValue(); if (eShadow==XFormTextShadow::NONE) return true; } } } break; case SDRATTR_SHADOWCOLOR : case SDRATTR_SHADOWXDIST : case SDRATTR_SHADOWYDIST : case SDRATTR_SHADOWTRANSPARENCE: case SDRATTR_SHADOW3D : case SDRATTR_SHADOWPERSP : { rIndent=1; if (ImpGetItem(*pSet,SDRATTR_SHADOW,pItem)) { bool bShadow=static_cast(pItem)->GetValue(); if (!bShadow) return true; } } break; case SDRATTR_CAPTIONANGLE: { rIndent=1; if (ImpGetItem(*pSet,SDRATTR_CAPTIONFIXEDANGLE,pItem)) { bool bFixed=static_cast(pItem)->GetValue(); if (!bFixed) return true; } } break; case SDRATTR_CAPTIONESCREL: case SDRATTR_CAPTIONESCABS: { rIndent=1; if (ImpGetItem(*pSet,SDRATTR_CAPTIONESCISREL,pItem)) { bool bRel=static_cast(pItem)->GetValue(); if (bRel && nWhich==SDRATTR_CAPTIONESCABS) return true; if (!bRel && nWhich==SDRATTR_CAPTIONESCREL) return true; } } break; case SDRATTR_CAPTIONLINELEN: { rIndent=1; if (ImpGetItem(*pSet,SDRATTR_CAPTIONFITLINELEN,pItem)) { bool bFit=static_cast(pItem)->GetValue(); if (bFit) return true; } } break; case SDRATTR_TEXT_MINFRAMEHEIGHT: case SDRATTR_TEXT_MAXFRAMEHEIGHT: { rIndent=1; if (ImpGetItem(*pSet,SDRATTR_TEXT_AUTOGROWHEIGHT,pItem)) { bool bAutoGrow=static_cast(pItem)->GetValue(); if (!bAutoGrow) return true; } } break; case SDRATTR_TEXT_MINFRAMEWIDTH: case SDRATTR_TEXT_MAXFRAMEWIDTH: { rIndent=1; if (ImpGetItem(*pSet,SDRATTR_TEXT_AUTOGROWWIDTH,pItem)) { bool bAutoGrow=static_cast(pItem)->GetValue(); if (!bAutoGrow) return true; } } break; case SDRATTR_TEXT_VERTADJUST: case SDRATTR_TEXT_HORZADJUST: { if (ImpGetItem(*pSet,SDRATTR_TEXT_FITTOSIZE,pItem)) { SdrFitToSizeType eFit=static_cast(pItem)->GetValue(); if (eFit!=SdrFitToSizeType::NONE) return true; } } break; case SDRATTR_TEXT_ANIDIRECTION : case SDRATTR_TEXT_ANISTARTINSIDE: case SDRATTR_TEXT_ANISTOPINSIDE : case SDRATTR_TEXT_ANICOUNT : case SDRATTR_TEXT_ANIDELAY : case SDRATTR_TEXT_ANIAMOUNT : { rIndent=1; if (ImpGetItem(*pSet,SDRATTR_TEXT_ANIKIND,pItem)) { SdrTextAniKind eAniKind=static_cast(pItem)->GetValue(); if (eAniKind==SdrTextAniKind::NONE) return true; if (eAniKind==SdrTextAniKind::Blink && (nWhich==SDRATTR_TEXT_ANIDIRECTION || nWhich==SDRATTR_TEXT_ANIAMOUNT)) return true; if (eAniKind==SdrTextAniKind::Slide && (nWhich==SDRATTR_TEXT_ANISTARTINSIDE || nWhich==SDRATTR_TEXT_ANISTOPINSIDE)) return true; } } break; case SDRATTR_EDGELINEDELTAANZ: return true; case SDRATTR_EDGELINE1DELTA: case SDRATTR_EDGELINE2DELTA: case SDRATTR_EDGELINE3DELTA: { if (ImpGetItem(*pSet,SDRATTR_EDGEKIND,pItem)) { SdrEdgeKind eKind=static_cast(pItem)->GetValue(); if (eKind==SdrEdgeKind::ThreeLines) { return nWhich>SDRATTR_EDGELINE2DELTA; } if (eKind!=SdrEdgeKind::OrthoLines && eKind!=SdrEdgeKind::Bezier) return true; } if (ImpGetItem(*pSet,SDRATTR_EDGELINEDELTAANZ,pItem)) { sal_uInt16 nCount=static_cast(pItem)->GetValue(); if (nCount==0) return true; if (nCount==1 && nWhich>SDRATTR_EDGELINE1DELTA) return true; if (nCount==2 && nWhich>SDRATTR_EDGELINE2DELTA) return true; } } break; case SDRATTR_CIRCSTARTANGLE: case SDRATTR_CIRCENDANGLE : { rIndent=1; if (ImpGetItem(*pSet,SDRATTR_CIRCKIND,pItem)) { SdrCircKind eKind=static_cast(pItem)->GetValue(); if (eKind==SDRCIRC_FULL) return true; } } break; } // switch return bRet; } sal_uInt16 ImpSortWhich(sal_uInt16 nWhich) { switch (nWhich) { // Line case XATTR_LINESTART : nWhich=XATTR_LINETRANSPARENCE ; break; case XATTR_LINEEND : nWhich=XATTR_LINESTARTWIDTH ; break; case XATTR_LINESTARTWIDTH : nWhich=XATTR_LINESTART ; break; case XATTR_LINEENDWIDTH : nWhich=XATTR_LINESTARTCENTER ; break; case XATTR_LINESTARTCENTER : nWhich=XATTR_LINEENDWIDTH ; break; case XATTR_LINEENDCENTER : nWhich=XATTR_LINEEND ; break; case XATTR_LINETRANSPARENCE : nWhich=XATTR_LINEENDCENTER ; break; // Fill case XATTR_FILLBMP_POS : nWhich=XATTR_FILLBMP_STRETCH ; break; case XATTR_FILLBMP_SIZEX : nWhich=XATTR_FILLBMP_POS ; break; case XATTR_FILLBMP_SIZEY : nWhich=XATTR_FILLBMP_SIZEX ; break; case XATTR_FILLBMP_SIZELOG : nWhich=XATTR_FILLBMP_SIZEY ; break; case XATTR_FILLBMP_TILEOFFSETX : nWhich=XATTR_FILLBMP_SIZELOG ; break; case XATTR_FILLBMP_TILEOFFSETY : nWhich=XATTR_FILLBMP_TILEOFFSETX ; break; case XATTR_FILLBMP_STRETCH : nWhich=XATTR_FILLBMP_TILEOFFSETY ; break; // Fontwork case XATTR_FORMTXTSHADOW : nWhich=XATTR_FORMTXTSHDWXVAL ; break; case XATTR_FORMTXTSHDWCOLOR : nWhich=XATTR_FORMTXTHIDEFORM ; break; case XATTR_FORMTXTSHDWXVAL : nWhich=XATTR_FORMTXTSHADOW ; break; case XATTR_FORMTXTSHDWYVAL : nWhich=XATTR_FORMTXTSHDWCOLOR ; break; case XATTR_FORMTXTHIDEFORM : nWhich=XATTR_FORMTXTSHDWYVAL ; break; // Misc case SDRATTR_TEXT_MINFRAMEHEIGHT: nWhich=SDRATTR_TEXT_FITTOSIZE ; break; case SDRATTR_TEXT_AUTOGROWHEIGHT: nWhich=SDRATTR_TEXT_LEFTDIST ; break; case SDRATTR_TEXT_FITTOSIZE : nWhich=SDRATTR_TEXT_RIGHTDIST ; break; case SDRATTR_TEXT_LEFTDIST : nWhich=SDRATTR_TEXT_UPPERDIST ; break; case SDRATTR_TEXT_RIGHTDIST : nWhich=SDRATTR_TEXT_LOWERDIST ; break; case SDRATTR_TEXT_UPPERDIST : nWhich=SDRATTR_TEXT_AUTOGROWWIDTH ; break; case SDRATTR_TEXT_LOWERDIST : nWhich=SDRATTR_TEXT_MINFRAMEWIDTH ; break; case SDRATTR_TEXT_VERTADJUST : nWhich=SDRATTR_TEXT_MAXFRAMEWIDTH ; break; case SDRATTR_TEXT_MAXFRAMEHEIGHT: nWhich=SDRATTR_TEXT_AUTOGROWHEIGHT; break; case SDRATTR_TEXT_MINFRAMEWIDTH : nWhich=SDRATTR_TEXT_MINFRAMEHEIGHT; break; case SDRATTR_TEXT_MAXFRAMEWIDTH : nWhich=SDRATTR_TEXT_MAXFRAMEHEIGHT; break; case SDRATTR_TEXT_AUTOGROWWIDTH : nWhich=SDRATTR_TEXT_HORZADJUST ; break; case SDRATTR_TEXT_HORZADJUST : nWhich=SDRATTR_TEXT_VERTADJUST ; break; } // switch return nWhich; } #define INSERTCOMMENT(nStartId,nEndId,aStr) \ { if (nWhich0=nStartId && nWhich<=nEndId) aCommentStr=aStr; } void SdrItemBrowserControl::SetAttributes(const SfxItemSet* pSet, const SfxItemSet* p2ndSet) { SetMode(MYBROWSEMODE & BrowserMode(~BrowserMode::KEEPHIGHLIGHT)); if (pSet!=nullptr) { sal_uInt16 nEntryNum=0; SfxWhichIter aIter(*pSet); const SfxItemPool* pPool=pSet->GetPool(); sal_uInt16 nWhich0=0; sal_uInt16 nWhich=aIter.FirstWhich(); while (nWhich!=0) { // Now sort this a little bit differently. // Only works as long as there are no InvalidItems, i. e. no gaps // at this position in the Set. if (!bDontSortItems) nWhich=ImpSortWhich(nWhich); SfxItemState eState=pSet->GetItemState(nWhich); if (p2ndSet!=nullptr) { SfxItemState e2ndState=p2ndSet->GetItemState(nWhich); if (eState==SfxItemState::DEFAULT) eState=SfxItemState::DISABLED; else if (e2ndState==SfxItemState::DEFAULT) eState=SfxItemState::DEFAULT; } if (eState!=SfxItemState::DISABLED) { const SfxPoolItem& rItem=pSet->Get(nWhich); sal_uInt16 nIndent=0; if (dynamic_cast(&rItem) == nullptr && dynamic_cast(&rItem) == nullptr && (!IsItemIneffective(nWhich,pSet,nIndent) || bDontHideIneffectiveItems)) { OUString aCommentStr; INSERTCOMMENT(XATTR_LINE_FIRST,XATTR_LINE_LAST,"L I N E"); INSERTCOMMENT(XATTR_FILL_FIRST,XATTR_FILL_LAST,"F I L L"); INSERTCOMMENT(XATTR_TEXT_FIRST,XATTR_TEXT_LAST,"F O N T W O R K"); INSERTCOMMENT(SDRATTR_SHADOW_FIRST,SDRATTR_SHADOW_LAST,"S H A D O W"); INSERTCOMMENT(SDRATTR_CAPTION_FIRST,SDRATTR_CAPTION_LAST,"C A P T I O N"); INSERTCOMMENT(SDRATTR_MISC_FIRST,SDRATTR_MISC_LAST,"M I S C E L L A N E O U S"); INSERTCOMMENT(SDRATTR_EDGE_FIRST,SDRATTR_EDGE_LAST,"C O N N E C T O R"); INSERTCOMMENT(SDRATTR_MEASURE_FIRST,SDRATTR_MEASURE_LAST,"D I M E N S I O N"); INSERTCOMMENT(SDRATTR_CIRC_FIRST,SDRATTR_CIRC_LAST,"C I R C U L A R"); INSERTCOMMENT(SDRATTR_NOTPERSIST_FIRST,SDRATTR_NOTPERSIST_LAST,"N O T P E R S I S T"); INSERTCOMMENT(SDRATTR_MOVEX,SDRATTR_VERTSHEARONE,"Transformation of all object individually"); INSERTCOMMENT(SDRATTR_RESIZEXALL,SDRATTR_VERTSHEARALL,"Transformation of all objects together"); INSERTCOMMENT(SDRATTR_TRANSFORMREF1X,SDRATTR_TRANSFORMREF2Y,"V I E W R E F E R E N C E P O I N T S"); INSERTCOMMENT(SDRATTR_GRAF_FIRST,SDRATTR_GRAF_LAST,"G R A P H I C"); INSERTCOMMENT(EE_ITEMS_START,EE_ITEMS_END,"E D I T E N G I N E"); INSERTCOMMENT(EE_ITEMS_END+1,EE_ITEMS_END+1,"... by Joe Merten, JME Engineering Berlin ..."); if (!aCommentStr.isEmpty()) { ImpItemListRow aEntry; aEntry.bComment = true; aEntry.aName=aCommentStr; ImpSetEntry(aEntry,nEntryNum); nEntryNum++; } nWhich0=nWhich; ImpItemListRow aEntry; SdrItemPool::TakeItemName(nWhich, aEntry.aName); nIndent*=2; while(nIndent > 0) { aEntry.aName = " " + aEntry.aName; nIndent--; } aEntry.eState=eState; aEntry.nWhichId=nWhich; if (!IsInvalidItem(&rItem)) { aEntry.pType=&typeid(rItem); aEntry.nMax=0x7FFFFFFF; aEntry.nMin=-aEntry.nMax; aEntry.nVal=-4711; if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::BYTE; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::INT16; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::UINT16; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::INT32; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::UINT32; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::ENUM; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::BOOL; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::FLAG; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::XCOLOR; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::STRING; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::POINT; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::RECT; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::RANGE; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::FRACTION; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::COLOR; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::FONT; else if (dynamic_cast(&rItem) != nullptr)aEntry.eItemType=ItemType::FONTHEIGHT; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::FONTWIDTH; else if (dynamic_cast(&rItem) != nullptr) aEntry.eItemType=ItemType::FIELD; switch (aEntry.eItemType) { case ItemType::BYTE : aEntry.bIsNum = true; aEntry.nVal=static_cast(rItem).GetValue(); aEntry.nMin=0; aEntry.nMax=255; break; case ItemType::INT16 : aEntry.bIsNum = true; aEntry.nVal=static_cast(rItem).GetValue(); aEntry.nMin=-32767; aEntry.nMax=32767; break; case ItemType::UINT16 : aEntry.bIsNum = true; aEntry.nVal=static_cast(rItem).GetValue(); aEntry.nMin=0; aEntry.nMax=65535; break; case ItemType::INT32 : aEntry.bIsNum = true; aEntry.nVal=static_cast(rItem).GetValue(); break; case ItemType::UINT32 : aEntry.bIsNum = true; aEntry.nVal=static_cast(rItem).GetValue(); aEntry.nMin=0; /*aEntry.nMax=0xFF...*/;break; case ItemType::ENUM : aEntry.bCanNum = true; aEntry.nVal=static_cast(rItem).GetEnumValue(); aEntry.nMin=0; aEntry.nMax=static_cast(rItem).GetValueCount()-1; break; case ItemType::BOOL : aEntry.bCanNum = true; aEntry.nVal=sal_Int32(static_cast(rItem).GetValue()); aEntry.nMin=0; aEntry.nMax=1; break; case ItemType::FLAG : aEntry.bCanNum = true; aEntry.nVal=static_cast(rItem).GetValue(); aEntry.nMin=0; aEntry.nMax=0xFFFF; break; case ItemType::FONTHEIGHT: aEntry.bCanNum = true; aEntry.nVal=static_cast(rItem).GetHeight(); aEntry.nMin=0; break; case ItemType::FONTWIDTH : aEntry.bCanNum = true; aEntry.nVal=static_cast(rItem).GetValue(); aEntry.nMin=0; aEntry.nMax=0xFFFF;break; default: break; } // switch if (aEntry.bIsNum) aEntry.bCanNum = true; rItem.GetPresentation(SfxItemPresentation::Nameless, pPool->GetMetric(nWhich), MapUnit::MapMM, aEntry.aValue); if (aEntry.bCanNum) { aEntry.aValue = OUString::number(aEntry.nVal) + ": " + aEntry.aValue; } } else { aEntry.aValue = "InvalidItem"; } ImpSetEntry(aEntry,nEntryNum); nEntryNum++; } } nWhich=aIter.NextWhich(); } // while if (aList.size()>nEntryNum) { // maybe still too many entries size_t const nTooMuch = aList.size() - nEntryNum; for (size_t n = nEntryNum; n < aList.size(); ++n) { delete aList[n]; } aList.erase(aList.begin() + nEntryNum, aList.end()); RowRemoved(nEntryNum,nTooMuch); } } else { Clear(); // if pSet==NULL } ImpRestoreWhich(); SetMode(MYBROWSEMODE); } SdrItemBrowser::SdrItemBrowser(SdrView& rView): FloatingWindow(ImpGetViewWin(rView), WB_STDDOCKWIN|WB_3DLOOK|WB_CLOSEABLE|WB_SIZEMOVE), aBrowse(VclPtr::Create(this)), aIdle("svx svdraw SdrItemBrowser"), pView(&rView), bDirty(false) { SetOutputSizePixel(aBrowse->GetSizePixel()); SetText("Joe's ItemBrowser"); aBrowse->Show(); aIdle.SetInvokeHandler(LINK(this,SdrItemBrowser,IdleHdl)); GetBrowserControl()->SetEntryChangedHdl(LINK(this,SdrItemBrowser,ChangedHdl)); GetBrowserControl()->SetSetDirtyHdl(LINK(this,SdrItemBrowser,SetDirtyHdl)); SetDirty(); } SdrItemBrowser::~SdrItemBrowser() { disposeOnce(); } void SdrItemBrowser::dispose() { aBrowse.disposeAndClear(); FloatingWindow::dispose(); } void SdrItemBrowser::Resize() { aBrowse->SetSizePixel(GetOutputSizePixel()); } void SdrItemBrowser::GetFocus() { aBrowse->GrabFocus(); } vcl::Window* SdrItemBrowser::ImpGetViewWin(SdrView& rView) { const sal_uInt32 nWinCount(rView.PaintWindowCount()); for(sal_uInt32 a(0L); a < nWinCount; a++) { SdrPaintWindow* pCandidate = rView.GetPaintWindow(a); if(OUTDEV_WINDOW == pCandidate->GetOutputDevice().GetOutDevType()) { return static_cast(&pCandidate->GetOutputDevice()); } } return nullptr; } void SdrItemBrowser::ForceParent() { vcl::Window* pWin=ImpGetViewWin(*pView); if (pWin!=nullptr) SetParent(pWin); } void SdrItemBrowser::SetDirty() { if (!bDirty) { bDirty = true; aIdle.SetPriority(TaskPriority::HIGH); aIdle.Start(); } } void SdrItemBrowser::Undirty() { aIdle.Stop(); bDirty = false; SfxItemSet aSet(pView->GetModel()->GetItemPool()); pView->GetAttributes(aSet); if(pView->AreObjectsMarked()) { SfxItemSet a2ndSet(pView->GetModel()->GetItemPool()); pView->GetAttributes(a2ndSet, true); SetAttributes(&aSet,&a2ndSet); } else { SetAttributes(&aSet, nullptr); } } IMPL_LINK_NOARG(SdrItemBrowser, IdleHdl, Timer *, void) { Undirty(); } IMPL_LINK(SdrItemBrowser, ChangedHdl, SdrItemBrowserControl&, rBrowse, void) { const ImpItemListRow* pEntry = rBrowse.GetAktChangeEntry(); if (pEntry!=nullptr) { SfxItemSet aSet(pView->GetModel()->GetItemPool()); pView->GetAttributes(aSet); SfxItemSet aNewSet(*aSet.GetPool(),pEntry->nWhichId,pEntry->nWhichId); OUString aNewText(rBrowse.GetNewEntryValue()); bool bDel( aNewText == "del" || aNewText == "Del" || aNewText == "DEL" || aNewText == "default" || aNewText == "Default" || aNewText == "DEFAULT" ); if (!bDel) { SfxPoolItem* pNewItem=aSet.Get(pEntry->nWhichId).Clone(); sal_Int32 nLongVal = aNewText.toInt32(); if (pEntry->bCanNum) { if (nLongVal>pEntry->nMax) nLongVal=pEntry->nMax; if (nLongValnMin) nLongVal=pEntry->nMin; } bool bPairX = true; bool bPairY = false; sal_uInt16 nSepLen=1; long nLongX = aNewText.toInt32(); long nLongY=0; sal_Int32 nPos = aNewText.indexOf('/'); if (nPos==-1) nPos=aNewText.indexOf(':'); if (nPos==-1) nPos=aNewText.indexOf(' '); if (nPos==-1) { nPos=aNewText.indexOf(".."); if (nPos!=-1) nSepLen=2; } if (nPos!=01) { bPairX=nPos>0; OUString s(aNewText.copy(nPos+nSepLen)); bPairY = !aNewText.isEmpty(); nLongY = s.toInt32(); } switch (pEntry->eItemType) { case ItemType::BYTE : static_cast(pNewItem)->SetValue((sal_uInt8 )nLongVal); break; case ItemType::INT16 : static_cast(pNewItem)->SetValue((sal_Int16 )nLongVal); break; case ItemType::UINT16: static_cast(pNewItem)->SetValue((sal_uInt16)nLongVal); break; case ItemType::INT32: { if(dynamic_cast(pNewItem) != nullptr) { aNewText = aNewText.replace(',', '.'); double nVal = aNewText.toFloat(); nLongVal = static_cast(nVal * 100.0 + 0.5); } static_cast(pNewItem)->SetValue(nLongVal); } break; case ItemType::UINT32: static_cast(pNewItem)->SetValue(aNewText.toInt32()); break; case ItemType::ENUM : static_cast(pNewItem)->SetEnumValue((sal_uInt16)nLongVal); break; case ItemType::BOOL: { aNewText = aNewText.toAsciiUpperCase(); if (aNewText == "TRUE") nLongVal=1; if (aNewText == "JA") nLongVal=1; if (aNewText == "AN") nLongVal=1; if (aNewText == "EIN") nLongVal=1; if (aNewText == "ON") nLongVal=1; if (aNewText == "YES") nLongVal=1; static_cast(pNewItem)->SetValue(nLongVal == 1); } break; case ItemType::FLAG : static_cast(pNewItem)->SetValue((sal_uInt16)nLongVal); break; case ItemType::STRING: static_cast(pNewItem)->SetValue(aNewText); break; case ItemType::POINT : static_cast(pNewItem)->SetValue(Point(nLongX,nLongY)); break; case ItemType::RECT : break; case ItemType::RANGE : { static_cast(pNewItem)->From()=(sal_uInt16)nLongX; static_cast(pNewItem)->From()=(sal_uInt16)nLongY; } break; case ItemType::FRACTION: { if (!bPairX) nLongX=1; if (!bPairY) nLongY=1; static_cast(pNewItem)->SetValue(Fraction(nLongX,nLongY)); } break; case ItemType::XCOLOR: break; case ItemType::COLOR: break; case ItemType::FONT: { static_cast(pNewItem)->SetFamily( FAMILY_DONTKNOW ); static_cast(pNewItem)->SetFamilyName(aNewText); static_cast(pNewItem)->SetStyleName(OUString()); } break; case ItemType::FONTHEIGHT: { sal_uInt32 nHgt=0; sal_uInt16 nProp=100; if (aNewText.indexOf('%') != -1) { nProp=static_cast(nLongVal); } else { nHgt=static_cast(nLongVal); } static_cast(pNewItem)->SetHeight(nHgt,nProp); } break; case ItemType::FONTWIDTH: { sal_uInt16 nProp=100; if (aNewText.indexOf('%') != -1) { nProp=(sal_uInt16)nLongVal; } static_cast(pNewItem)->SetValue(nProp); } break; case ItemType::FIELD: break; default: break; } // switch aNewSet.Put(*pNewItem); delete pNewItem; } pView->SetAttributes(aNewSet,bDel); } } IMPL_LINK_NOARG(SdrItemBrowser, SetDirtyHdl, SdrItemBrowserControl&, void) { SetDirty(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ d class='none' style='width: 100.0%;'/> -rw-r--r--source/ta/desktop/source/deployment/registry/sfwk.po2
-rw-r--r--source/ta/desktop/source/deployment/unopkg.po6
-rw-r--r--source/ta/desktop/uiconfig/ui.po13
-rw-r--r--source/ta/dictionaries/af_ZA.po2
-rw-r--r--source/ta/dictionaries/an_ES.po2
-rw-r--r--source/ta/dictionaries/ar.po2
-rw-r--r--source/ta/dictionaries/be_BY.po2
-rw-r--r--source/ta/dictionaries/bg_BG.po2
-rw-r--r--source/ta/dictionaries/bn_BD.po2
-rw-r--r--source/ta/dictionaries/br_FR.po2
-rw-r--r--source/ta/dictionaries/bs_BA.po2
-rw-r--r--source/ta/dictionaries/ca.po2
-rw-r--r--source/ta/dictionaries/cs_CZ.po2
-rw-r--r--source/ta/dictionaries/da_DK.po2
-rw-r--r--source/ta/dictionaries/de.po2
-rw-r--r--source/ta/dictionaries/el_GR.po2
-rw-r--r--source/ta/dictionaries/en.po2
-rw-r--r--source/ta/dictionaries/en/dialog.po2
-rw-r--r--source/ta/dictionaries/en/dialog/registry/data/org/openoffice/Office.po10
-rw-r--r--source/ta/dictionaries/es.po2
-rw-r--r--source/ta/dictionaries/et_EE.po2
-rw-r--r--source/ta/dictionaries/fr_FR.po2
-rw-r--r--source/ta/dictionaries/gd_GB.po2
-rw-r--r--source/ta/dictionaries/gl.po2
-rw-r--r--source/ta/dictionaries/gu_IN.po2
-rw-r--r--source/ta/dictionaries/he_IL.po2
-rw-r--r--source/ta/dictionaries/hi_IN.po2
-rw-r--r--source/ta/dictionaries/hr_HR.po2
-rw-r--r--source/ta/dictionaries/hu_HU.po2
-rw-r--r--source/ta/dictionaries/hu_HU/dialog.po2
-rw-r--r--source/ta/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po10
-rw-r--r--source/ta/dictionaries/it_IT.po2
-rw-r--r--source/ta/dictionaries/ku_TR.po2
-rw-r--r--source/ta/dictionaries/lt_LT.po2
-rw-r--r--source/ta/dictionaries/lv_LV.po2
-rw-r--r--source/ta/dictionaries/ne_NP.po2
-rw-r--r--source/ta/dictionaries/nl_NL.po2
-rw-r--r--source/ta/dictionaries/no.po8
-rw-r--r--source/ta/dictionaries/oc_FR.po2
-rw-r--r--source/ta/dictionaries/pl_PL.po2
-rw-r--r--source/ta/dictionaries/pt_BR.po4
-rw-r--r--source/ta/dictionaries/pt_BR/dialog.po2
-rw-r--r--source/ta/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po10
-rw-r--r--source/ta/dictionaries/pt_PT.po2
-rw-r--r--source/ta/dictionaries/ro.po2
-rw-r--r--source/ta/dictionaries/ru_RU.po2
-rw-r--r--source/ta/dictionaries/ru_RU/dialog.po2
-rw-r--r--source/ta/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po10
-rw-r--r--source/ta/dictionaries/si_LK.po2
-rw-r--r--source/ta/dictionaries/sk_SK.po2
-rw-r--r--source/ta/dictionaries/sl_SI.po2
-rw-r--r--source/ta/dictionaries/sr.po2
-rw-r--r--source/ta/dictionaries/sv_SE.po2
-rw-r--r--source/ta/dictionaries/sw_TZ.po2
-rw-r--r--source/ta/dictionaries/te_IN.po2
-rw-r--r--source/ta/dictionaries/th_TH.po2
-rw-r--r--source/ta/dictionaries/uk_UA.po2
-rw-r--r--source/ta/dictionaries/vi.po2
-rw-r--r--source/ta/dictionaries/zu_ZA.po2
-rw-r--r--source/ta/editeng/source/accessibility.po2
-rw-r--r--source/ta/editeng/source/editeng.po12
-rw-r--r--source/ta/editeng/source/items.po16
-rw-r--r--source/ta/editeng/source/misc.po2
-rw-r--r--source/ta/editeng/source/outliner.po2
-rw-r--r--source/ta/extensions/source/abpilot.po4
-rw-r--r--source/ta/extensions/source/bibliography.po192
-rw-r--r--source/ta/extensions/source/dbpilots.po348
-rw-r--r--source/ta/extensions/source/propctrlr.po548
-rw-r--r--source/ta/extensions/source/scanner.po92
-rw-r--r--source/ta/extensions/source/update/check.po6
-rw-r--r--source/ta/extensions/source/update/check/org/openoffice/Office.po2
-rw-r--r--source/ta/extensions/uiconfig.po136
-rw-r--r--source/ta/extras/source/gallery/share.po103
-rw-r--r--source/ta/filter/source/config/fragments/filters.po688
-rw-r--r--source/ta/filter/source/config/fragments/internalgraphicfilters.po432
-rw-r--r--source/ta/filter/source/config/fragments/types.po246
-rw-r--r--source/ta/filter/source/flash.po2
-rw-r--r--source/ta/filter/source/graphicfilter/eps.po2
-rw-r--r--source/ta/filter/source/pdf.po12
-rw-r--r--source/ta/filter/source/t602.po2
-rw-r--r--source/ta/filter/source/xsltdialog.po330
-rw-r--r--source/ta/filter/uiconfig/ui.po128
-rw-r--r--source/ta/forms/source/resource.po2
-rw-r--r--source/ta/formula/source/core/resource.po17
-rw-r--r--source/ta/formula/source/ui/dlg.po118
-rw-r--r--source/ta/fpicker/source/office.po40
-rw-r--r--source/ta/framework/source/classes.po22
-rw-r--r--source/ta/framework/source/services.po2
-rw-r--r--source/ta/instsetoo_native/inc_openoffice/windows/msi_languages.po1232
-rw-r--r--source/ta/librelogo/source/pythonpath.po10
-rw-r--r--source/ta/mysqlc/source.po2
-rw-r--r--source/ta/mysqlc/source/registry/data/org/openoffice/Office/DataAccess.po2
-rw-r--r--source/ta/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po10
-rw-r--r--source/ta/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver.po2
-rw-r--r--source/ta/nlpsolver/src/locale.po290
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office.po3206
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po26458
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/TypeDetection.po51
-rw-r--r--source/ta/padmin/source.po826
-rw-r--r--source/ta/padmin/uiconfig/ui.po267
-rw-r--r--source/ta/readlicense_oo/docs.po64
-rw-r--r--source/ta/reportbuilder/java/org/libreoffice/report/function/metadata.po63
-rw-r--r--source/ta/reportdesign/source/core/resource.po2
-rw-r--r--source/ta/reportdesign/source/ui/dlg.po564
-rw-r--r--source/ta/reportdesign/source/ui/inspection.po6
-rw-r--r--source/ta/reportdesign/source/ui/report.po2
-rw-r--r--source/ta/sc/source/core/src.po2
-rw-r--r--source/ta/sc/source/ui/cctrl.po2
-rw-r--r--source/ta/sc/source/ui/dbgui.po1757
-rw-r--r--source/ta/sc/source/ui/docshell.po2
-rw-r--r--source/ta/sc/source/ui/drawfunc.po4
-rw-r--r--source/ta/sc/source/ui/formdlg.po11
-rw-r--r--source/ta/sc/source/ui/miscdlgs.po654
-rw-r--r--source/ta/sc/source/ui/navipi.po29
-rw-r--r--source/ta/sc/source/ui/optdlg.po2
-rw-r--r--source/ta/sc/source/ui/pagedlg.po527
-rw-r--r--source/ta/sc/source/ui/sidebar.po805
-rw-r--r--source/ta/sc/source/ui/src.po13365
-rw-r--r--source/ta/sc/source/ui/styleui.po4
-rw-r--r--source/ta/sc/uiconfig/scalc/ui.po2669
-rw-r--r--source/ta/scaddins/source/analysis.po1918
-rw-r--r--source/ta/scaddins/source/datefunc.po4
-rw-r--r--source/ta/scaddins/source/pricing.po30
-rw-r--r--source/ta/sccomp/source/solver.po2
-rw-r--r--source/ta/scp2/source/accessories.po2196
-rw-r--r--source/ta/scp2/source/activex.po2
-rw-r--r--source/ta/scp2/source/base.po54
-rw-r--r--source/ta/scp2/source/calc.po34
-rw-r--r--source/ta/scp2/source/draw.po98
-rw-r--r--source/ta/scp2/source/extensions.po224
-rw-r--r--source/ta/scp2/source/gnome.po2
-rw-r--r--source/ta/scp2/source/graphicfilter.po4
-rw-r--r--source/ta/scp2/source/impress.po34
-rw-r--r--source/ta/scp2/source/kde.po2
-rw-r--r--source/ta/scp2/source/math.po50
-rw-r--r--source/ta/scp2/source/onlineupdate.po2
-rw-r--r--source/ta/scp2/source/ooo.po3684
-rw-r--r--source/ta/scp2/source/python.po34
-rw-r--r--source/ta/scp2/source/quickstart.po2
-rw-r--r--source/ta/scp2/source/sdkoo.po2
-rw-r--r--source/ta/scp2/source/smoketest.po2
-rw-r--r--source/ta/scp2/source/stdlibs.po2
-rw-r--r--source/ta/scp2/source/tde.po2
-rw-r--r--source/ta/scp2/source/winexplorerext.po2
-rw-r--r--source/ta/scp2/source/writer.po50
-rw-r--r--source/ta/scp2/source/xsltfilter.po2
-rw-r--r--source/ta/sd/source/core.po24
-rw-r--r--source/ta/sd/source/filter/html.po11
-rw-r--r--source/ta/sd/source/ui/accessibility.po2
-rw-r--r--source/ta/sd/source/ui/animations.po502
-rw-r--r--source/ta/sd/source/ui/annotations.po2
-rw-r--r--source/ta/sd/source/ui/app.po3830
-rw-r--r--source/ta/sd/source/ui/dlg.po3325
-rw-r--r--source/ta/sd/source/ui/slideshow.po2
-rw-r--r--source/ta/sd/source/ui/table.po2
-rw-r--r--source/ta/sd/source/ui/view.po16
-rw-r--r--source/ta/sd/uiconfig/sdraw/ui.po272
-rw-r--r--source/ta/sd/uiconfig/simpress/ui.po452
-rw-r--r--source/ta/sdext/source/minimizer.po2
-rw-r--r--source/ta/sdext/source/minimizer/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ta/sdext/source/minimizer/registry/data/org/openoffice/Office/extension.po4
-rw-r--r--source/ta/setup_native/source/mac.po2
-rw-r--r--source/ta/sfx2/source/appl.po850
-rw-r--r--source/ta/sfx2/source/bastyp.po2
-rw-r--r--source/ta/sfx2/source/control.po2
-rw-r--r--source/ta/sfx2/source/dialog.po1758
-rw-r--r--source/ta/sfx2/source/doc.po1274
-rw-r--r--source/ta/sfx2/source/menu.po2
-rw-r--r--source/ta/sfx2/source/sidebar.po57
-rw-r--r--source/ta/sfx2/source/view.po10
-rw-r--r--source/ta/sfx2/uiconfig/ui.po733
-rw-r--r--source/ta/shell/source/win32/shlxthandler/res.po2
-rw-r--r--source/ta/starmath/source.po1510
-rw-r--r--source/ta/starmath/uiconfig/smath/ui.po2
-rw-r--r--source/ta/svl/source/misc.po2
-rw-r--r--source/ta/svtools/source/contnr.po368
-rw-r--r--source/ta/svtools/source/control.po306
-rw-r--r--source/ta/svtools/source/dialogs.po1183
-rw-r--r--source/ta/svtools/source/java.po20
-rw-r--r--source/ta/svtools/source/misc.po535
-rw-r--r--source/ta/svtools/source/toolpanel.po2
-rw-r--r--source/ta/svtools/uiconfig/ui.po237
-rw-r--r--source/ta/svx/inc.po2
-rw-r--r--source/ta/svx/source/accessibility.po2
-rw-r--r--source/ta/svx/source/core.po2
-rw-r--r--source/ta/svx/source/dialog.po6746
-rw-r--r--source/ta/svx/source/engine3d.po392
-rw-r--r--source/ta/svx/source/fmcomp.po2
-rw-r--r--source/ta/svx/source/form.po2256
-rw-r--r--source/ta/svx/source/gallery2.po52
-rw-r--r--source/ta/svx/source/items.po502
-rw-r--r--source/ta/svx/source/sidebar.po24
-rw-r--r--source/ta/svx/source/sidebar/area.po302
-rw-r--r--source/ta/svx/source/sidebar/graphic.po123
-rw-r--r--source/ta/svx/source/sidebar/line.po285
-rw-r--r--source/ta/svx/source/sidebar/paragraph.po753
-rw-r--r--source/ta/svx/source/sidebar/possize.po177
-rw-r--r--source/ta/svx/source/sidebar/text.po330
-rw-r--r--source/ta/svx/source/src.po20
-rw-r--r--source/ta/svx/source/stbctrls.po11
-rw-r--r--source/ta/svx/source/svdraw.po26
-rw-r--r--source/ta/svx/source/table.po2
-rw-r--r--source/ta/svx/source/tbxctrls.po452
-rw-r--r--source/ta/svx/source/toolbars.po82
-rw-r--r--source/ta/svx/source/unodialogs/textconversiondlgs.po146
-rw-r--r--source/ta/svx/uiconfig/ui.po904
-rw-r--r--source/ta/sw/source/core/layout.po2
-rw-r--r--source/ta/sw/source/core/undo.po8
-rw-r--r--source/ta/sw/source/core/unocore.po2
-rw-r--r--source/ta/sw/source/ui/app.po2888
-rw-r--r--source/ta/sw/source/ui/chrdlg.po814
-rw-r--r--source/ta/sw/source/ui/config.po1602
-rw-r--r--source/ta/sw/source/ui/dbui.po1821
-rw-r--r--source/ta/sw/source/ui/dialog.po277
-rw-r--r--source/ta/sw/source/ui/dochdl.po36
-rw-r--r--source/ta/sw/source/ui/docvw.po114
-rw-r--r--source/ta/sw/source/ui/envelp.po1138
-rw-r--r--source/ta/sw/source/ui/fldui.po1147
-rw-r--r--source/ta/sw/source/ui/fmtui.po4
-rw-r--r--source/ta/sw/source/ui/frmdlg.po542
-rw-r--r--source/ta/sw/source/ui/globdoc.po2
-rw-r--r--source/ta/sw/source/ui/index.po131
-rw-r--r--source/ta/sw/source/ui/lingu.po14
-rw-r--r--source/ta/sw/source/ui/misc.po1309
-rw-r--r--source/ta/sw/source/ui/ribbar.po630
-rw-r--r--source/ta/sw/source/ui/shells.po2
-rw-r--r--source/ta/sw/source/ui/sidebar.po446
-rw-r--r--source/ta/sw/source/ui/smartmenu.po2
-rw-r--r--source/ta/sw/source/ui/table.po615
-rw-r--r--source/ta/sw/source/ui/uiview.po52
-rw-r--r--source/ta/sw/source/ui/utlui.po2136
-rw-r--r--source/ta/sw/source/ui/web.po2
-rw-r--r--source/ta/sw/source/ui/wrtsh.po2
-rw-r--r--source/ta/sw/uiconfig/swriter/ui.po5124
-rw-r--r--source/ta/swext/mediawiki/help.po278
-rw-r--r--source/ta/swext/mediawiki/src.po2
-rw-r--r--source/ta/swext/mediawiki/src/registry/data/org/openoffice/Office.po2
-rw-r--r--source/ta/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po2
-rw-r--r--source/ta/sysui/desktop/share.po258
-rw-r--r--source/ta/tubes/uiconfig/ui.po20
-rw-r--r--source/ta/uui/source.po890
-rw-r--r--source/ta/uui/uiconfig/ui.po78
-rw-r--r--source/ta/vcl/qa/cppunit/builder.po2
-rw-r--r--source/ta/vcl/source/edit.po2
-rw-r--r--source/ta/vcl/source/src.po1222
-rw-r--r--source/ta/vcl/uiconfig/ui.po23
-rw-r--r--source/ta/wizards/source/euro.po2
-rw-r--r--source/ta/wizards/source/formwizard.po32
-rw-r--r--source/ta/wizards/source/importwizard.po146
-rw-r--r--source/ta/wizards/source/template.po2
-rw-r--r--source/ta/xmlsecurity/source/component.po2
-rw-r--r--source/ta/xmlsecurity/source/dialogs.po551
-rw-r--r--source/ta/xmlsecurity/uiconfig/ui.po332
309 files changed, 80732 insertions, 76003 deletions