Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / inc / editable.hxx
blob2760c04c8e4c7c9e6d224c7be46c51a55b25602e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 SC_EDITABLE_HXX
21 #define SC_EDITABLE_HXX
23 #include "address.hxx"
24 #include <tools/solar.h>
26 class ScDocument;
27 class ScViewFunc;
28 class ScMarkData;
29 class ScRange;
32 class ScEditableTester
34 bool mbIsEditable;
35 bool mbOnlyMatrix;
37 public:
38 ScEditableTester();
40 // calls TestBlock
41 ScEditableTester( ScDocument* pDoc, SCTAB nTab,
42 SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow );
44 // calls TestSelectedBlock
45 ScEditableTester( ScDocument* pDoc,
46 SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
47 const ScMarkData& rMark );
49 // calls TestRange
50 ScEditableTester( ScDocument* pDoc, const ScRange& rRange );
52 // calls TestSelection
53 ScEditableTester( ScDocument* pDoc, const ScMarkData& rMark );
55 // calls TestView
56 ScEditableTester( ScViewFunc* pView );
58 // Several calls to the Test... methods check if *all* of the ranges
59 // are editable. For several independent checks, Reset() has to be used.
60 void TestBlock( ScDocument* pDoc, SCTAB nTab,
61 SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow );
62 void TestSelectedBlock( ScDocument* pDoc,
63 SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow,
64 const ScMarkData& rMark );
65 void TestRange( ScDocument* pDoc, const ScRange& rRange );
66 void TestSelection( ScDocument* pDoc, const ScMarkData& rMark );
67 void TestView( ScViewFunc* pView );
69 bool IsEditable() const { return mbIsEditable; }
70 bool IsFormatEditable() const { return mbIsEditable || mbOnlyMatrix; }
71 sal_uInt16 GetMessageId() const;
74 #endif
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */