android: Update app-specific/MIME type icons
[LibreOffice.git] / sw / source / ui / vba / vbacolumn.cxx
blobc4411bfab49302b0dfe736d96c3646867010d95c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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"
20 #include <utility>
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()
39 sal_Int32 SAL_CALL
40 SwVbaColumn::getWidth( )
42 SwVbaTableHelper aTableHelper( mxTextTable );
43 return aTableHelper.GetColWidth( mnIndex );
46 void SAL_CALL
47 SwVbaColumn::setWidth( sal_Int32 _width )
50 SwVbaTableHelper aTableHelper( mxTextTable );
51 aTableHelper.SetColWidth( _width, mnIndex );
54 void SAL_CALL
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 ) );
75 OUString
76 SwVbaColumn::getServiceImplName()
78 return "SwVbaColumn";
81 uno::Sequence< OUString >
82 SwVbaColumn::getServiceNames()
84 static uno::Sequence< OUString > const aServiceNames
86 "ooo.vba.word.Column"
88 return aServiceNames;
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */