1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <memory>
#include "PageColumnControl.hxx"
#include <PageColumnPopup.hxx>
#include <cmdid.h>
#include <sfx2/bindings.hxx>
#include <sfx2/dispatch.hxx>
#include <sfx2/viewfrm.hxx>
#include <svl/intitem.hxx>
#include <svx/pageitem.hxx>
namespace sw::sidebar {
PageColumnControl::PageColumnControl(PageColumnPopup* pControl, weld::Widget* pParent)
: WeldToolbarPopup(pControl->getFrameInterface(), pParent, "modules/swriter/ui/pagecolumncontrol.ui", "PageColumnControl")
, m_xMoreButton(m_xBuilder->weld_button("moreoptions"))
, m_xControl(pControl)
{
bool bLandscape = false;
if (SfxViewFrame* pViewFrm = SfxViewFrame::Current())
{
SfxPoolItemHolder aResult;
pViewFrm->GetBindings().GetDispatcher()->QueryState(SID_ATTR_PAGE, aResult);
const SvxPageItem* pPageItem(static_cast<const SvxPageItem*>(aResult.getItem()));
bLandscape = pPageItem->IsLandscape();
}
if ( bLandscape )
{
m_xOneColumn = m_xBuilder->weld_button("column1L");
m_xTwoColumns = m_xBuilder->weld_button("column2L");
m_xThreeColumns = m_xBuilder->weld_button("column3L");
m_xLeft = m_xBuilder->weld_button("columnleftL");
m_xRight = m_xBuilder->weld_button("columnrightL");
}
else
{
m_xOneColumn = m_xBuilder->weld_button("column1");
m_xTwoColumns = m_xBuilder->weld_button( "column2");
m_xThreeColumns = m_xBuilder->weld_button("column3");
m_xLeft = m_xBuilder->weld_button("columnleft");
m_xRight = m_xBuilder->weld_button("columnright");
}
m_xOneColumn->show();
m_xTwoColumns->show();
m_xThreeColumns->show();
m_xLeft->show();
m_xRight->show();
m_xOneColumn->connect_clicked( LINK( this, PageColumnControl, ColumnButtonClickHdl_Impl ) );
m_xTwoColumns->connect_clicked( LINK( this, PageColumnControl, ColumnButtonClickHdl_Impl ) );
m_xThreeColumns->connect_clicked( LINK( this, PageColumnControl, ColumnButtonClickHdl_Impl ) );
m_xLeft->connect_clicked( LINK( this, PageColumnControl, ColumnButtonClickHdl_Impl ) );
m_xRight->connect_clicked( LINK( this, PageColumnControl, ColumnButtonClickHdl_Impl ) );
m_xMoreButton->connect_clicked( LINK( this, PageColumnControl, MoreButtonClickHdl_Impl ) );
}
void PageColumnControl::GrabFocus()
{
m_xMoreButton->grab_focus();
}
PageColumnControl::~PageColumnControl()
{
}
void PageColumnControl::ExecuteColumnChange( const sal_uInt16 nColumnType )
{
SfxInt16Item aPageColumnTypeItem(SID_ATTR_PAGE_COLUMN);
aPageColumnTypeItem.SetValue( nColumnType );
if (SfxViewFrame* pViewFrm = SfxViewFrame::Current())
pViewFrm->GetBindings().GetDispatcher()->ExecuteList(SID_ATTR_PAGE_COLUMN,
SfxCallMode::RECORD, { &aPageColumnTypeItem });
}
IMPL_LINK( PageColumnControl, ColumnButtonClickHdl_Impl, weld::Button&, rButton, void )
{
if ( &rButton == m_xOneColumn.get() )
ExecuteColumnChange( 1 );
else if ( &rButton == m_xTwoColumns.get() )
ExecuteColumnChange( 2 );
else if ( &rButton == m_xThreeColumns.get() )
ExecuteColumnChange( 3 );
else if ( &rButton == m_xLeft.get() )
ExecuteColumnChange( 4 );
else if ( &rButton == m_xRight.get() )
ExecuteColumnChange( 5 );
m_xControl->EndPopupMode();
}
IMPL_LINK_NOARG( PageColumnControl, MoreButtonClickHdl_Impl, weld::Button&, void )
{
if (SfxViewFrame* pViewFrm = SfxViewFrame::Current())
pViewFrm->GetBindings().GetDispatcher()->Execute( FN_FORMAT_PAGE_COLUMN_DLG, SfxCallMode::ASYNCHRON );
m_xControl->EndPopupMode();
}
} // end of namespace sw::sidebar
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|