LibreOffice Module sw (master) 1
fmtcolfunc.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#ifndef INCLUDED_SW_INC_FMTCOLFUNC_HXX
20#define INCLUDED_SW_INC_FMTCOLFUNC_HXX
21
22#include "numrule.hxx"
23#include "fmtcol.hxx"
24
25class SwFormat;
26class SwNumRuleItem;
27
28// namespace <TextFormatCollFunc> for functions and procedures working on
29// paragraph styles (instances of <SwTextFormatColl>
30namespace TextFormatCollFunc
31{
41 SwFormat* pFormat,
42 const SwNumRuleItem* pNewNumRuleItem = nullptr );
43
52 SwNumRule* GetNumRule( SwTextFormatColl& rTextFormatColl );
53
61 void AddToNumRule( SwTextFormatColl& rTextFormatColl );
62
70 void RemoveFromNumRule( SwTextFormatColl& rTextFormatColl );
71}
72#endif
73
74/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Base class for various Writer styles.
Definition: format.hxx:47
Represents the style of a paragraph.
Definition: fmtcol.hxx:61
SwNumRule * GetNumRule(SwTextFormatColl &rTextFormatColl)
determines the list style, which directly set at the given paragraph style
Definition: fmtcol.cxx:74
void RemoveFromNumRule(SwTextFormatColl &rTextFormatColl)
removes the given paragraph style from the directly set list style
Definition: fmtcol.cxx:100
void CheckTextFormatCollForDeletionOfAssignmentToOutlineStyle(SwFormat *pFormat, const SwNumRuleItem *pNewNumRuleItem)
Checks, if assignment of paragraph style to list level of outline style has to be deleted,...
Definition: fmtcol.cxx:42
void AddToNumRule(SwTextFormatColl &rTextFormatColl)
adds the given paragraph style at the directly set list style
Definition: fmtcol.cxx:91