Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / sw / source / uibase / lingu / hyp.cxx
blobcaf235bf793de42d79c67f04f614ed0f0058cb8f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <view.hxx>
21 #include <edtwin.hxx>
22 #include <wrtsh.hxx>
23 #include <vcl/svapp.hxx>
24 #include <vcl/weld.hxx>
25 #include <com/sun/star/linguistic2/XLinguProperties.hpp>
26 #include <swwait.hxx>
28 #include <hyp.hxx>
29 #include <mdiexp.hxx>
30 #include <strings.hrc>
32 #include <memory>
34 #define PSH (&m_pView->GetWrtShell())
36 using namespace ::com::sun::star;
38 // interactive separation
39 SwHyphWrapper::SwHyphWrapper( SwView* pVw,
40 uno::Reference< linguistic2::XHyphenator > const &rxHyph,
41 bool bStart, bool bOther, bool bSelect ) :
42 SvxSpellWrapper( pVw->GetEditWin().GetFrameWeld(), rxHyph, bStart, bOther ),
43 m_pView( pVw ),
44 m_nPageCount( 0 ),
45 m_nPageStart( 0 ),
46 m_bInSelection( bSelect ),
47 m_bInfoBox( false )
49 uno::Reference< linguistic2::XLinguProperties > xProp( GetLinguPropertySet() );
50 m_bAutomatic = xProp.is() && xProp->getIsHyphAuto();
53 void SwHyphWrapper::SpellStart( SvxSpellArea eSpell )
55 if( SvxSpellArea::Other == eSpell && m_nPageCount )
57 ::EndProgress( m_pView->GetDocShell() );
58 m_nPageCount = 0;
59 m_nPageStart = 0;
61 m_pView->HyphStart( eSpell );
64 void SwHyphWrapper::SpellContinue()
66 // for automatic separation, make actions visible only at the end
67 std::optional<SwWait> oWait;
68 if( m_bAutomatic )
70 PSH->StartAllAction();
71 oWait.emplace( *m_pView->GetDocShell(), true );
74 uno::Reference< uno::XInterface > xHyphWord = m_bInSelection ?
75 PSH->HyphContinue( nullptr, nullptr ) :
76 PSH->HyphContinue( &m_nPageCount, &m_nPageStart );
77 SetLast( xHyphWord );
79 // for automatic separation, make actions visible only at the end
80 if( m_bAutomatic )
82 PSH->EndAllAction();
83 oWait.reset();
87 void SwHyphWrapper::SpellEnd()
89 PSH->HyphEnd();
90 SvxSpellWrapper::SpellEnd();
93 bool SwHyphWrapper::SpellMore()
95 PSH->Push();
96 m_bInfoBox = true;
97 PSH->Combine();
98 return false;
101 void SwHyphWrapper::InsertHyphen( const sal_Int32 nPos )
103 if( nPos)
104 SwEditShell::InsertSoftHyph(nPos + 1); // does nPos == 1 really mean
105 // insert hyphen after first char?
106 // (instead of nPos == 0)
107 else
108 PSH->HyphIgnore();
111 SwHyphWrapper::~SwHyphWrapper()
113 if( m_nPageCount )
114 ::EndProgress( m_pView->GetDocShell() );
115 if( m_bInfoBox && !Application::IsHeadlessModeEnabled() )
117 std::unique_ptr<weld::MessageDialog> xInfoBox(Application::CreateMessageDialog(m_pView->GetEditWin().GetFrameWeld(),
118 VclMessageType::Info, VclButtonsType::Ok,
119 SwResId(STR_HYP_OK)));
120 xInfoBox->run();
124 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */