1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
|
/* -*- 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 <DrawDocShell.hxx>
#include <svx/svxids.hrc>
#include <svx/ofaitem.hxx>
#include <svl/stritem.hxx>
#include <svl/srchitem.hxx>
#include <svl/languageoptions.hxx>
#include <svtools/langtab.hxx>
#include <sfx2/request.hxx>
#include <sfx2/sfxdlg.hxx>
#include <sfx2/viewfrm.hxx>
#include <vcl/abstdlg.hxx>
#include <svx/drawitem.hxx>
#include <editeng/langitem.hxx>
#include <editeng/eeitem.hxx>
#include <editeng/outlobj.hxx>
#include <editeng/editobj.hxx>
#include <com/sun/star/i18n/TextConversionOption.hpp>
#include <sfx2/notebookbar/SfxNotebookBar.hxx>
#include <editeng/editeng.hxx>
#include <osl/diagnose.h>
#include <sdmod.hxx>
#include <drawdoc.hxx>
#include <fusearch.hxx>
#include <ViewShell.hxx>
#include <slideshow.hxx>
#include <fuhhconv.hxx>
#include <memory>
using namespace ::com::sun::star;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::uno;
namespace sd {
static void lcl_setLanguageForObj( SdrObject *pObj, LanguageType nLang, bool bLanguageNone )
{
const sal_uInt16 aLangWhichId_EE[3] =
{
EE_CHAR_LANGUAGE,
EE_CHAR_LANGUAGE_CJK,
EE_CHAR_LANGUAGE_CTL
};
if( bLanguageNone )
nLang = LANGUAGE_NONE;
if( nLang != LANGUAGE_DONTKNOW )
{
if( nLang == LANGUAGE_NONE )
{
for(sal_uInt16 n : aLangWhichId_EE)
pObj->SetMergedItem( SvxLanguageItem( nLang, n ) );
}
else
{
sal_uInt16 nLangWhichId = 0;
SvtScriptType nScriptType = SvtLanguageOptions::GetScriptTypeOfLanguage( nLang );
switch (nScriptType)
{
case SvtScriptType::LATIN : nLangWhichId = EE_CHAR_LANGUAGE; break;
case SvtScriptType::ASIAN : nLangWhichId = EE_CHAR_LANGUAGE_CJK; break;
case SvtScriptType::COMPLEX : nLangWhichId = EE_CHAR_LANGUAGE_CTL; break;
default:
OSL_FAIL("unexpected case" );
return;
}
pObj->SetMergedItem( SvxLanguageItem( nLang, nLangWhichId ) );
// Reset shape text language to default, so it inherits the shape language set above.
OutlinerParaObject* pOutliner = pObj->GetOutlinerParaObject();
if (pOutliner)
{
EditTextObject& rEditTextObject
= const_cast<EditTextObject&>(pOutliner->GetTextObject());
for (sal_uInt16 n : aLangWhichId_EE)
{
rEditTextObject.RemoveCharAttribs(n);
}
}
}
}
else // Reset to default
{
for(sal_uInt16 n : aLangWhichId_EE)
pObj->ClearMergedItem( n );
}
}
static void lcl_setLanguage( const SdDrawDocument *pDoc, std::u16string_view rLanguage, bool bLanguageNone = false )
{
LanguageType nLang = SvtLanguageTable::GetLanguageType( rLanguage );
// Do it for SdDrawDocument->SetLanguage as well?
sal_uInt16 nPageCount = pDoc->GetPageCount(); // Pick All Pages
for( sal_uInt16 nPage = 0; nPage < nPageCount; nPage++ )
{
const SdrPage *pPage = pDoc->GetPage( nPage );
const size_t nObjCount = pPage->GetObjCount();
for( size_t nObj = 0; nObj < nObjCount; ++nObj )
{
SdrObject *pObj = pPage->GetObj( nObj );
if (pObj->GetObjIdentifier() != SdrObjKind::Page)
lcl_setLanguageForObj( pObj, nLang, bLanguageNone );
}
}
}
/**
* Handles SFX-Requests
*/
void DrawDocShell::Execute( SfxRequest& rReq )
{
if(mpViewShell && SlideShow::IsRunning( mpViewShell->GetViewShellBase() ))
{
// during a running presentation no slot will be executed
return;
}
switch ( rReq.GetSlot() )
{
case SID_SEARCH_ITEM:
{
const SfxItemSet* pReqArgs = rReq.GetArgs();
if (pReqArgs)
{
const SvxSearchItem & rSearchItem = pReqArgs->Get(SID_SEARCH_ITEM);
SD_MOD()->SetSearchItem(std::unique_ptr<SvxSearchItem>(rSearchItem.Clone()));
}
rReq.Done();
}
break;
case FID_SEARCH_ON:
{
// no action needed
rReq.Done();
}
break;
case FID_SEARCH_OFF:
{
if (mpViewShell)
{
sd::View* pView = mpViewShell->GetView();
if (pView)
{
auto& rFunctionContext = pView->getSearchContext();
rtl::Reference<FuSearch>& xFuSearch(rFunctionContext.getFunctionSearch());
if (xFuSearch.is())
{
// End Search&Replace in all docshells
SfxObjectShell* pFirstShell = SfxObjectShell::GetFirst();
SfxObjectShell* pShell = pFirstShell;
while (pShell)
{
auto pDrawDocShell = dynamic_cast<DrawDocShell*>(pShell);
if (pDrawDocShell)
pDrawDocShell->CancelSearching();
pShell = SfxObjectShell::GetNext(*pShell);
if (pShell == pFirstShell)
pShell = nullptr;
}
rFunctionContext.resetSearchFunction();
Invalidate();
rReq.Done();
}
}
}
}
break;
case FID_SEARCH_NOW:
{
const SfxItemSet* pReqArgs = rReq.GetArgs();
if (pReqArgs && mpViewShell)
{
sd::View* pView = mpViewShell->GetView();
if (pView)
{
rtl::Reference<FuSearch> & xFuSearch = pView->getSearchContext().getFunctionSearch();
if (!xFuSearch.is())
{
xFuSearch = rtl::Reference<FuSearch>(
FuSearch::createPtr(mpViewShell,
mpViewShell->GetActiveWindow(),
pView, mpDoc, rReq));
pView->getSearchContext().setSearchFunction(xFuSearch);
}
if (xFuSearch.is())
{
const SvxSearchItem& rSearchItem = pReqArgs->Get(SID_SEARCH_ITEM);
SD_MOD()->SetSearchItem(std::unique_ptr<SvxSearchItem>(rSearchItem.Clone()));
xFuSearch->SearchAndReplace(&rSearchItem);
}
}
}
rReq.Done();
}
break;
case SID_CLOSEDOC:
{
ExecuteSlot(rReq, SfxObjectShell::GetStaticInterface());
}
break;
case SID_GET_COLORLIST:
{
const SvxColorListItem* pColItem = GetItem( SID_COLOR_TABLE );
const XColorListRef& pList = pColItem->GetColorList();
rReq.SetReturnValue( OfaXColorListItem( SID_GET_COLORLIST, pList ) );
}
break;
case SID_VERSION:
{
ExecuteSlot( rReq, SfxObjectShell::GetStaticInterface() );
}
break;
case SID_HANGUL_HANJA_CONVERSION:
{
if( mpViewShell )
{
rtl::Reference<FuPoor> aFunc( FuHangulHanjaConversion::Create( mpViewShell, mpViewShell->GetActiveWindow(), mpViewShell->GetView(), mpDoc, rReq ) );
static_cast< FuHangulHanjaConversion* >( aFunc.get() )->StartConversion( LANGUAGE_KOREAN, LANGUAGE_KOREAN, nullptr, i18n::TextConversionOption::CHARACTER_BY_CHARACTER, true );
}
}
break;
case SID_CHINESE_CONVERSION:
{
if( mpViewShell )
{
rtl::Reference<FuPoor> aFunc( FuHangulHanjaConversion::Create( mpViewShell, mpViewShell->GetActiveWindow(), mpViewShell->GetView(), mpDoc, rReq ) );
static_cast< FuHangulHanjaConversion* >( aFunc.get() )->StartChineseConversion();
}
}
break;
case SID_LANGUAGE_STATUS:
{
OUString aNewLangTxt;
const SfxStringItem* pItem = rReq.GetArg<SfxStringItem>(SID_LANGUAGE_STATUS);
if (pItem)
aNewLangTxt = pItem->GetValue();
if (aNewLangTxt == "*" )
{
// open the dialog "Tools/Options/Language Settings - Language"
if (mpViewShell)
{
SfxAbstractDialogFactory* pFact = SfxAbstractDialogFactory::Create();
ScopedVclPtr<VclAbstractDialog> pDlg(pFact->CreateVclDialog( mpViewShell->GetFrameWeld(), SID_LANGUAGE_OPTIONS ));
pDlg->Execute();
}
}
else
{
if( mpViewShell )
{
// setting the new language...
if (!aNewLangTxt.isEmpty())
{
static const OUStringLiteral aSelectionLangPrefix(u"Current_");
static const OUStringLiteral aParagraphLangPrefix(u"Paragraph_");
static const OUStringLiteral aDocumentLangPrefix(u"Default_");
bool bSelection = false;
bool bParagraph = false;
SdDrawDocument* pDoc = mpViewShell->GetDoc();
sal_Int32 nPos = -1;
if (-1 != (nPos = aNewLangTxt.indexOf( aDocumentLangPrefix )))
{
aNewLangTxt = aNewLangTxt.replaceAt( nPos, aDocumentLangPrefix.getLength(), u"" );
if (aNewLangTxt == "LANGUAGE_NONE")
lcl_setLanguage( pDoc, u"", true );
else if (aNewLangTxt == "RESET_LANGUAGES")
lcl_setLanguage( pDoc, u"" );
else
lcl_setLanguage( pDoc, aNewLangTxt );
}
else if (-1 != (nPos = aNewLangTxt.indexOf( aSelectionLangPrefix )))
{
bSelection = true;
aNewLangTxt = aNewLangTxt.replaceAt( nPos, aSelectionLangPrefix.getLength(), u"" );
}
else if (-1 != (nPos = aNewLangTxt.indexOf( aParagraphLangPrefix )))
{
bParagraph = true;
aNewLangTxt = aNewLangTxt.replaceAt( nPos, aParagraphLangPrefix.getLength(), u"" );
}
if (bSelection || bParagraph)
{
SdrView* pSdrView = mpViewShell->GetDrawView();
if (!pSdrView)
return;
EditView& rEditView = pSdrView->GetTextEditOutlinerView()->GetEditView();
const LanguageType nLangToUse = SvtLanguageTable::GetLanguageType( aNewLangTxt );
SvtScriptType nScriptType = SvtLanguageOptions::GetScriptTypeOfLanguage( nLangToUse );
SfxItemSet aAttrs = rEditView.GetEditEngine()->GetEmptyItemSet();
if (nScriptType == SvtScriptType::LATIN)
aAttrs.Put( SvxLanguageItem( nLangToUse, EE_CHAR_LANGUAGE ) );
if (nScriptType == SvtScriptType::COMPLEX)
aAttrs.Put( SvxLanguageItem( nLangToUse, EE_CHAR_LANGUAGE_CTL ) );
if (nScriptType == SvtScriptType::ASIAN)
aAttrs.Put( SvxLanguageItem( nLangToUse, EE_CHAR_LANGUAGE_CJK ) );
ESelection aOldSel;
if (bParagraph)
{
ESelection aSel = rEditView.GetSelection();
aOldSel = aSel;
aSel.nStartPos = 0;
aSel.nEndPos = EE_TEXTPOS_ALL;
rEditView.SetSelection( aSel );
}
rEditView.SetAttribs( aAttrs );
if (bParagraph)
rEditView.SetSelection( aOldSel );
}
if ( pDoc->GetOnlineSpell() )
{
pDoc->StartOnlineSpelling();
}
}
}
}
Broadcast(SfxHint(SfxHintId::LanguageChanged));
}
break;
case SID_SPELLCHECK_IGNORE_ALL:
{
if (!mpViewShell)
return;
SdrView* pSdrView = mpViewShell->GetDrawView();
if (!pSdrView)
return;
EditView& rEditView = pSdrView->GetTextEditOutlinerView()->GetEditView();
OUString sIgnoreText;
const SfxStringItem* pItem2 = rReq.GetArg<SfxStringItem>(FN_PARAM_1);
if (pItem2)
sIgnoreText = pItem2->GetValue();
if(sIgnoreText == "Spelling")
{
ESelection aOldSel = rEditView.GetSelection();
rEditView.SpellIgnoreWord();
rEditView.SetSelection( aOldSel );
}
}
break;
case SID_SPELLCHECK_APPLY_SUGGESTION:
{
if (!mpViewShell)
return;
SdrView* pSdrView = mpViewShell->GetDrawView();
if (!pSdrView)
return;
EditView& rEditView = pSdrView->GetTextEditOutlinerView()->GetEditView();
OUString sApplyText;
const SfxStringItem* pItem2 = rReq.GetArg<SfxStringItem>(FN_PARAM_1);
if (pItem2)
sApplyText = pItem2->GetValue();
static const OUStringLiteral sSpellingRule(u"Spelling_");
sal_Int32 nPos = 0;
if(-1 != (nPos = sApplyText.indexOf( sSpellingRule )))
{
sApplyText = sApplyText.replaceAt(nPos, sSpellingRule.getLength(), u"");
rEditView.InsertText( sApplyText );
}
}
break;
case SID_NOTEBOOKBAR:
{
const SfxStringItem* pFile = rReq.GetArg<SfxStringItem>( SID_NOTEBOOKBAR );
if ( mpViewShell )
{
SfxBindings& rBindings( mpViewShell->GetFrame()->GetBindings() );
if ( sfx2::SfxNotebookBar::IsActive() )
sfx2::SfxNotebookBar::ExecMethod( rBindings, pFile ? pFile->GetValue() : "" );
else
sfx2::SfxNotebookBar::CloseMethod( rBindings );
}
}
break;
default:
break;
}
}
} // end of namespace sd
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|