1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef LIST_HXX_INCLUDED 25 #define LIST_HXX_INCLUDED 26 27 #include <tools/string.hxx> 28 29 class SwNumRule; 30 class SwNodes; 31 class SwNodeNum; 32 33 class SwListImpl; 34 35 class SwList 36 { 37 public: 38 SwList( const String sListId, 39 SwNumRule& rDefaultListStyle, 40 const SwNodes& rNodes ); 41 ~SwList(); 42 43 const String GetListId() const; 44 45 const String GetDefaultListStyleName() const; 46 47 void InsertListItem( SwNodeNum& rNodeNum, 48 const int nLevel ); 49 void RemoveListItem( SwNodeNum& rNodeNum ); 50 51 void InvalidateListTree(); 52 void ValidateListTree(); 53 54 void MarkListLevel( const int nListLevel, 55 const sal_Bool bValue ); 56 57 bool IsListLevelMarked( const int nListLevel ) const; 58 59 // void ContinueList( SwList& rList ); 60 // const SwList* GetContinuedList() const; 61 // void ClearContinuation(); 62 63 private: 64 // no copy constructor and no assignment operator 65 SwList( const SwList& ); 66 SwList& operator=( const SwList& ); 67 68 SwListImpl* mpListImpl; 69 }; 70 #endif // LIST_HXX_INCLUDED 71