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 "MenuButton.hxx"
22 #include "DrawHelper.hxx"
24 #include <sfx2/sidebar/Tools.hxx>
25 #include <sfx2/sidebar/Theme.hxx>
28 using namespace css::uno
;
30 namespace sfx2
{ namespace sidebar
{
32 MenuButton::MenuButton (vcl::Window
* pParentWindow
)
33 : CheckBox(pParentWindow
),
34 mbIsLeftButtonDown(false),
38 SetText(OUString("MenuButton"));
42 void MenuButton::Paint(vcl::RenderContext
& rRenderContext
, const Rectangle
& rUpdateArea
)
49 const bool bIsSelected (IsChecked());
50 const bool bIsHighlighted (IsMouseOver() || HasFocus());
51 DrawHelper::DrawRoundedRectangle(
53 Rectangle(Point(0,0), GetSizePixel()),
55 (bIsHighlighted
|| bIsSelected
56 ? Theme::GetColor(Theme::Color_TabItemBorder
)
59 ? Theme::GetPaint(Theme::Paint_TabItemBackgroundHighlight
)
60 : Theme::GetPaint(Theme::Paint_TabItemBackgroundNormal
)));
62 const Image
aIcon(Button::GetModeImage());
63 const Size
aIconSize(aIcon
.GetSizePixel());
64 const Point
aIconLocation((GetSizePixel().Width() - aIconSize
.Width()) / 2,
65 (GetSizePixel().Height() - aIconSize
.Height()) / 2);
66 rRenderContext
.DrawImage(aIconLocation
, aIcon
);
70 Button::Paint(rRenderContext
, rUpdateArea
);
75 void MenuButton::MouseMove (const MouseEvent
& rEvent
)
77 if (rEvent
.IsEnterWindow() || rEvent
.IsLeaveWindow())
79 CheckBox::MouseMove(rEvent
);
82 void MenuButton::MouseButtonDown (const MouseEvent
& rMouseEvent
)
84 if (rMouseEvent
.IsLeft())
86 mbIsLeftButtonDown
= true;
92 void MenuButton::MouseButtonUp (const MouseEvent
& rMouseEvent
)
94 if (IsMouseCaptured())
97 if (rMouseEvent
.IsLeft())
99 if (mbIsLeftButtonDown
)
103 GetParent()->Invalidate();
106 if (mbIsLeftButtonDown
)
108 mbIsLeftButtonDown
= false;
113 } } // end of namespace sfx2::sidebar
115 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */