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 "ParaLineSpacingPopup.hxx"
21 : #include "ParaLineSpacingControl.hxx"
22 : #include <boost/bind.hpp>
23 : #include <unotools/viewoptions.hxx>
24 :
25 : namespace svx { namespace sidebar {
26 :
27 738 : ParaLineSpacingPopup::ParaLineSpacingPopup(vcl::Window* pParent, const ::boost::function<PopupControl*(PopupContainer*)>& rControlCreator)
28 : : Popup(
29 : pParent,
30 : rControlCreator,
31 738 : OUString("Paragraph Line Spacing"))
32 : {
33 738 : SetPopupModeEndHandler(::boost::bind(&ParaLineSpacingPopup::PopupModeEndCallback, this));
34 738 : }
35 :
36 738 : ParaLineSpacingPopup::~ParaLineSpacingPopup()
37 : {
38 738 : }
39 :
40 0 : void ParaLineSpacingPopup::Rearrange(SfxItemState currSPState,FieldUnit currMetricUnit,SvxLineSpacingItem* currSPItem,const ::sfx2::sidebar::EnumContext currentContext)
41 : {
42 0 : ProvideContainerAndControl();
43 :
44 0 : ParaLineSpacingControl* pControl = dynamic_cast<ParaLineSpacingControl*>(mpControl.get());
45 0 : if (pControl != NULL)
46 0 : pControl->Rearrange(currSPState, currMetricUnit, currSPItem,currentContext);
47 0 : }
48 :
49 0 : void ParaLineSpacingPopup::PopupModeEndCallback()
50 : {
51 0 : ProvideContainerAndControl();
52 0 : ParaLineSpacingControl* pControl = dynamic_cast<ParaLineSpacingControl*>(mpControl.get());
53 0 : if (pControl == NULL)
54 0 : return;
55 :
56 0 : pControl->PopupModeEndCallback();
57 : }
58 :
59 594 : } }
60 :
61 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|