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 :
21 : #include <sfx2/titledockwin.hxx>
22 : #include <sfx2/bindings.hxx>
23 : #include <sfx2/dispatch.hxx>
24 : #include "sfxlocal.hrc"
25 : #include <sfx2/sfxresid.hxx>
26 :
27 : #include <svl/eitem.hxx>
28 : #include <vcl/settings.hxx>
29 :
30 :
31 : namespace sfx2
32 : {
33 :
34 :
35 :
36 : //= TitledDockingWindow
37 :
38 :
39 0 : TitledDockingWindow::TitledDockingWindow( SfxBindings* i_pBindings, SfxChildWindow* i_pChildWindow, vcl::Window* i_pParent,
40 : WinBits i_nStyle )
41 : :SfxDockingWindow( i_pBindings, i_pChildWindow, i_pParent, i_nStyle )
42 : ,m_sTitle()
43 : ,m_aToolbox( this )
44 : ,m_aContentWindow( this, WB_DIALOGCONTROL )
45 : ,m_aBorder( 3, 1, 3, 3 )
46 : ,m_bLayoutPending( false )
47 0 : ,m_nTitleBarHeight(0)
48 : {
49 0 : impl_construct();
50 0 : }
51 :
52 :
53 126 : TitledDockingWindow::TitledDockingWindow( SfxBindings* i_pBindings, SfxChildWindow* i_pChildWindow, vcl::Window* i_pParent,
54 : const ResId& i_rResId )
55 : :SfxDockingWindow( i_pBindings, i_pChildWindow, i_pParent, i_rResId )
56 : ,m_sTitle()
57 : ,m_aToolbox( this )
58 : ,m_aContentWindow( this )
59 : ,m_aBorder( 3, 1, 3, 3 )
60 : ,m_bLayoutPending( false )
61 126 : ,m_nTitleBarHeight(0)
62 : {
63 126 : impl_construct();
64 126 : }
65 :
66 :
67 126 : void TitledDockingWindow::impl_construct()
68 : {
69 126 : SetBackground( Wallpaper() );
70 :
71 126 : m_aToolbox.SetSelectHdl( LINK( this, TitledDockingWindow, OnToolboxItemSelected ) );
72 126 : m_aToolbox.SetOutStyle( TOOLBOX_STYLE_FLAT );
73 126 : m_aToolbox.SetBackground( Wallpaper( GetSettings().GetStyleSettings().GetDialogColor() ) );
74 126 : m_aToolbox.Show();
75 126 : impl_resetToolBox();
76 :
77 126 : m_aContentWindow.Show();
78 126 : }
79 :
80 :
81 126 : TitledDockingWindow::~TitledDockingWindow()
82 : {
83 126 : }
84 :
85 :
86 126 : void TitledDockingWindow::SetTitle( const OUString& i_rTitle )
87 : {
88 126 : m_sTitle = i_rTitle;
89 126 : Invalidate();
90 126 : }
91 :
92 :
93 0 : void TitledDockingWindow::SetText( const OUString& i_rText )
94 : {
95 0 : SfxDockingWindow::SetText( i_rText );
96 0 : if ( m_sTitle.isEmpty() )
97 : // our text is used as title, too => repaint
98 0 : Invalidate();
99 0 : }
100 :
101 :
102 291 : void TitledDockingWindow::Resize()
103 : {
104 291 : SfxDockingWindow::Resize();
105 291 : impl_scheduleLayout();
106 291 : }
107 :
108 :
109 134 : void TitledDockingWindow::onLayoutDone()
110 : {
111 : // not interested in
112 134 : }
113 :
114 :
115 291 : void TitledDockingWindow::impl_scheduleLayout()
116 : {
117 291 : m_bLayoutPending = true;
118 291 : }
119 :
120 :
121 134 : void TitledDockingWindow::impl_layout()
122 : {
123 134 : m_bLayoutPending = false;
124 :
125 134 : m_aToolbox.ShowItem( 1, !IsFloatingMode() );
126 :
127 134 : const Size aToolBoxSize( m_aToolbox.CalcWindowSizePixel() );
128 134 : Size aWindowSize( GetOutputSizePixel() );
129 :
130 : // position the tool box
131 134 : m_nTitleBarHeight = GetSettings().GetStyleSettings().GetTitleHeight();
132 134 : if ( aToolBoxSize.Height() > m_nTitleBarHeight )
133 0 : m_nTitleBarHeight = aToolBoxSize.Height();
134 : m_aToolbox.SetPosSizePixel(
135 : Point(
136 268 : aWindowSize.Width() - aToolBoxSize.Width(),
137 134 : ( m_nTitleBarHeight - aToolBoxSize.Height() ) / 2
138 : ),
139 : aToolBoxSize
140 402 : );
141 :
142 : // Place the content window.
143 134 : if ( m_nTitleBarHeight < aToolBoxSize.Height() )
144 0 : m_nTitleBarHeight = aToolBoxSize.Height();
145 134 : aWindowSize.Height() -= m_nTitleBarHeight;
146 : m_aContentWindow.SetPosSizePixel(
147 268 : Point( m_aBorder.Left(), m_nTitleBarHeight + m_aBorder.Top() ),
148 : Size(
149 134 : aWindowSize.Width() - m_aBorder.Left() - m_aBorder.Right(),
150 134 : aWindowSize.Height() - m_aBorder.Top() - m_aBorder.Bottom()
151 : )
152 536 : );
153 :
154 134 : onLayoutDone();
155 134 : }
156 :
157 :
158 202 : void TitledDockingWindow::Paint( const Rectangle& i_rArea )
159 : {
160 202 : if ( m_bLayoutPending )
161 134 : impl_layout();
162 :
163 202 : SfxDockingWindow::Paint( i_rArea );
164 :
165 202 : Push( PushFlags::FONT | PushFlags::FILLCOLOR | PushFlags::LINECOLOR );
166 :
167 202 : SetFillColor( GetSettings().GetStyleSettings().GetDialogColor() );
168 202 : SetLineColor();
169 :
170 : // bold font
171 202 : vcl::Font aFont( GetFont() );
172 202 : aFont.SetWeight( WEIGHT_BOLD );
173 202 : SetFont( aFont );
174 :
175 : // Set border values.
176 202 : Size aWindowSize( GetOutputSizePixel() );
177 202 : int nOuterLeft = 0;
178 202 : int nInnerLeft = nOuterLeft + m_aBorder.Left() - 1;
179 202 : int nOuterRight = aWindowSize.Width() - 1;
180 202 : int nInnerRight = nOuterRight - m_aBorder.Right() + 1;
181 202 : int nInnerTop = m_nTitleBarHeight + m_aBorder.Top() - 1;
182 202 : int nOuterBottom = aWindowSize.Height() - 1;
183 202 : int nInnerBottom = nOuterBottom - m_aBorder.Bottom() + 1;
184 :
185 : // Paint title bar background.
186 : Rectangle aTitleBarBox( Rectangle(
187 : nOuterLeft,
188 : 0,
189 : nOuterRight,
190 202 : nInnerTop-1
191 202 : ) );
192 202 : DrawRect( aTitleBarBox );
193 :
194 202 : if ( nInnerLeft > nOuterLeft )
195 202 : DrawRect( Rectangle( nOuterLeft, nInnerTop, nInnerLeft, nInnerBottom ) );
196 202 : if ( nOuterRight > nInnerRight )
197 202 : DrawRect( Rectangle( nInnerRight, nInnerTop, nOuterRight, nInnerBottom ) );
198 202 : if ( nInnerBottom < nOuterBottom )
199 202 : DrawRect( Rectangle( nOuterLeft, nInnerBottom, nOuterRight, nOuterBottom ) );
200 :
201 : // Paint bevel border.
202 202 : SetFillColor();
203 202 : SetLineColor( GetSettings().GetStyleSettings().GetShadowColor() );
204 202 : if ( m_aBorder.Top() > 0 )
205 202 : DrawLine( Point( nInnerLeft, nInnerTop ), Point( nInnerLeft, nInnerBottom ) );
206 202 : if ( m_aBorder.Left() > 0 )
207 202 : DrawLine( Point( nInnerLeft, nInnerTop ), Point( nInnerRight, nInnerTop ) );
208 :
209 202 : SetLineColor( GetSettings().GetStyleSettings().GetLightColor() );
210 202 : if ( m_aBorder.Bottom() > 0 )
211 202 : DrawLine( Point( nInnerRight, nInnerBottom ), Point( nInnerLeft, nInnerBottom ) );
212 202 : if ( m_aBorder.Right() > 0 )
213 202 : DrawLine( Point( nInnerRight, nInnerBottom ), Point( nInnerRight, nInnerTop ) );
214 :
215 : // Paint title bar text.
216 202 : SetLineColor( GetSettings().GetStyleSettings().GetActiveTextColor() );
217 202 : aTitleBarBox.Left() += 3;
218 202 : DrawText( aTitleBarBox, impl_getTitle(), TEXT_DRAW_LEFT | TEXT_DRAW_VCENTER | TEXT_DRAW_MULTILINE | TEXT_DRAW_WORDBREAK );
219 :
220 : // Restore original values of the output device.
221 202 : Pop();
222 202 : }
223 :
224 :
225 202 : OUString TitledDockingWindow::impl_getTitle() const
226 : {
227 202 : return !m_sTitle.isEmpty() ? m_sTitle : GetText();
228 : }
229 :
230 :
231 126 : void TitledDockingWindow::impl_resetToolBox()
232 : {
233 126 : m_aToolbox.Clear();
234 :
235 : // Get the closer bitmap and set it as right most button.
236 126 : Image aImage( SfxResId( SFX_IMG_CLOSE_DOC ) );
237 126 : m_aToolbox.InsertItem( 1, aImage );
238 126 : m_aToolbox.ShowItem( 1 );
239 126 : }
240 :
241 :
242 0 : sal_uInt16 TitledDockingWindow::impl_addDropDownToolBoxItem( const OUString& i_rItemText, const OString& i_nHelpId, const Link& i_rCallback )
243 : {
244 : // Add the menu before the closer button.
245 0 : const sal_uInt16 nItemCount( m_aToolbox.GetItemCount() );
246 0 : const sal_uInt16 nItemId( nItemCount + 1 );
247 0 : m_aToolbox.InsertItem( nItemId, i_rItemText, ToolBoxItemBits::DROPDOWNONLY, nItemCount > 0 ? nItemCount - 1 : TOOLBOX_APPEND );
248 0 : m_aToolbox.SetHelpId( nItemId, i_nHelpId );
249 0 : m_aToolbox.SetClickHdl( i_rCallback );
250 0 : m_aToolbox.SetDropdownClickHdl( i_rCallback );
251 :
252 : // The tool box has likely changed its size. The title bar has to be
253 : // resized.
254 0 : impl_scheduleLayout();
255 0 : Invalidate();
256 :
257 0 : return nItemId;
258 : }
259 :
260 :
261 0 : IMPL_LINK( TitledDockingWindow, OnToolboxItemSelected, ToolBox*, pToolBox )
262 : {
263 0 : const sal_uInt16 nId = pToolBox->GetCurItemId();
264 :
265 0 : if ( nId == 1 )
266 : {
267 : // the closer
268 0 : EndTracking();
269 0 : const sal_uInt16 nChildWindowId( GetChildWindow_Impl()->GetType() );
270 0 : const SfxBoolItem aVisibility( nChildWindowId, false );
271 0 : GetBindings().GetDispatcher()->Execute(
272 : nChildWindowId,
273 : SfxCallMode::ASYNCHRON | SfxCallMode::RECORD,
274 : &aVisibility,
275 : NULL
276 0 : );
277 : }
278 :
279 0 : return 0;
280 : }
281 :
282 :
283 0 : void TitledDockingWindow::StateChanged( StateChangedType i_nType )
284 : {
285 0 : switch ( i_nType )
286 : {
287 : case StateChangedType::INITSHOW:
288 0 : impl_scheduleLayout();
289 0 : break;
290 : default:;
291 : }
292 0 : SfxDockingWindow::StateChanged( i_nType );
293 0 : }
294 :
295 : //------------------------------------------------------------------------------------------------------------------
296 0 : void TitledDockingWindow::EndDocking( const Rectangle& i_rRect, bool i_bFloatMode )
297 : {
298 0 : SfxDockingWindow::EndDocking( i_rRect, i_bFloatMode );
299 :
300 0 : if ( m_aEndDockingHdl.IsSet() )
301 0 : m_aEndDockingHdl.Call( this );
302 0 : }
303 :
304 :
305 0 : void TitledDockingWindow::DataChanged( const DataChangedEvent& i_rDataChangedEvent )
306 : {
307 0 : SfxDockingWindow::DataChanged( i_rDataChangedEvent );
308 :
309 0 : switch ( i_rDataChangedEvent.GetType() )
310 : {
311 : case DATACHANGED_SETTINGS:
312 0 : if ( ( i_rDataChangedEvent.GetFlags() & SETTINGS_STYLE ) == 0)
313 0 : break;
314 : // else fall through.
315 : case DATACHANGED_FONTS:
316 : case DATACHANGED_FONTSUBSTITUTION:
317 : {
318 0 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
319 :
320 : // Font.
321 0 : vcl::Font aFont = rStyleSettings.GetAppFont();
322 0 : if ( IsControlFont() )
323 0 : aFont.Merge( GetControlFont() );
324 0 : SetZoomedPointFont( aFont );
325 :
326 : // Color.
327 0 : Color aColor;
328 0 : if ( IsControlForeground() )
329 0 : aColor = GetControlForeground();
330 : else
331 0 : aColor = rStyleSettings.GetButtonTextColor();
332 0 : SetTextColor( aColor );
333 0 : SetTextFillColor();
334 :
335 0 : impl_scheduleLayout();
336 0 : Invalidate();
337 : }
338 0 : break;
339 : }
340 0 : }
341 :
342 :
343 951 : } // namespace sfx2
344 :
345 :
346 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|