fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / writerfilter / source / dmapper / SectionColumnHandler.hxx
blob43f70a1f19ad308b687691989e86e8346e874e2c
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 #ifndef INCLUDED_SECTIONCOLUMNHANDLER_HXX
20 #define INCLUDED_SECTIONCOLUMNHANDLER_HXX
22 #include <WriterFilterDllApi.hxx>
23 #include <resourcemodel/LoggedResources.hxx>
24 #include <boost/shared_ptr.hpp>
27 namespace writerfilter {
28 namespace dmapper
30 struct _Column
32 sal_Int32 nWidth;
33 sal_Int32 nSpace;
37 class WRITERFILTER_DLLPRIVATE SectionColumnHandler : public LoggedProperties
39 bool bEqualWidth;
40 sal_Int32 nSpace;
41 sal_Int32 nNum;
42 bool bSep;
43 std::vector<_Column> aCols;
45 _Column aTempColumn;
47 // Properties
48 virtual void lcl_attribute(Id Name, Value & val);
49 virtual void lcl_sprm(Sprm & sprm);
51 public:
52 SectionColumnHandler();
53 virtual ~SectionColumnHandler();
55 bool IsEqualWidth() const { return bEqualWidth; }
56 sal_Int32 GetSpace() const { return nSpace; }
57 sal_Int32 GetNum() const { return nNum; }
58 bool IsSeparator() const { return bSep; }
60 const std::vector<_Column>& GetColumns() const { return aCols;}
63 typedef boost::shared_ptr< SectionColumnHandler > SectionColumnHandlerPtr;
66 #endif //
68 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */