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 .
20 #include "PageOrientationControl.hxx"
21 #include "PageMarginControl.hxx"
22 #include <PageOrientationPopup.hxx>
23 #include <com/sun/star/document/XUndoManager.hpp>
24 #include <com/sun/star/document/XUndoManagerSupplier.hpp>
25 #include <com/sun/star/frame/XFrame.hpp>
27 #include <sfx2/viewsh.hxx>
28 #include <sfx2/dispatch.hxx>
29 #include <sfx2/viewfrm.hxx>
33 css::uno::Reference
< css::document::XUndoManager
> getUndoManager( const css::uno::Reference
< css::frame::XFrame
>& rxFrame
)
35 const css::uno::Reference
< css::frame::XController
>& xController
= rxFrame
->getController();
36 if ( xController
.is() )
38 const css::uno::Reference
< css::frame::XModel
>& xModel
= xController
->getModel();
41 const css::uno::Reference
< css::document::XUndoManagerSupplier
> xSuppUndo( xModel
, css::uno::UNO_QUERY_THROW
);
42 return css::uno::Reference
< css::document::XUndoManager
>( xSuppUndo
->getUndoManager(), css::uno::UNO_SET_THROW
);
46 return css::uno::Reference
< css::document::XUndoManager
> ();
50 namespace sw::sidebar
{
52 PageOrientationControl::PageOrientationControl(PageOrientationPopup
* pControl
, weld::Widget
* pParent
)
53 : WeldToolbarPopup(pControl
->getFrameInterface(), pParent
, "modules/swriter/ui/pageorientationcontrol.ui", "PageOrientationControl")
54 , m_xPortrait(m_xBuilder
->weld_button("portrait"))
55 , m_xLandscape(m_xBuilder
->weld_button("landscape"))
56 , m_xControl(pControl
)
57 , mpPageItem( new SvxPageItem(SID_ATTR_PAGE
) )
58 , mpPageSizeItem( new SvxSizeItem(SID_ATTR_PAGE_SIZE
) )
59 , mpPageLRMarginItem( new SvxLongLRSpaceItem( 0, 0, SID_ATTR_PAGE_LRSPACE
) )
60 , mpPageULMarginItem( new SvxLongULSpaceItem( 0, 0, SID_ATTR_PAGE_ULSPACE
) )
62 m_xPortrait
->connect_clicked( LINK( this, PageOrientationControl
,ImplOrientationHdl
) );
63 m_xLandscape
->connect_clicked( LINK( this, PageOrientationControl
,ImplOrientationHdl
) );
66 void PageOrientationControl::GrabFocus()
68 m_xPortrait
->grab_focus();
71 PageOrientationControl::~PageOrientationControl()
75 void PageOrientationControl::ExecuteMarginLRChange(
76 const tools::Long nPageLeftMargin
,
77 const tools::Long nPageRightMargin
)
79 mpPageLRMarginItem
->SetLeft( nPageLeftMargin
);
80 mpPageLRMarginItem
->SetRight( nPageRightMargin
);
81 SfxViewShell::Current()->GetDispatcher()->ExecuteList(SID_ATTR_PAGE_LRSPACE
,
82 SfxCallMode::RECORD
, { mpPageLRMarginItem
.get() });
85 void PageOrientationControl::ExecuteMarginULChange(
86 const tools::Long nPageTopMargin
,
87 const tools::Long nPageBottomMargin
)
89 mpPageULMarginItem
->SetUpper( nPageTopMargin
);
90 mpPageULMarginItem
->SetLower( nPageBottomMargin
);
91 SfxViewShell::Current()->GetDispatcher()->ExecuteList(SID_ATTR_PAGE_ULSPACE
,
92 SfxCallMode::RECORD
, { mpPageULMarginItem
.get() });
95 void PageOrientationControl::ExecuteOrientationChange( const bool bLandscape
)
97 css::uno::Reference
< css::document::XUndoManager
> mxUndoManager(
98 getUndoManager( SfxViewFrame::Current()->GetFrame().GetFrameInterface() ) );
100 if ( mxUndoManager
.is() )
101 mxUndoManager
->enterUndoContext( "" );
103 const SfxPoolItem
* pItem
;
104 SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState(SID_ATTR_PAGE_SIZE
, pItem
);
105 mpPageSizeItem
.reset( static_cast<SvxSizeItem
*>(pItem
->Clone()) );
107 // Prevent accidental toggling of page orientation
108 if ((mpPageSizeItem
->GetWidth() > mpPageSizeItem
->GetHeight()) == bLandscape
)
110 if ( mxUndoManager
.is() )
111 mxUndoManager
->leaveUndoContext();
115 SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState(SID_ATTR_PAGE_LRSPACE
, pItem
);
116 mpPageLRMarginItem
.reset( static_cast<SvxLongLRSpaceItem
*>(pItem
->Clone()) );
118 SfxViewFrame::Current()->GetBindings().GetDispatcher()->QueryState(SID_ATTR_PAGE_ULSPACE
, pItem
);
119 mpPageULMarginItem
.reset( static_cast<SvxLongULSpaceItem
*>(pItem
->Clone()) );
122 // set new page orientation
123 mpPageItem
->SetLandscape( bLandscape
);
125 // swap the width and height of the page size
126 const tools::Long nRotatedWidth
= mpPageSizeItem
->GetSize().Height();
127 const tools::Long nRotatedHeight
= mpPageSizeItem
->GetSize().Width();
128 mpPageSizeItem
->SetSize(Size(nRotatedWidth
, nRotatedHeight
));
130 // apply changed attributes
131 if (SfxViewShell::Current())
133 SfxViewShell::Current()->GetDispatcher()->ExecuteList(SID_ATTR_PAGE_SIZE
,
134 SfxCallMode::RECORD
, { mpPageSizeItem
.get(), mpPageItem
.get() });
138 // check, if margin values still fit to the changed page size.
139 // if not, adjust margin values
141 const tools::Long nML
= mpPageLRMarginItem
->GetLeft();
142 const tools::Long nMR
= mpPageLRMarginItem
->GetRight();
143 const tools::Long nTmpPW
= nML
+ nMR
+ MINBODY
;
145 const tools::Long nPW
= mpPageSizeItem
->GetSize().Width();
151 ExecuteMarginLRChange( mpPageLRMarginItem
->GetLeft(), nMR
- (nTmpPW
- nPW
) );
155 ExecuteMarginLRChange( nML
- (nTmpPW
- nPW
), mpPageLRMarginItem
->GetRight() );
159 const tools::Long nMT
= mpPageULMarginItem
->GetUpper();
160 const tools::Long nMB
= mpPageULMarginItem
->GetLower();
161 const tools::Long nTmpPH
= nMT
+ nMB
+ MINBODY
;
163 const tools::Long nPH
= mpPageSizeItem
->GetSize().Height();
169 ExecuteMarginULChange( mpPageULMarginItem
->GetUpper(), nMB
- ( nTmpPH
- nPH
) );
173 ExecuteMarginULChange( nMT
- ( nTmpPH
- nPH
), mpPageULMarginItem
->GetLower() );
178 if ( mxUndoManager
.is() )
179 mxUndoManager
->leaveUndoContext();
182 IMPL_LINK(PageOrientationControl
, ImplOrientationHdl
, weld::Button
&, rControl
, void)
184 if (&rControl
== m_xPortrait
.get())
185 ExecuteOrientationChange( false );
187 ExecuteOrientationChange( true );
189 m_xControl
->EndPopupMode();
192 } // end of namespace sw::sidebar
194 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */