1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: tabsplit.cxx,v $
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"
44 //==================================================================
46 ScTabSplitter::ScTabSplitter( Window
* pParent
, WinBits nWinStyle
, ScViewData
* pData
) :
47 Splitter( pParent
, nWinStyle
),
55 ScTabSplitter::~ScTabSplitter()
59 void __EXPORT
ScTabSplitter::MouseMove( const MouseEvent
& rMEvt
)
62 Window::MouseMove( rMEvt
);
64 Splitter::MouseMove( rMEvt
);
67 void __EXPORT
ScTabSplitter::MouseButtonUp( const MouseEvent
& rMEvt
)
70 Window::MouseButtonUp( rMEvt
);
72 Splitter::MouseButtonUp( rMEvt
);
75 void __EXPORT
ScTabSplitter::MouseButtonDown( const MouseEvent
& rMEvt
)
78 Window::MouseButtonDown( rMEvt
);
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
);
90 rSplitPos
.X() = aNew
.X();
92 rSplitPos
.Y() = aNew
.Y();
96 void ScTabSplitter::SetFixed(BOOL bSet
)
100 SetPointer(POINTER_ARROW
);
101 else if (IsHorizontal())
102 SetPointer(POINTER_HSPLIT
);
104 SetPointer(POINTER_VSPLIT
);