Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "scitems.hxx"
21 : #include <editeng/boxitem.hxx>
22 :
23 : #include "tabvwsh.hxx"
24 : #include "document.hxx"
25 :
26 :
27 : //------------------------------------------------------------------
28 :
29 0 : void ScTabViewShell::SetDefaultFrameLine( const ::editeng::SvxBorderLine* pLine )
30 : {
31 0 : if ( pLine )
32 : {
33 0 : delete pCurFrameLine;
34 : pCurFrameLine = new ::editeng::SvxBorderLine( &pLine->GetColor(),
35 : pLine->GetWidth(),
36 0 : pLine->GetBorderLineStyle() );
37 : }
38 0 : else if ( pCurFrameLine )
39 : {
40 0 : delete pCurFrameLine;
41 0 : pCurFrameLine = NULL;
42 : }
43 0 : }
44 :
45 : //------------------------------------------------------------------
46 :
47 0 : sal_Bool ScTabViewShell::HasSelection( sal_Bool bText ) const
48 : {
49 0 : sal_Bool bHas = false;
50 0 : ScViewData* pData = (ScViewData*)GetViewData(); // const weggecasted
51 0 : if ( bText )
52 : {
53 : // Text enthalten: Anzahl2 >= 1
54 0 : ScDocument* pDoc = pData->GetDocument();
55 0 : ScMarkData& rMark = pData->GetMarkData();
56 0 : ScAddress aCursor( pData->GetCurX(), pData->GetCurY(), pData->GetTabNo() );
57 0 : double fVal = 0.0;
58 0 : if ( pDoc->GetSelectionFunction( SUBTOTAL_FUNC_CNT2, aCursor, rMark, fVal ) )
59 0 : bHas = ( fVal > 0.5 );
60 : }
61 : else
62 : {
63 0 : ScRange aRange;
64 0 : ScMarkType eMarkType = pData->GetSimpleArea( aRange );
65 0 : if ( eMarkType == SC_MARK_SIMPLE )
66 0 : bHas = ( aRange.aStart != aRange.aEnd ); // more than 1 cell
67 : else
68 0 : bHas = sal_True; // multiple selection or filtered
69 : }
70 0 : return bHas;
71 : }
72 :
73 : //------------------------------------------------------------------
74 :
75 0 : void ScTabViewShell::UIDeactivated( SfxInPlaceClient* pClient )
76 : {
77 0 : ClearHighlightRanges();
78 :
79 : // Move an der ViewShell soll eigentlich vom Sfx gerufen werden, wenn sich
80 : // das Frame-Window wegen unterschiedlicher Toolboxen o.ae. verschiebt
81 : // (um nicht aus Versehen z.B. Zeichenobjekte zu verschieben, #56515#).
82 : // Dieser Mechanismus funktioniert aber momentan nicht, darum hier der Aufruf
83 : // per Hand (im Move wird verglichen, ob die Position wirklich geaendert ist).
84 0 : ForceMove();
85 0 : SfxViewShell::UIDeactivated( pClient );
86 15 : }
87 :
88 :
89 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|