Bump version to 6.4-15
[LibreOffice.git] / svx / source / tbxctrls / formatpaintbrushctrl.cxx
blob43352b79098b3bb672ea3c3b79a2c2a563a125c6
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <svx/formatpaintbrushctrl.hxx>
23 #include <svl/eitem.hxx>
24 #include <sfx2/app.hxx>
25 #include <vcl/toolbox.hxx>
26 #include <vcl/settings.hxx>
29 namespace svx
33 using namespace ::com::sun::star::uno;
34 using namespace ::com::sun::star::beans;
36 SFX_IMPL_TOOLBOX_CONTROL( FormatPaintBrushToolBoxControl, SfxBoolItem );
38 FormatPaintBrushToolBoxControl::FormatPaintBrushToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rTbx )
39 : SfxToolBoxControl( nSlotId, nId, rTbx )
40 , m_bPersistentCopy(false)
41 , m_aDoubleClickTimer()
43 sal_uInt64 nDblClkTime = rTbx.GetSettings().GetMouseSettings().GetDoubleClickTime();
45 m_aDoubleClickTimer.SetInvokeHandler( LINK(this, FormatPaintBrushToolBoxControl, WaitDoubleClickHdl) );
46 m_aDoubleClickTimer.SetTimeout(nDblClkTime);
50 FormatPaintBrushToolBoxControl::~FormatPaintBrushToolBoxControl()
52 m_aDoubleClickTimer.Stop();
56 void FormatPaintBrushToolBoxControl::impl_executePaintBrush()
58 Sequence< PropertyValue > aArgs( 1 );
59 aArgs[0].Name = "PersistentCopy";
60 aArgs[0].Value <<= m_bPersistentCopy;
61 Dispatch( ".uno:FormatPaintbrush"
62 , aArgs );
66 void FormatPaintBrushToolBoxControl::DoubleClick()
68 m_aDoubleClickTimer.Stop();
70 m_bPersistentCopy = true;
71 impl_executePaintBrush();
75 void FormatPaintBrushToolBoxControl::Click()
77 m_bPersistentCopy = false;
78 m_aDoubleClickTimer.Start();
82 IMPL_LINK_NOARG(FormatPaintBrushToolBoxControl, WaitDoubleClickHdl, Timer *, void)
84 //there was no second click during waiting
85 impl_executePaintBrush();
89 void FormatPaintBrushToolBoxControl::Select(sal_uInt16 /*nSelectModifier*/)
94 void FormatPaintBrushToolBoxControl::StateChanged( sal_uInt16 nSID, SfxItemState eState,
95 const SfxPoolItem* pState )
97 if( eState != SfxItemState::DEFAULT && eState != SfxItemState::SET )
98 m_bPersistentCopy = false;
99 SfxToolBoxControl::StateChanged( nSID, eState, pState );
103 } //namespace svx
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */