summaryrefslogtreecommitdiff
path: root/bf_svx/source/editeng/svx_editview.cxx
blob: df8102877032fd3f390b3dbff2e50a33be44465f (plain)
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
/* -*- 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 .
 */

#ifdef _MSC_VER
#pragma hdrstop
#endif

#define _SOLAR__PRIVATE 1

#include <vcl/window.hxx>

#include <impedit.hxx>
#include <editeng.hxx>
#include <editview.hxx>

#include "itemdata.hxx"

#include <editeng.hrc>
#include <helpid.hrc>

#include <com/sun/star/beans/PropertyValues.hdl>

namespace binfilter {

using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::linguistic2;


/*N*/ DBG_NAME( EditView )

// From SW => Create common method

/*N*/ EditView::~EditView()
/*N*/ {
/*N*/   DBG_DTOR( EditView, 0 );
/*N*/   delete pImpEditView;
/*N*/ }


/*N*/ EditEngine* EditView::GetEditEngine() const
/*N*/ {
/*N*/   DBG_CHKTHIS( EditView, 0 );
/*N*/   DBG_CHKOBJ( pImpEditView->pEditEngine, EditEngine, 0 );
/*N*/   return pImpEditView->pEditEngine;
/*N*/ }

/*N*/ void EditView::SetSelection( const ESelection& rESel )
/*N*/ {
/*N*/   DBG_CHKTHIS( EditView, 0 );
/*N*/   DBG_CHKOBJ( pImpEditView->pEditEngine, EditEngine, 0 );
/*N*/
/*N*/   EditSelection aNewSelection( PIMPEE->ConvertSelection( rESel.nStartPara, rESel.nStartPos, rESel.nEndPara, rESel.nEndPos ) );
/*N*/
/*N*/   // Selektion darf nicht bei einem unsichtbaren Absatz Starten/Enden:
/*N*/   PIMPEE->FindParaPortion( aNewSelection.Min().GetNode() ); // WaE cleanup: left in for potential side effects
/*N*/   PIMPEE->FindParaPortion( aNewSelection.Max().GetNode() ); // WaE cleanup: left in for potential side effects
/*N*/
/*N*/   pImpEditView->DrawSelection();  // alte Selektion 'weg-zeichnen'
/*N*/   pImpEditView->SetEditSelection( aNewSelection );
/*N*/   pImpEditView->DrawSelection();
/*N*/   sal_Bool bGotoCursor = pImpEditView->DoAutoScroll();
/*N*/   ShowCursor( bGotoCursor );
/*N*/ }

/*N*/ ESelection EditView::GetSelection() const
/*N*/ {
/*N*/   DBG_CHKTHIS( EditView, 0 );
/*N*/   DBG_CHKOBJ( pImpEditView->pEditEngine, EditEngine, 0 );
/*N*/
/*N*/   ESelection aSelection;
/*N*/
/*N*/   aSelection.nStartPara = PIMPEE->GetEditDoc().GetPos( pImpEditView->GetEditSelection().Min().GetNode() );
/*N*/   aSelection.nEndPara = PIMPEE->GetEditDoc().GetPos( pImpEditView->GetEditSelection().Max().GetNode() );
/*N*/
/*N*/   aSelection.nStartPos = pImpEditView->GetEditSelection().Min().GetIndex();
/*N*/   aSelection.nEndPos = pImpEditView->GetEditSelection().Max().GetIndex();
/*N*/
/*N*/   return aSelection;
/*N*/ }

/*N*/ sal_Bool EditView::HasSelection() const
/*N*/ {
/*N*/   DBG_CHKTHIS( EditView, 0 );
/*N*/   return pImpEditView->HasSelection();
/*N*/ }


/*N*/ Window*   EditView::GetWindow() const
/*N*/ {
/*N*/   DBG_CHKTHIS( EditView, 0 );
/*N*/   return pImpEditView->pOutWin;
/*N*/ }

/*N*/ const Rectangle& EditView::GetVisArea() const
/*N*/ {
/*N*/   DBG_CHKTHIS( EditView, 0 );
/*N*/   // Change return value to Rectangle in next incompatible build !!!
/*N*/   static Rectangle aRect;
/*N*/   aRect = pImpEditView->GetVisDocArea();
/*N*/   return aRect;
/*N*/ }

/*N*/ const Rectangle& EditView::GetOutputArea() const
/*N*/ {
/*N*/   DBG_CHKTHIS( EditView, 0 );
/*N*/   return pImpEditView->GetOutputArea();
/*N*/ }


/*N*/ void EditView::ShowCursor( sal_Bool, sal_Bool )
/*N*/ {
/*N*/ }

/*N*/ void EditView::HideCursor()
/*N*/ {
/*N*/   DBG_CHKTHIS( EditView, 0 );
/*N*/   pImpEditView->GetCursor()->Hide();
/*N*/ }

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */