1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
20 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_SWCONT_HXX
21 #define INCLUDED_SW_SOURCE_UIBASE_INC_SWCONT_HXX
23 #include <rtl/ustring.hxx>
24 #include <vcl/naturalsort.hxx>
28 enum class ContentTypeId
46 // strings for context menus
47 #define CONTEXT_COUNT 17
48 #define GLOBAL_CONTEXT_COUNT 14
50 // modes for Drag 'n Drop
64 SwTypeNumber(sal_uInt8 nId
) :nTypeId(nId
){}
65 virtual ~SwTypeNumber();
67 sal_uInt8
GetTypeId() const { return nTypeId
;}
70 class SwContent
: public SwTypeNumber
72 const SwContentType
* pParent
;
73 OUString sContentName
;
74 tools::Long nYPosition
;
75 // some subclasses appear to use this for a tools/gen.hxx-style
76 // geometric Y position, while e.g. SwOutlineContent wants to store
77 // the index in its subtree
80 SwContent(const SwContentType
* pCnt
, const OUString
& rName
, tools::Long nYPos
);
82 virtual bool IsProtect() const;
83 const SwContentType
* GetParent() const {return pParent
;}
84 const OUString
& GetName() const {return sContentName
;}
85 bool operator==(const SwContent
& /*rCont*/) const
87 // they're never equal, otherwise they'd fall out of the array
90 bool operator<(const SwContent
& rCont
) const
92 // at first sort by position and then by name
93 if (nYPosition
!= rCont
.nYPosition
)
94 return nYPosition
< rCont
.nYPosition
;
95 return vcl::NaturalSortCompare(sContentName
, rCont
.sContentName
) < 0;
98 bool IsInvisible() const {return bInvisible
;}
99 void SetInvisible(){ bInvisible
= true;}
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */