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 "tbunocontroller.hxx"
22 :
23 : #include <com/sun/star/frame/status/FontHeight.hpp>
24 : #include <com/sun/star/frame/XDispatchProvider.hpp>
25 : #include <com/sun/star/beans/PropertyValue.hpp>
26 :
27 : #include <vcl/svapp.hxx>
28 : #include <vcl/window.hxx>
29 : #include <toolkit/helper/vclunohelper.hxx>
30 : #include <svtools/ctrltool.hxx>
31 : #include <svtools/ctrlbox.hxx>
32 : #include <osl/mutex.hxx>
33 :
34 : #include <memory>
35 :
36 : #define LOGICAL_EDIT_HEIGHT 12
37 :
38 : using namespace ::com::sun::star;
39 :
40 : namespace svx
41 : {
42 :
43 : class FontHeightToolBoxControl;
44 0 : class SvxFontSizeBox_Impl : public FontSizeBox
45 : {
46 : public:
47 : SvxFontSizeBox_Impl( Window* pParent,
48 : const uno::Reference< frame::XDispatchProvider >& rDispatchProvider,
49 : const uno::Reference< frame::XFrame >& _xFrame,
50 : FontHeightToolBoxControl& rCtrl );
51 :
52 : void statusChanged_Impl( long nHeight, bool bErase = false );
53 : void UpdateFont( const ::com::sun::star::awt::FontDescriptor& rCurrentFont );
54 :
55 : virtual long Notify( NotifyEvent& rNEvt );
56 :
57 : protected:
58 : virtual void Select();
59 : virtual void DataChanged( const DataChangedEvent& rDCEvt );
60 :
61 : private:
62 : FontHeightToolBoxControl* m_pCtrl;
63 : String m_aCurText;
64 : Size m_aLogicalSize;
65 : sal_Bool m_bRelease;
66 : uno::Reference< frame::XDispatchProvider > m_xDispatchProvider;
67 : uno::Reference< frame::XFrame > m_xFrame;
68 : uno::Reference< awt::XWindow > m_xOldFocusWindow;
69 :
70 : void ReleaseFocus_Impl();
71 : };
72 :
73 : //========================================================================
74 : // class SvxFontSizeBox_Impl --------------------------------------------------
75 : //========================================================================
76 :
77 0 : SvxFontSizeBox_Impl::SvxFontSizeBox_Impl(
78 : Window* _pParent,
79 : const uno::Reference< frame::XDispatchProvider >& _rDispatchProvider,
80 : const uno::Reference< frame::XFrame >& _xFrame,
81 : FontHeightToolBoxControl& _rCtrl ) :
82 :
83 : FontSizeBox( _pParent, WinBits( WB_DROPDOWN ) ),
84 :
85 : m_pCtrl ( &_rCtrl ),
86 : m_aLogicalSize ( 30,100 ),
87 : m_bRelease ( sal_True ),
88 : m_xDispatchProvider ( _rDispatchProvider ),
89 0 : m_xFrame ( _xFrame )
90 : {
91 0 : SetSizePixel( LogicToPixel( m_aLogicalSize, MAP_APPFONT ));
92 0 : SetValue( 0 );
93 0 : SetText( String() );
94 0 : }
95 :
96 : // -----------------------------------------------------------------------
97 :
98 0 : void SvxFontSizeBox_Impl::ReleaseFocus_Impl()
99 : {
100 0 : if ( !m_bRelease )
101 : {
102 0 : m_bRelease = sal_True;
103 0 : return;
104 : }
105 :
106 0 : if ( m_xFrame.is() && m_xFrame->getContainerWindow().is() )
107 0 : m_xFrame->getContainerWindow()->setFocus();
108 : }
109 :
110 : // -----------------------------------------------------------------------
111 :
112 0 : void SvxFontSizeBox_Impl::Select()
113 : {
114 0 : FontSizeBox::Select();
115 :
116 0 : if ( !IsTravelSelect() )
117 : {
118 0 : sal_Int64 nSelVal = GetValue();
119 0 : float fSelVal = float( nSelVal ) / 10;
120 :
121 0 : uno::Sequence< beans::PropertyValue > aArgs( 1 );
122 0 : aArgs[0].Name = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "FontHeight.Height" ));
123 0 : aArgs[0].Value = uno::makeAny( fSelVal );
124 :
125 : /* #i33380# DR 2004-09-03 Moved the following line above the Dispatch() call.
126 : This instance may be deleted in the meantime (i.e. when a dialog is opened
127 : while in Dispatch()), accessing members will crash in this case. */
128 0 : ReleaseFocus_Impl();
129 :
130 0 : m_pCtrl->dispatchCommand( aArgs );
131 : }
132 0 : }
133 :
134 : // -----------------------------------------------------------------------
135 :
136 0 : void SvxFontSizeBox_Impl::statusChanged_Impl( long nPoint, bool bErase )
137 : {
138 0 : if ( !bErase )
139 : {
140 : // Metric Umrechnen
141 0 : long nVal = nPoint;
142 :
143 : // ge"andert => neuen Wert setzen
144 0 : if ( GetValue() != nVal )
145 0 : SetValue( nVal );
146 : }
147 : else
148 : {
149 : // Wert in der Anzeige l"oschen
150 0 : SetValue( -1L );
151 0 : SetText( String() );
152 : }
153 0 : SaveValue();
154 0 : }
155 :
156 : // -----------------------------------------------------------------------
157 :
158 0 : void SvxFontSizeBox_Impl::UpdateFont( const ::com::sun::star::awt::FontDescriptor& rCurrentFont )
159 : {
160 : // Sizes-Liste auff"ullen
161 0 : sal_Int64 nOldVal = GetValue(); // alten Wert merken
162 0 : const FontList* _pFontList = NULL;
163 0 : ::std::auto_ptr<FontList> aHold( new FontList( this ));
164 0 : _pFontList = aHold.get();
165 :
166 0 : if ( !rCurrentFont.Name.isEmpty() )
167 : {
168 0 : FontInfo _aFontInfo;
169 0 : _aFontInfo.SetName( rCurrentFont.Name );
170 0 : _aFontInfo.SetStyleName( rCurrentFont.StyleName );
171 0 : _aFontInfo.SetHeight( rCurrentFont.Height );
172 0 : Fill( &_aFontInfo, _pFontList );
173 : }
174 : else
175 : {
176 0 : Fill( NULL, _pFontList );
177 : }
178 0 : SetValue( nOldVal ); // alten Wert wiederherstellen
179 0 : m_aCurText = GetText(); // zum R"ucksetzen bei ESC merken
180 0 : }
181 :
182 : // -----------------------------------------------------------------------
183 :
184 0 : long SvxFontSizeBox_Impl::Notify( NotifyEvent& rNEvt )
185 : {
186 0 : long nHandled = 0;
187 :
188 0 : if ( rNEvt.GetType() == EVENT_KEYINPUT )
189 : {
190 0 : sal_uInt16 nCode = rNEvt.GetKeyEvent()->GetKeyCode().GetCode();
191 :
192 0 : switch ( nCode )
193 : {
194 : case KEY_RETURN:
195 : case KEY_TAB:
196 : {
197 0 : if ( KEY_TAB == nCode )
198 0 : m_bRelease = sal_False;
199 : else
200 0 : nHandled = 1;
201 0 : Select();
202 0 : break;
203 : }
204 :
205 : case KEY_ESCAPE:
206 0 : SetText( m_aCurText );
207 0 : ReleaseFocus_Impl();
208 0 : nHandled = 1;
209 0 : break;
210 : }
211 : }
212 0 : else if( EVENT_LOSEFOCUS == rNEvt.GetType() )
213 : {
214 0 : Window* pFocusWin = Application::GetFocusWindow();
215 0 : if(!HasFocus() && GetSubEdit() != pFocusWin)
216 0 : SetText(GetSavedValue());
217 : }
218 :
219 0 : return nHandled ? nHandled : FontSizeBox::Notify( rNEvt );
220 : }
221 :
222 : // ---------------------------------------------------------------------------
223 :
224 0 : void SvxFontSizeBox_Impl::DataChanged( const DataChangedEvent& rDCEvt )
225 : {
226 0 : if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
227 0 : (rDCEvt.GetFlags() & SETTINGS_STYLE) )
228 : {
229 0 : SetSizePixel( LogicToPixel( m_aLogicalSize, MAP_APPFONT ));
230 0 : Size aDropSize( m_aLogicalSize.Width(), LOGICAL_EDIT_HEIGHT );
231 0 : SetDropDownSizePixel( LogicToPixel( aDropSize, MAP_APPFONT ));
232 : }
233 :
234 0 : FontSizeBox::DataChanged( rDCEvt );
235 0 : }
236 :
237 : //========================================================================
238 : // class FontHeightToolBoxControl
239 : //========================================================================
240 :
241 0 : FontHeightToolBoxControl::FontHeightToolBoxControl(
242 : const uno::Reference< lang::XMultiServiceFactory >& rServiceManager ) :
243 : svt::ToolboxController( rServiceManager,
244 : uno::Reference< frame::XFrame >(),
245 : ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ".uno:FontHeight" )) ),
246 0 : m_pBox( NULL )
247 : {
248 0 : addStatusListener( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ".uno:CharFontName" )));
249 0 : }
250 :
251 0 : FontHeightToolBoxControl::~FontHeightToolBoxControl()
252 : {
253 0 : }
254 :
255 : // XInterface
256 0 : ::com::sun::star::uno::Any SAL_CALL FontHeightToolBoxControl::queryInterface( const ::com::sun::star::uno::Type& aType )
257 : throw (::com::sun::star::uno::RuntimeException)
258 : {
259 0 : uno::Any a = ToolboxController::queryInterface( aType );
260 0 : if ( a.hasValue() )
261 0 : return a;
262 :
263 0 : return ::cppu::queryInterface( aType, static_cast< lang::XServiceInfo* >( this ));
264 : }
265 :
266 0 : void SAL_CALL FontHeightToolBoxControl::acquire() throw ()
267 : {
268 0 : ToolboxController::acquire();
269 0 : }
270 :
271 0 : void SAL_CALL FontHeightToolBoxControl::release() throw ()
272 : {
273 0 : ToolboxController::release();
274 0 : }
275 :
276 : // XServiceInfo
277 0 : sal_Bool SAL_CALL FontHeightToolBoxControl::supportsService( const ::rtl::OUString& ServiceName )
278 : throw(uno::RuntimeException)
279 : {
280 0 : const uno::Sequence< ::rtl::OUString > aSNL( getSupportedServiceNames() );
281 0 : const ::rtl::OUString * pArray = aSNL.getConstArray();
282 :
283 0 : for( sal_Int32 i = 0; i < aSNL.getLength(); i++ )
284 0 : if( pArray[i] == ServiceName )
285 0 : return true;
286 :
287 0 : return false;
288 : }
289 :
290 0 : ::rtl::OUString SAL_CALL FontHeightToolBoxControl::getImplementationName()
291 : throw( uno::RuntimeException )
292 : {
293 0 : return getImplementationName_Static();
294 : }
295 :
296 0 : uno::Sequence< ::rtl::OUString > SAL_CALL FontHeightToolBoxControl::getSupportedServiceNames( )
297 : throw( uno::RuntimeException )
298 : {
299 0 : return getSupportedServiceNames_Static();
300 : }
301 :
302 0 : uno::Sequence< ::rtl::OUString > FontHeightToolBoxControl::getSupportedServiceNames_Static()
303 : throw()
304 : {
305 0 : uno::Sequence< ::rtl::OUString > aSNS( 1 );
306 0 : aSNS.getArray()[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.frame.ToolbarController" ));
307 0 : return aSNS;
308 : }
309 :
310 : // XComponent
311 0 : void SAL_CALL FontHeightToolBoxControl::dispose()
312 : throw (uno::RuntimeException)
313 : {
314 0 : svt::ToolboxController::dispose();
315 :
316 0 : SolarMutexGuard aSolarMutexGuard;
317 0 : delete m_pBox;
318 0 : m_pBox = 0;
319 0 : }
320 :
321 : // XStatusListener
322 0 : void SAL_CALL FontHeightToolBoxControl::statusChanged(
323 : const frame::FeatureStateEvent& rEvent )
324 : throw ( uno::RuntimeException )
325 : {
326 0 : if ( m_pBox )
327 : {
328 0 : SolarMutexGuard aSolarMutexGuard;
329 0 : if ( rEvent.FeatureURL.Path == "FontHeight" )
330 : {
331 0 : if ( rEvent.IsEnabled )
332 : {
333 0 : m_pBox->Enable();
334 0 : frame::status::FontHeight aFontHeight;
335 0 : if ( rEvent.State >>= aFontHeight )
336 0 : m_pBox->statusChanged_Impl( long( 10. * aFontHeight.Height ), false );
337 : else
338 0 : m_pBox->statusChanged_Impl( long( -1 ), true );
339 : }
340 : else
341 0 : m_pBox->Disable();
342 : }
343 0 : else if ( rEvent.FeatureURL.Path == "CharFontName" )
344 : {
345 0 : if ( rEvent.State >>= m_aCurrentFont )
346 0 : m_pBox->UpdateFont( m_aCurrentFont );
347 0 : }
348 : }
349 0 : }
350 :
351 : // XToolbarController
352 0 : void SAL_CALL FontHeightToolBoxControl::execute( sal_Int16 /*KeyModifier*/ )
353 : throw (::com::sun::star::uno::RuntimeException)
354 : {
355 0 : }
356 :
357 0 : void SAL_CALL FontHeightToolBoxControl::click()
358 : throw (::com::sun::star::uno::RuntimeException)
359 : {
360 0 : }
361 :
362 0 : void SAL_CALL FontHeightToolBoxControl::doubleClick()
363 : throw (::com::sun::star::uno::RuntimeException)
364 : {
365 0 : }
366 :
367 0 : uno::Reference< awt::XWindow > SAL_CALL FontHeightToolBoxControl::createPopupWindow()
368 : throw (::com::sun::star::uno::RuntimeException)
369 : {
370 0 : return uno::Reference< awt::XWindow >();
371 : }
372 :
373 0 : uno::Reference< awt::XWindow > SAL_CALL FontHeightToolBoxControl::createItemWindow(
374 : const uno::Reference< awt::XWindow >& Parent )
375 : throw (::com::sun::star::uno::RuntimeException)
376 : {
377 0 : uno::Reference< awt::XWindow > xItemWindow;
378 0 : uno::Reference< awt::XWindow > xParent( Parent );
379 :
380 0 : Window* pParent = VCLUnoHelper::GetWindow( xParent );
381 0 : if ( pParent )
382 : {
383 0 : SolarMutexGuard aSolarMutexGuard;
384 : m_pBox = new SvxFontSizeBox_Impl(
385 : pParent,
386 : uno::Reference< frame::XDispatchProvider >( m_xFrame, uno::UNO_QUERY ),
387 : m_xFrame,
388 0 : *this );
389 0 : xItemWindow = VCLUnoHelper::GetInterface( m_pBox );
390 : }
391 :
392 0 : return xItemWindow;
393 : }
394 :
395 0 : void FontHeightToolBoxControl::dispatchCommand(
396 : const uno::Sequence< beans::PropertyValue >& rArgs )
397 : {
398 0 : uno::Reference< frame::XDispatchProvider > xDispatchProvider( m_xFrame, uno::UNO_QUERY );
399 0 : if ( xDispatchProvider.is() )
400 : {
401 0 : util::URL aURL;
402 0 : uno::Reference< frame::XDispatch > xDispatch;
403 0 : uno::Reference< util::XURLTransformer > xURLTransformer = getURLTransformer();
404 :
405 0 : aURL.Complete = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( ".uno:FontHeight" ));
406 0 : xURLTransformer->parseStrict( aURL );
407 0 : xDispatch = xDispatchProvider->queryDispatch( aURL, ::rtl::OUString(), 0 );
408 0 : if ( xDispatch.is() )
409 0 : xDispatch->dispatch( aURL, rArgs );
410 0 : }
411 0 : }
412 :
413 0 : uno::Reference< uno::XInterface > SAL_CALL FontHeightToolBoxControl_createInstance(
414 : const uno::Reference< lang::XMultiServiceFactory >& rSMgr )
415 : {
416 0 : return *new FontHeightToolBoxControl( rSMgr );
417 : }
418 :
419 : }
420 :
421 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|