merge the formfield patch from ooo-build
[ooovba.git] / sc / source / ui / view / tabsplit.cxx
blobec3041356e2d66c0eafceb03bff4e6b28e65c0ae
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: tabsplit.cxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_sc.hxx"
34 // System - Includes -----------------------------------------------------
38 // INCLUDE ---------------------------------------------------------------
40 #include "tabsplit.hxx"
41 #include "viewdata.hxx"
42 #include "dbfunc.hxx"
44 //==================================================================
46 ScTabSplitter::ScTabSplitter( Window* pParent, WinBits nWinStyle, ScViewData* pData ) :
47 Splitter( pParent, nWinStyle ),
48 pViewData(pData)
50 SetFixed(FALSE);
51 EnableRTL( FALSE );
55 ScTabSplitter::~ScTabSplitter()
59 void __EXPORT ScTabSplitter::MouseMove( const MouseEvent& rMEvt )
61 if (bFixed)
62 Window::MouseMove( rMEvt );
63 else
64 Splitter::MouseMove( rMEvt );
67 void __EXPORT ScTabSplitter::MouseButtonUp( const MouseEvent& rMEvt )
69 if (bFixed)
70 Window::MouseButtonUp( rMEvt );
71 else
72 Splitter::MouseButtonUp( rMEvt );
75 void __EXPORT ScTabSplitter::MouseButtonDown( const MouseEvent& rMEvt )
77 if (bFixed)
78 Window::MouseButtonDown( rMEvt );
79 else
80 Splitter::MouseButtonDown( rMEvt );
83 void __EXPORT ScTabSplitter::Splitting( Point& rSplitPos )
85 Window* pParent = GetParent();
86 Point aScreenPos = pParent->OutputToNormalizedScreenPixel( rSplitPos );
87 pViewData->GetView()->SnapSplitPos( aScreenPos );
88 Point aNew = pParent->NormalizedScreenToOutputPixel( aScreenPos );
89 if ( IsHorizontal() )
90 rSplitPos.X() = aNew.X();
91 else
92 rSplitPos.Y() = aNew.Y();
96 void ScTabSplitter::SetFixed(BOOL bSet)
98 bFixed = bSet;
99 if (bSet)
100 SetPointer(POINTER_ARROW);
101 else if (IsHorizontal())
102 SetPointer(POINTER_HSPLIT);
103 else
104 SetPointer(POINTER_VSPLIT);