1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 <comphelper/propertyvalue.hxx>
24 #include <svl/eitem.hxx>
25 #include <vcl/toolbox.hxx>
26 #include <vcl/settings.hxx>
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
, ToolBoxItemId nId
, ToolBox
& rTbx
)
39 : SfxToolBoxControl( nSlotId
, nId
, rTbx
)
40 , m_bPersistentCopy(false)
41 , m_aDoubleClickTimer("FormatPaintBrushToolBoxControl 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
{ comphelper::makePropertyValue("PersistentCopy",
60 Dispatch( ".uno:FormatPaintbrush"
65 void FormatPaintBrushToolBoxControl::DoubleClick()
67 m_aDoubleClickTimer
.Stop();
69 m_bPersistentCopy
= true;
70 impl_executePaintBrush();
74 void FormatPaintBrushToolBoxControl::Click()
76 m_bPersistentCopy
= false;
77 m_aDoubleClickTimer
.Start();
81 IMPL_LINK_NOARG(FormatPaintBrushToolBoxControl
, WaitDoubleClickHdl
, Timer
*, void)
83 //there was no second click during waiting
84 impl_executePaintBrush();
88 void FormatPaintBrushToolBoxControl::Select(sal_uInt16
/*nSelectModifier*/)
93 void FormatPaintBrushToolBoxControl::StateChangedAtToolBoxControl( sal_uInt16 nSID
, SfxItemState eState
,
94 const SfxPoolItem
* pState
)
96 if( eState
!= SfxItemState::DEFAULT
&& eState
!= SfxItemState::SET
)
97 m_bPersistentCopy
= false;
98 SfxToolBoxControl::StateChangedAtToolBoxControl( nSID
, eState
, pState
);
105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */