xref: /aoo41x/main/sfx2/source/sidebar/TabItem.cxx (revision ff12d537)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 #include "precompiled_sfx2.hxx"
23 
24 #include "TabItem.hxx"
25 
26 #include "DrawHelper.hxx"
27 #include "Paint.hxx"
28 #include "Theme.hxx"
29 
30 using namespace ::com::sun::star;
31 using namespace ::com::sun::star::uno;
32 
33 
34 namespace sfx2 { namespace sidebar {
35 
36 
37 TabItem::TabItem (Window* pParentWindow)
38     : ImageRadioButton(pParentWindow),
39       mbIsLeftButtonDown(false),
40       mePaintType(PT_Theme)
41 {
42     SetBackground(Theme::GetTabBarBackground().GetWallpaper());
43 }
44 
45 
46 
47 
48 TabItem::~TabItem (void)
49 {
50 }
51 
52 
53 
54 
55 void TabItem::Paint (const Rectangle& rUpdateArea)
56 {
57     switch(mePaintType)
58     {
59         case PT_Theme:
60         default:
61         {
62             const bool bIsSelected (IsChecked());
63             const bool bIsMouseOver (IsMouseOver());
64             DrawHelper::DrawRoundedRectangle(
65                 *this,
66                 Rectangle(Point(0,0), GetSizePixel()),
67                 2,
68                 bIsMouseOver||bIsSelected ? Theme::GetTabItemBorderColor() : Color(0xffffffff),
69                 bIsMouseOver ? Theme::GetTabItemBackgroundPaint() : sidebar::Paint());
70 
71             const Image aIcon (Button::GetModeImage(Theme::IsHighContrastMode()
72                     ? BMP_COLOR_HIGHCONTRAST
73                     : BMP_COLOR_NORMAL));
74             const Size aIconSize (aIcon.GetSizePixel());
75             const Point aIconLocation(
76                 (GetSizePixel().Width() - aIconSize.Width())/2,
77                 (GetSizePixel().Height() - aIconSize.Height())/2);
78             DrawImage(
79                 aIconLocation,
80                 aIcon);
81             break;
82         }
83         case PT_Native:
84             Button::Paint(rUpdateArea);
85             //            DrawImage(maIconPosition, maIcon);
86             break;
87     }
88 }
89 
90 
91 
92 
93 void TabItem::MouseMove (const MouseEvent& rEvent)
94 {
95     if (rEvent.IsEnterWindow() || rEvent.IsLeaveWindow())
96         Invalidate();
97     ImageRadioButton::MouseMove(rEvent);
98 }
99 
100 
101 
102 
103 void TabItem::MouseButtonDown (const MouseEvent& rMouseEvent)
104 {
105 #if 0
106     Hide();
107     ImageRadioButton::MouseButtonDown(rMouseEvent);
108     Show();
109 #else
110     if (rMouseEvent.IsLeft())
111     {
112         mbIsLeftButtonDown = true;
113         CaptureMouse();
114         Invalidate();
115     }
116 #endif
117 }
118 
119 
120 
121 
122 void TabItem::MouseButtonUp (const MouseEvent& rMouseEvent)
123 {
124 #if 0
125     Hide();
126     ImageRadioButton::MouseButtonUp(rMouseEvent);
127     Show();
128 #else
129     if (IsMouseCaptured())
130         ReleaseMouse();
131 
132     if (rMouseEvent.IsLeft())
133     {
134         if (mbIsLeftButtonDown)
135         {
136             Check();
137             Click();
138             GetParent()->Invalidate();
139         }
140     }
141     if (mbIsLeftButtonDown)
142     {
143         mbIsLeftButtonDown = false;
144         Invalidate();
145     }
146 #endif
147 }
148 
149 
150 
151 } } // end of namespace sfx2::sidebar
152