xref: /aoo41x/main/sfx2/source/sidebar/TabItem.cxx (revision 95a18594)
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 "sfx2/sidebar/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::GetPaint(Theme::Paint_TabBarBackground).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::GetColor(Theme::Color_TabItemBorder) : Color(0xffffffff),
69                 bIsMouseOver
70                     ? Theme::GetPaint(Theme::Paint_TabItemBackgroundHighlight)
71                     : Theme::GetPaint(Theme::Paint_TabItemBackgroundNormal));
72 
73             const Image aIcon (Button::GetModeImage(Theme::IsHighContrastMode()
74                     ? BMP_COLOR_HIGHCONTRAST
75                     : BMP_COLOR_NORMAL));
76             const Size aIconSize (aIcon.GetSizePixel());
77             const Point aIconLocation(
78                 (GetSizePixel().Width() - aIconSize.Width())/2,
79                 (GetSizePixel().Height() - aIconSize.Height())/2);
80             DrawImage(
81                 aIconLocation,
82                 aIcon);
83             break;
84         }
85         case PT_Native:
86             Button::Paint(rUpdateArea);
87             //            DrawImage(maIconPosition, maIcon);
88             break;
89     }
90 }
91 
92 
93 
94 
95 void TabItem::MouseMove (const MouseEvent& rEvent)
96 {
97     if (rEvent.IsEnterWindow() || rEvent.IsLeaveWindow())
98         Invalidate();
99     ImageRadioButton::MouseMove(rEvent);
100 }
101 
102 
103 
104 
105 void TabItem::MouseButtonDown (const MouseEvent& rMouseEvent)
106 {
107 #if 0
108     Hide();
109     ImageRadioButton::MouseButtonDown(rMouseEvent);
110     Show();
111 #else
112     if (rMouseEvent.IsLeft())
113     {
114         mbIsLeftButtonDown = true;
115         CaptureMouse();
116         Invalidate();
117     }
118 #endif
119 }
120 
121 
122 
123 
124 void TabItem::MouseButtonUp (const MouseEvent& rMouseEvent)
125 {
126 #if 0
127     Hide();
128     ImageRadioButton::MouseButtonUp(rMouseEvent);
129     Show();
130 #else
131     if (IsMouseCaptured())
132         ReleaseMouse();
133 
134     if (rMouseEvent.IsLeft())
135     {
136         if (mbIsLeftButtonDown)
137         {
138             Check();
139             Click();
140             GetParent()->Invalidate();
141         }
142     }
143     if (mbIsLeftButtonDown)
144     {
145         mbIsLeftButtonDown = false;
146         Invalidate();
147     }
148 #endif
149 }
150 
151 
152 
153 } } // end of namespace sfx2::sidebar
154