convert EESelectionMode to scoped enum

Change-Id: I4da22d40d5b14878b5efac1f3e4a5c76adec37b3
Reviewed-on: https://gerrit.libreoffice.org/37341
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
This commit is contained in:
Jochen Nitschke 2017-05-07 13:31:18 +02:00
parent fa19a1f0b0
commit 7cc8555e0a
4 changed files with 7 additions and 7 deletions

View file

@ -88,7 +88,7 @@ ImpEditView::ImpEditView( EditView* pView, EditEngine* pEng, vcl::Window* pWindo
pDragAndDropInfo = nullptr;
bReadOnly = false;
bClickedInSelection = false;
eSelectionMode = EE_SELMODE_TXTONLY;
eSelectionMode = EESelectionMode::TxtOnly;
eAnchorMode = EEAnchorMode::TopLeft;
nInvMore = 1;
nTravelXPos = TRAVEL_X_DONTKNOW;
@ -196,7 +196,7 @@ void lcl_translateTwips(vcl::Window& rParent, vcl::Window& rChild)
void ImpEditView::DrawSelection( EditSelection aTmpSel, vcl::Region* pRegion, OutputDevice* pTargetDevice )
{
if ( eSelectionMode == EE_SELMODE_HIDDEN )
if ( eSelectionMode == EESelectionMode::Hidden )
return;
// It must be ensured before rendering the selection, that the contents of

View file

@ -54,7 +54,7 @@ OutlinerView::OutlinerView( Outliner* pOut, vcl::Window* pWin )
pOwner = pOut;
pEditView.reset( new EditView( pOut->pEditEngine, pWin ) );
pEditView->SetSelectionMode( EE_SELMODE_TXTONLY );
pEditView->SetSelectionMode( EESelectionMode::TxtOnly );
}
OutlinerView::~OutlinerView()

View file

@ -45,7 +45,7 @@ namespace frm
Control::GetFocus();
if (m_pView)
{
m_pView->SetSelectionMode( EE_SELMODE_STD );
m_pView->SetSelectionMode( EESelectionMode::Std );
m_pView->ShowCursor();
}
}
@ -55,7 +55,7 @@ namespace frm
if (m_pView)
{
m_pView->HideCursor();
m_pView->SetSelectionMode( m_bHideInactiveSelection ? EE_SELMODE_HIDDEN : EE_SELMODE_STD );
m_pView->SetSelectionMode( m_bHideInactiveSelection ? EESelectionMode::Hidden : EESelectionMode::Std );
}
Control::LoseFocus();
}
@ -94,7 +94,7 @@ namespace frm
return;
m_bHideInactiveSelection = _bHide;
if ( !HasFocus() )
m_pView->SetSelectionMode( m_bHideInactiveSelection ? EE_SELMODE_HIDDEN : EE_SELMODE_STD );
m_pView->SetSelectionMode( m_bHideInactiveSelection ? EESelectionMode::Hidden : EESelectionMode::Std );
}
} // namespace frm

View file

@ -34,7 +34,7 @@ enum class HtmlTokenId : sal_Int16;
enum EETextFormat { EE_FORMAT_TEXT = 0x20, EE_FORMAT_RTF, EE_FORMAT_BIN = 0x31, EE_FORMAT_HTML, EE_FORMAT_XML };
enum EEHorizontalTextDirection { EE_HTEXTDIR_DEFAULT, EE_HTEXTDIR_L2R, EE_HTEXTDIR_R2L };
enum EESelectionMode { EE_SELMODE_STD, EE_SELMODE_TXTONLY, EE_SELMODE_HIDDEN };
enum class EESelectionMode { Std, TxtOnly, Hidden };
// EE_SELMODE_HIDDEN can be used to completely hide the selection. This is useful e.g. when you want show the selection
// only as long as your window (which the edit view works on) has the focus
enum class EESpellState { Ok, LanguageNotInstalled, NoSpeller, ErrorFound };