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 0 : void ScTabViewShell::SetDefaultFrameLine( const ::editeng::SvxBorderLine* pLine )
28 : {
29 0 : if ( pLine )
30 : {
31 0 : delete pCurFrameLine;
32 : pCurFrameLine = new ::editeng::SvxBorderLine( &pLine->GetColor(),
33 : pLine->GetWidth(),
34 0 : pLine->GetBorderLineStyle() );
35 : }
36 0 : else if ( pCurFrameLine )
37 : {
38 0 : delete pCurFrameLine;
39 0 : pCurFrameLine = NULL;
40 : }
41 0 : }
42 :
43 0 : bool ScTabViewShell::HasSelection( bool bText ) const
44 : {
45 0 : bool bHas = false;
46 0 : ScViewData* pData = (ScViewData*)GetViewData(); // const weggecasted
47 0 : if ( bText )
48 : {
49 : // Text enthalten: Anzahl2 >= 1
50 0 : ScDocument* pDoc = pData->GetDocument();
51 0 : ScMarkData& rMark = pData->GetMarkData();
52 0 : ScAddress aCursor( pData->GetCurX(), pData->GetCurY(), pData->GetTabNo() );
53 0 : double fVal = 0.0;
54 0 : if ( pDoc->GetSelectionFunction( SUBTOTAL_FUNC_CNT2, aCursor, rMark, fVal ) )
55 0 : bHas = ( fVal > 0.5 );
56 : }
57 : else
58 : {
59 0 : ScRange aRange;
60 0 : ScMarkType eMarkType = pData->GetSimpleArea( aRange );
61 0 : if ( eMarkType == SC_MARK_SIMPLE )
62 0 : bHas = ( aRange.aStart != aRange.aEnd ); // more than 1 cell
63 : else
64 0 : bHas = true; // multiple selection or filtered
65 : }
66 0 : return bHas;
67 : }
68 :
69 0 : void ScTabViewShell::UIDeactivated( SfxInPlaceClient* pClient )
70 : {
71 0 : ClearHighlightRanges();
72 :
73 : // Move an der ViewShell soll eigentlich vom Sfx gerufen werden, wenn sich
74 : // das Frame-Window wegen unterschiedlicher Toolboxen o.ae. verschiebt
75 : // (um nicht aus Versehen z.B. Zeichenobjekte zu verschieben, #56515#).
76 : // Dieser Mechanismus funktioniert aber momentan nicht, darum hier der Aufruf
77 : // per Hand (im Move wird verglichen, ob die Position wirklich geaendert ist).
78 0 : ForceMove();
79 0 : SfxViewShell::UIDeactivated( pClient );
80 0 : }
81 :
82 :
83 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|