LibreOffice Module sw (master) 1
swtblfmt.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_SWTBLFMT_HXX
20#define INCLUDED_SW_INC_SWTBLFMT_HXX
21
22#include "swdllapi.h"
23#include "frmfmt.hxx"
24
25#include <tools/solar.h>
26
28{
29 friend class SwDoc;
30
31 SwTableFormat( SwAttrPool& rPool, const OUString &rFormatNm,
32 SwFrameFormat *pDrvdFrame )
33 : SwFrameFormat( rPool, rFormatNm, pDrvdFrame, RES_FRMFMT, aTableSetRange )
34 {}
35
36public:
37 virtual bool supportsFullDrawingLayerFillAttributeSet() const override;
38};
39
40class SwTableLineFormat final : public SwFrameFormat
41{
42 friend class SwDoc;
43
45 : SwFrameFormat( rPool, OUString(), pDrvdFrame, RES_FRMFMT, aTableLineSetRange )
46 {}
47
48public:
49 virtual bool supportsFullDrawingLayerFillAttributeSet() const override;
50};
51
52class SAL_DLLPUBLIC_RTTI SwTableBoxFormat final: public SwFrameFormat
53{
54 friend class SwDoc;
55
57 : SwFrameFormat(rPool, OUString(), pDrvdFrame, RES_FRMFMT, aTableBoxSetRange)
58 {}
59
60 // For recognition of changes (especially TableBoxAttribute).
61 virtual void SwClientNotify(const SwModify&, const SfxHint&) override;
62 void BoxAttributeChanged(SwTableBox& rBox, const SwTableBoxNumFormat* pNewFormat, const SwTableBoxFormula* pNewFormula, const SwTableBoxValue* pNewValue, const sal_uLong nOldFormat);
63
64public:
65 virtual bool supportsFullDrawingLayerFillAttributeSet() const override;
67 const SwTableBox* GetTableBox() const
68 { return const_cast<SwTableBoxFormat*>(this)->GetTableBox(); };
69};
70
71#endif
72
73/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: doc.hxx:197
Style of a layout element.
Definition: frmfmt.hxx:72
virtual bool supportsFullDrawingLayerFillAttributeSet() const override
Definition: atrfrm.cxx:2622
virtual void SwClientNotify(const SwModify &, const SfxHint &) override
Definition: atrfrm.cxx:2627
SwTableBox * GetTableBox()
SwTableBoxFormat(SwAttrPool &rPool, SwFrameFormat *pDrvdFrame)
Definition: swtblfmt.hxx:56
const SwTableBox * GetTableBox() const
Definition: swtblfmt.hxx:67
SwTableBox is one table cell in the document model.
Definition: swtable.hxx:443
SwTableFormat(SwAttrPool &rPool, const OUString &rFormatNm, SwFrameFormat *pDrvdFrame)
Definition: swtblfmt.hxx:31
SwTableLineFormat(SwAttrPool &rPool, SwFrameFormat *pDrvdFrame)
Definition: swtblfmt.hxx:44
virtual bool supportsFullDrawingLayerFillAttributeSet() const override
Definition: swtable.cxx:2788
constexpr TypedWhichId< SwFrameFormat > RES_FRMFMT(161)
WhichRangesContainer const aTableSetRange(svl::Items< RES_FILL_ORDER, RES_FRM_SIZE, RES_LR_SPACE, RES_BREAK, RES_HORI_ORIENT, RES_HORI_ORIENT, RES_BACKGROUND, RES_SHADOW, RES_KEEP, RES_KEEP, RES_LAYOUT_SPLIT, RES_LAYOUT_SPLIT, RES_FRAMEDIR, RES_FRAMEDIR, RES_COLLAPSING_BORDERS, RES_COLLAPSING_BORDERS, RES_FRMATR_GRABBAG, RES_FRMATR_GRABBAG, RES_UNKNOWNATR_BEGIN, RES_UNKNOWNATR_END-1 >)
WhichRangesContainer const aTableLineSetRange(svl::Items< RES_FILL_ORDER, RES_FRM_SIZE, RES_LR_SPACE, RES_UL_SPACE, RES_PRINT, RES_PRINT, RES_PROTECT, RES_PROTECT, RES_VERT_ORIENT, RES_VERT_ORIENT, RES_BACKGROUND, RES_SHADOW, RES_ROW_SPLIT, RES_ROW_SPLIT, RES_FRMATR_GRABBAG, RES_FRMATR_GRABBAG, RES_UNKNOWNATR_BEGIN, RES_UNKNOWNATR_END-1 >)
WhichRangesContainer const aTableBoxSetRange(svl::Items< RES_FILL_ORDER, RES_FRM_SIZE, RES_LR_SPACE, RES_UL_SPACE, RES_PRINT, RES_PRINT, RES_PROTECT, RES_PROTECT, RES_VERT_ORIENT, RES_VERT_ORIENT, RES_BACKGROUND, RES_SHADOW, RES_FRAMEDIR, RES_FRAMEDIR, RES_FRMATR_GRABBAG, RES_FRMATR_GRABBAG, RES_BOXATR_BEGIN, RES_BOXATR_END-1, RES_UNKNOWNATR_BEGIN, RES_UNKNOWNATR_END-1 >)
sal_uIntPtr sal_uLong
#define SW_DLLPUBLIC
Definition: swdllapi.h:28