Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "TitleBar.hxx"
21 : #include "Paint.hxx"
22 : #include "Accessible.hxx"
23 : #include "AccessibleTitleBar.hxx"
24 :
25 : #include <tools/svborder.hxx>
26 : #include <vcl/gradient.hxx>
27 : #include <vcl/lineinfo.hxx>
28 :
29 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
30 :
31 :
32 : namespace
33 : {
34 : const static sal_Int32 gnLeftIconSpace (3);
35 : const static sal_Int32 gnRightIconSpace (3);
36 : }
37 :
38 : namespace sfx2 { namespace sidebar {
39 :
40 0 : TitleBar::TitleBar (
41 : const ::rtl::OUString& rsTitle,
42 : Window* pParentWindow,
43 : const sidebar::Paint& rInitialBackgroundPaint)
44 : : Window(pParentWindow),
45 : maToolBox(this),
46 : msTitle(rsTitle),
47 0 : maIcon()
48 : {
49 0 : SetBackground(rInitialBackgroundPaint.GetWallpaper());
50 :
51 0 : maToolBox.SetSelectHdl(LINK(this, TitleBar, SelectionHandler));
52 0 : }
53 :
54 :
55 :
56 :
57 0 : TitleBar::~TitleBar (void)
58 : {
59 0 : }
60 :
61 :
62 :
63 :
64 0 : void TitleBar::SetTitle (const ::rtl::OUString& rsTitle)
65 : {
66 0 : msTitle = rsTitle;
67 0 : Invalidate();
68 0 : }
69 :
70 :
71 :
72 :
73 0 : void TitleBar::SetIcon (const Image& rIcon)
74 : {
75 0 : maIcon = rIcon;
76 0 : Invalidate();
77 0 : }
78 :
79 :
80 :
81 :
82 0 : void TitleBar::Paint (const Rectangle& rUpdateArea)
83 : {
84 : (void)rUpdateArea;
85 :
86 : // Paint title bar background.
87 0 : Size aWindowSize (GetOutputSizePixel());
88 : Rectangle aTitleBarBox(
89 : 0,
90 : 0,
91 0 : aWindowSize.Width(),
92 0 : aWindowSize.Height()
93 0 : );
94 :
95 0 : PaintDecoration(aTitleBarBox);
96 0 : const Rectangle aTitleBox (GetTitleArea(aTitleBarBox));
97 0 : PaintTitle(aTitleBox);
98 0 : PaintFocus(aTitleBox);
99 0 : }
100 :
101 :
102 :
103 :
104 0 : void TitleBar::DataChanged (const DataChangedEvent& rEvent)
105 : {
106 : (void)rEvent;
107 :
108 0 : SetBackground(GetBackgroundPaint().GetWallpaper());
109 0 : }
110 :
111 :
112 :
113 :
114 0 : void TitleBar::setPosSizePixel (
115 : long nX,
116 : long nY,
117 : long nWidth,
118 : long nHeight,
119 : sal_uInt16 nFlags)
120 : {
121 0 : Window::setPosSizePixel(nX,nY,nWidth,nHeight,nFlags);
122 :
123 : // Place the toolbox.
124 0 : const sal_Int32 nToolBoxWidth (maToolBox.GetItemPosRect(0).GetWidth());
125 0 : maToolBox.setPosSizePixel(nWidth-nToolBoxWidth,0, nToolBoxWidth,nHeight, WINDOW_POSSIZE_POSSIZE);
126 0 : maToolBox.Show();
127 0 : }
128 :
129 :
130 :
131 :
132 0 : ToolBox& TitleBar::GetToolBox (void)
133 : {
134 0 : return maToolBox;
135 : }
136 :
137 :
138 :
139 :
140 0 : const ToolBox& TitleBar::GetToolBox (void) const
141 : {
142 0 : return maToolBox;
143 : }
144 :
145 :
146 :
147 :
148 0 : void TitleBar::HandleToolBoxItemClick (const sal_uInt16 nItemIndex)
149 : {
150 : (void)nItemIndex;
151 : // Any real processing has to be done in derived class.
152 0 : }
153 :
154 :
155 :
156 :
157 0 : cssu::Reference<css::accessibility::XAccessible> TitleBar::CreateAccessible (void)
158 : {
159 0 : SetAccessibleRole(css::accessibility::AccessibleRole::PANEL);
160 0 : return AccessibleTitleBar::Create(*this);
161 : }
162 :
163 :
164 :
165 :
166 0 : void TitleBar::PaintTitle (const Rectangle& rTitleBox)
167 : {
168 0 : Push(PUSH_FONT | PUSH_TEXTCOLOR);
169 :
170 0 : Rectangle aTitleBox (rTitleBox);
171 :
172 : // When there is an icon then paint it at the left of the given
173 : // box.
174 0 : if ( !! maIcon)
175 : {
176 : DrawImage(
177 : Point(
178 0 : aTitleBox.Left() + gnLeftIconSpace,
179 0 : aTitleBox.Top() + (aTitleBox.GetHeight()-maIcon.GetSizePixel().Height())/2),
180 0 : maIcon);
181 0 : aTitleBox.Left() += gnLeftIconSpace + maIcon.GetSizePixel().Width() + gnRightIconSpace;
182 : }
183 :
184 0 : Font aFont(GetFont());
185 0 : aFont.SetWeight(WEIGHT_BOLD);
186 0 : SetFont(aFont);
187 :
188 : // Paint title bar text.
189 0 : SetTextColor(GetTextColor());
190 : DrawText(
191 : aTitleBox,
192 : msTitle,
193 0 : TEXT_DRAW_LEFT | TEXT_DRAW_VCENTER);
194 :
195 0 : Pop();
196 0 : }
197 :
198 :
199 :
200 :
201 0 : void TitleBar::PaintFocus (const Rectangle& rFocusBox)
202 : {
203 0 : Push(PUSH_FONT | PUSH_TEXTCOLOR);
204 :
205 0 : Font aFont(GetFont());
206 0 : aFont.SetWeight(WEIGHT_BOLD);
207 0 : SetFont(aFont);
208 :
209 : const Rectangle aTextBox (
210 : GetTextRect(
211 : rFocusBox,
212 : msTitle,
213 0 : TEXT_DRAW_LEFT | TEXT_DRAW_VCENTER));
214 : const Rectangle aLargerTextBox (
215 0 : aTextBox.Left() - 2,
216 0 : aTextBox.Top() - 2,
217 0 : aTextBox.Right() + 2,
218 0 : aTextBox.Bottom() + 2);
219 :
220 0 : if (HasFocus())
221 0 : Window::ShowFocus(aLargerTextBox);
222 : else
223 0 : Window::HideFocus();
224 :
225 0 : Pop();
226 0 : }
227 :
228 :
229 :
230 :
231 0 : IMPL_LINK(TitleBar, SelectionHandler, ToolBox*, pToolBox)
232 : {
233 : (void)pToolBox;
234 : OSL_ASSERT(&maToolBox==pToolBox);
235 0 : const sal_uInt16 nItemId (maToolBox.GetHighlightItemId());
236 :
237 0 : HandleToolBoxItemClick(nItemId);
238 :
239 0 : return sal_True;
240 : }
241 :
242 : } } // end of namespace sfx2::sidebar
243 :
244 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|