1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <tabsplit.hxx>
21 #include <viewdata.hxx>
23 #include <vcl/settings.hxx>
25 ScTabSplitter::ScTabSplitter( vcl::Window
* pParent
, WinBits nWinStyle
, const ScViewData
* pData
) :
26 Splitter(pParent
, nWinStyle
),
33 ScTabSplitter::~ScTabSplitter()
37 void ScTabSplitter::MouseButtonDown( const MouseEvent
& rMEvt
)
40 Window::MouseButtonDown( rMEvt
);
42 Splitter::MouseButtonDown( rMEvt
);
45 void ScTabSplitter::SetFixed(bool bSet
)
49 SetPointer(PointerStyle::Arrow
);
50 else if (IsHorizontal())
51 SetPointer(PointerStyle::HSplit
);
53 SetPointer(PointerStyle::VSplit
);
56 void ScTabSplitter::Paint( vcl::RenderContext
& rRenderContext
, const tools::Rectangle
& rRect
)
58 rRenderContext
.Push(vcl::PushFlags::FILLCOLOR
| vcl::PushFlags::LINECOLOR
);
59 const StyleSettings
& rStyleSettings
= rRenderContext
.GetSettings().GetStyleSettings();
63 switch (pViewData
->GetHSplitMode())
67 rRenderContext
.SetLineColor(rStyleSettings
.GetShadowColor());
68 rRenderContext
.SetFillColor(rStyleSettings
.GetShadowColor());
69 rRenderContext
.DrawRect(tools::Rectangle(rRect
.Left(), rRect
.Top(), rRect
.Right(), rRect
.Bottom()));
72 rRenderContext
.SetLineColor(COL_BLACK
);
73 rRenderContext
.SetFillColor(COL_BLACK
);
74 const tools::Long xc
= rRect
.Right() + rRect
.Left();
75 const tools::Long h4
= rRect
.GetHeight() / 4;
76 // First xc fraction is truncated, second one is rounded. This will draw a centered line
77 // in handlers with odd width and a centered rectangle in those with even width.
78 rRenderContext
.DrawRect(tools::Rectangle(Point(xc
/ 2, rRect
.Top() + h4
),
79 Point((xc
+ 1) / 2, rRect
.Bottom() - h4
)));
83 rRenderContext
.SetLineColor(rStyleSettings
.GetShadowColor());
84 rRenderContext
.SetFillColor(rStyleSettings
.GetShadowColor());
85 rRenderContext
.DrawRect(tools::Rectangle(rRect
.Left(), rRect
.Top(), rRect
.Right(), rRect
.Bottom()));
94 switch (pViewData
->GetVSplitMode())
98 rRenderContext
.SetLineColor(rStyleSettings
.GetShadowColor());
99 rRenderContext
.SetFillColor(rStyleSettings
.GetShadowColor());
100 rRenderContext
.DrawRect(tools::Rectangle(rRect
.Left(), rRect
.Top(), rRect
.Right(), rRect
.Bottom()));
103 rRenderContext
.SetLineColor(COL_BLACK
);
104 rRenderContext
.SetFillColor(COL_BLACK
);
105 const tools::Long yc
= rRect
.Top() + rRect
.Bottom();
106 const tools::Long w4
= rRect
.GetWidth() / 4;
107 // First yc fraction is truncated, second one is rounded. This will draw a centered line
108 // in handlers with odd height and a centered rectangle in those with even height.
109 GetOutDev()->DrawRect(tools::Rectangle(Point(rRect
.Left() + w4
, yc
/ 2),
110 Point(rRect
.Right() - w4
, (yc
+ 1) / 2)));
113 case SC_SPLIT_NORMAL
:
114 rRenderContext
.SetLineColor(rStyleSettings
.GetShadowColor());
115 rRenderContext
.SetFillColor(rStyleSettings
.GetShadowColor());
116 rRenderContext
.DrawRect(tools::Rectangle(rRect
.Left(), rRect
.Top(), rRect
.Right(), rRect
.Bottom()));
124 rRenderContext
.Pop();
127 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */