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 .
19 #include "vbacolumn.hxx"
21 #include <vbahelper/vbahelper.hxx>
22 #include <com/sun/star/frame/XModel.hpp>
23 #include <com/sun/star/table/XCellRange.hpp>
24 #include <com/sun/star/view/XSelectionSupplier.hpp>
25 #include "vbatablehelper.hxx"
27 using namespace ::ooo::vba
;
28 using namespace ::com::sun::star
;
30 SwVbaColumn::SwVbaColumn( const uno::Reference
< ooo::vba::XHelperInterface
>& rParent
, const uno::Reference
< uno::XComponentContext
>& rContext
, uno::Reference
< text::XTextTable
> xTextTable
, sal_Int32 nIndex
) :
31 SwVbaColumn_BASE( rParent
, rContext
), mxTextTable(std::move( xTextTable
)), mnIndex( nIndex
)
35 SwVbaColumn::~SwVbaColumn()
40 SwVbaColumn::getWidth( )
42 SwVbaTableHelper
aTableHelper( mxTextTable
);
43 return aTableHelper
.GetColWidth( mnIndex
);
47 SwVbaColumn::setWidth( sal_Int32 _width
)
50 SwVbaTableHelper
aTableHelper( mxTextTable
);
51 aTableHelper
.SetColWidth( _width
, mnIndex
);
55 SwVbaColumn::Select( )
57 SelectColumn( getCurrentWordDoc(mxContext
), mxTextTable
, mnIndex
, mnIndex
);
60 void SwVbaColumn::SelectColumn( const uno::Reference
< frame::XModel
>& xModel
, const uno::Reference
< text::XTextTable
>& xTextTable
, sal_Int32 nStartColumn
, sal_Int32 nEndColumn
)
62 OUString sStartCol
= SwVbaTableHelper::getColumnStr( nStartColumn
);
63 OUString aRangeName
= sStartCol
+ OUString::number( 1 );
64 OUString sEndCol
= SwVbaTableHelper::getColumnStr( nEndColumn
);
65 sal_Int32 nRowCount
= xTextTable
->getRows()->getCount();
66 aRangeName
+= ":" + sEndCol
+ OUString::number(nRowCount
);
68 uno::Reference
< table::XCellRange
> xCellRange( xTextTable
, uno::UNO_QUERY_THROW
);
69 uno::Reference
< table::XCellRange
> xSelRange
= xCellRange
->getCellRangeByName( aRangeName
);
71 uno::Reference
< view::XSelectionSupplier
> xSelection( xModel
->getCurrentController(), uno::UNO_QUERY_THROW
);
72 xSelection
->select( uno::Any( xSelRange
) );
76 SwVbaColumn::getServiceImplName()
81 uno::Sequence
< OUString
>
82 SwVbaColumn::getServiceNames()
84 static uno::Sequence
< OUString
> const aServiceNames
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */