/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sc.hxx" #include "editable.hxx" #include "document.hxx" #include "viewfunc.hxx" #include "globstr.hrc" //------------------------------------------------------------------ ScEditableTester::ScEditableTester() : bIsEditable( TRUE ), bOnlyMatrix( TRUE ) { } ScEditableTester::ScEditableTester( ScDocument* pDoc, SCTAB nTab, SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow ) : bIsEditable( TRUE ), bOnlyMatrix( TRUE ) { TestBlock( pDoc, nTab, nStartCol, nStartRow, nEndCol, nEndRow ); } ScEditableTester::ScEditableTester( ScDocument* pDoc, SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow, const ScMarkData& rMark ) : bIsEditable( TRUE ), bOnlyMatrix( TRUE ) { TestSelectedBlock( pDoc, nStartCol, nStartRow, nEndCol, nEndRow, rMark ); } ScEditableTester::ScEditableTester( ScDocument* pDoc, const ScRange& rRange ) : bIsEditable( TRUE ), bOnlyMatrix( TRUE ) { TestRange( pDoc, rRange ); } ScEditableTester::ScEditableTester( ScDocument* pDoc, const ScMarkData& rMark ) : bIsEditable( TRUE ), bOnlyMatrix( TRUE ) { TestSelection( pDoc, rMark ); } ScEditableTester::ScEditableTester( ScViewFunc* pView ) : bIsEditable( TRUE ), bOnlyMatrix( TRUE ) { TestView( pView ); } //------------------------------------------------------------------ void ScEditableTester::TestBlock( ScDocument* pDoc, SCTAB nTab, SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow ) { if ( bIsEditable || bOnlyMatrix ) { BOOL bThisMatrix; if ( !pDoc->IsBlockEditable( nTab, nStartCol, nStartRow, nEndCol, nEndRow, &bThisMatrix ) ) { bIsEditable = FALSE; if ( !bThisMatrix ) bOnlyMatrix = FALSE; } } } void ScEditableTester::TestSelectedBlock( ScDocument* pDoc, SCCOL nStartCol, SCROW nStartRow, SCCOL nEndCol, SCROW nEndRow, const ScMarkData& rMark ) { SCTAB nTabCount = pDoc->GetTableCount(); for (SCTAB nTab=0; nTabIsSelectionEditable( rMark, &bThisMatrix ) ) { bIsEditable = FALSE; if ( !bThisMatrix ) bOnlyMatrix = FALSE; } } } void ScEditableTester::TestView( ScViewFunc* pView ) { if ( bIsEditable || bOnlyMatrix ) { BOOL bThisMatrix; if ( !pView->SelectionEditable( &bThisMatrix ) ) { bIsEditable = FALSE; if ( !bThisMatrix ) bOnlyMatrix = FALSE; } } } //------------------------------------------------------------------ USHORT ScEditableTester::GetMessageId() const { if (bIsEditable) return 0; else if (bOnlyMatrix) return STR_MATRIXFRAGMENTERR; else return STR_PROTECTIONERR; }