LibreOffice Module sc (master) 1
XMLColumnRowGroupExport.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <vector>
23#include <rtl/ustring.hxx>
24#include <sal/types.h>
25
27{
28 sal_Int32 nField;
29 sal_Int16 nLevel;
31
33 bool operator< (const ScMyColumnRowGroup& rGroup) const;
34};
35
36typedef std::vector<ScMyColumnRowGroup> ScMyColumnRowGroupVec;
37typedef std::vector<sal_Int32> ScMyFieldGroupVec;
38
39class ScXMLExport;
41{
43 const OUString rName;
46
47 void OpenGroup(const ScMyColumnRowGroup& rGroup);
48public:
51
52 void NewTable();
53 void AddGroup(const ScMyColumnRowGroup& aGroup, const sal_Int32 nEndField);
54 bool IsGroupStart(const sal_Int32 nField);
55 void OpenGroups(const sal_Int32 nField);
56 bool IsGroupEnd(const sal_Int32 nField);
57 void CloseGroups(const sal_Int32 nField);
58 sal_Int32 GetLast();
59 void Sort();
60};
61
62/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::vector< ScMyColumnRowGroup > ScMyColumnRowGroupVec
std::vector< sal_Int32 > ScMyFieldGroupVec
void CloseGroups(const sal_Int32 nField)
void AddGroup(const ScMyColumnRowGroup &aGroup, const sal_Int32 nEndField)
bool IsGroupEnd(const sal_Int32 nField)
void OpenGroup(const ScMyColumnRowGroup &rGroup)
ScMyOpenCloseColumnRowGroup(ScXMLExport &rExport, sal_uInt32 nToken)
void OpenGroups(const sal_Int32 nField)
bool IsGroupStart(const sal_Int32 nField)
DefTokenId nToken
Definition: qproform.cxx:397
bool operator<(const ScMyColumnRowGroup &rGroup) const