2000-09-18 16:07:07 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 00:47:23 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 00:47:23 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 00:47:23 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 00:47:23 +00:00
|
|
|
* $RCSfile: viewfun6.cxx,v $
|
2009-03-02 14:19:13 +00:00
|
|
|
* $Revision: 1.11.128.4 $
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 00:47:23 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 00:47:23 +00:00
|
|
|
* 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.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 00:47:23 +00:00
|
|
|
* 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).
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-11 00:47:23 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-07-21 14:24:46 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sc.hxx"
|
|
|
|
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <svx/svdundo.hxx>
|
2009-03-02 14:19:13 +00:00
|
|
|
#include <svx/svdocapt.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
#include <sfx2/bindings.hxx>
|
|
|
|
#include <sfx2/dispatch.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include <vcl/sound.hxx>
|
|
|
|
|
|
|
|
#include "viewfunc.hxx"
|
|
|
|
#include "detfunc.hxx"
|
|
|
|
#include "detdata.hxx"
|
|
|
|
#include "viewdata.hxx"
|
|
|
|
#include "drwlayer.hxx"
|
|
|
|
#include "docsh.hxx"
|
|
|
|
#include "undocell.hxx"
|
|
|
|
#include "futext.hxx"
|
|
|
|
#include "docfunc.hxx"
|
|
|
|
#include "globstr.hrc"
|
|
|
|
#include "sc.hrc"
|
2005-02-21 15:05:16 +00:00
|
|
|
#include "fusel.hxx"
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
|
|
|
|
void ScViewFunc::DetectiveAddPred()
|
|
|
|
{
|
|
|
|
ScDocShell* pDocSh = GetViewData()->GetDocShell();
|
|
|
|
BOOL bDone = pDocSh->GetDocFunc().
|
|
|
|
DetectiveAddPred( GetViewData()->GetCurPos() );
|
|
|
|
if (!bDone)
|
|
|
|
Sound::Beep();
|
2001-08-02 17:22:48 +00:00
|
|
|
|
|
|
|
RecalcPPT(); //! use broadcast in DocFunc instead?
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScViewFunc::DetectiveDelPred()
|
|
|
|
{
|
|
|
|
ScDocShell* pDocSh = GetViewData()->GetDocShell();
|
|
|
|
BOOL bDone = pDocSh->GetDocFunc().
|
|
|
|
DetectiveDelPred( GetViewData()->GetCurPos() );
|
|
|
|
if (!bDone)
|
|
|
|
Sound::Beep();
|
2001-08-02 17:22:48 +00:00
|
|
|
|
|
|
|
RecalcPPT();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScViewFunc::DetectiveAddSucc()
|
|
|
|
{
|
|
|
|
ScDocShell* pDocSh = GetViewData()->GetDocShell();
|
|
|
|
BOOL bDone = pDocSh->GetDocFunc().
|
|
|
|
DetectiveAddSucc( GetViewData()->GetCurPos() );
|
|
|
|
if (!bDone)
|
|
|
|
Sound::Beep();
|
2001-08-02 17:22:48 +00:00
|
|
|
|
|
|
|
RecalcPPT();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScViewFunc::DetectiveDelSucc()
|
|
|
|
{
|
|
|
|
ScDocShell* pDocSh = GetViewData()->GetDocShell();
|
|
|
|
BOOL bDone = pDocSh->GetDocFunc().
|
|
|
|
DetectiveDelSucc( GetViewData()->GetCurPos() );
|
|
|
|
if (!bDone)
|
|
|
|
Sound::Beep();
|
2001-08-02 17:22:48 +00:00
|
|
|
|
|
|
|
RecalcPPT();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScViewFunc::DetectiveAddError()
|
|
|
|
{
|
|
|
|
ScDocShell* pDocSh = GetViewData()->GetDocShell();
|
|
|
|
BOOL bDone = pDocSh->GetDocFunc().
|
|
|
|
DetectiveAddError( GetViewData()->GetCurPos() );
|
|
|
|
if (!bDone)
|
|
|
|
Sound::Beep();
|
2001-08-02 17:22:48 +00:00
|
|
|
|
|
|
|
RecalcPPT();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScViewFunc::DetectiveDelAll()
|
|
|
|
{
|
|
|
|
ScDocShell* pDocSh = GetViewData()->GetDocShell();
|
|
|
|
BOOL bDone = pDocSh->GetDocFunc().
|
|
|
|
DetectiveDelAll( GetViewData()->GetTabNo() );
|
|
|
|
if (!bDone)
|
|
|
|
Sound::Beep();
|
2001-08-02 17:22:48 +00:00
|
|
|
|
|
|
|
RecalcPPT();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScViewFunc::DetectiveMarkInvalid()
|
|
|
|
{
|
|
|
|
ScDocShell* pDocSh = GetViewData()->GetDocShell();
|
|
|
|
BOOL bDone = pDocSh->GetDocFunc().
|
|
|
|
DetectiveMarkInvalid( GetViewData()->GetTabNo() );
|
|
|
|
if (!bDone)
|
|
|
|
Sound::Beep();
|
2001-08-02 17:22:48 +00:00
|
|
|
|
|
|
|
RecalcPPT();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScViewFunc::DetectiveRefresh()
|
|
|
|
{
|
|
|
|
ScDocShell* pDocSh = GetViewData()->GetDocShell();
|
|
|
|
BOOL bDone = pDocSh->GetDocFunc().DetectiveRefresh();
|
|
|
|
if (!bDone)
|
|
|
|
Sound::Beep();
|
2001-08-02 17:22:48 +00:00
|
|
|
|
|
|
|
RecalcPPT();
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2009-03-02 14:19:13 +00:00
|
|
|
void ScViewFunc::ShowNote( bool bShow )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-03-02 14:19:13 +00:00
|
|
|
if( bShow )
|
2002-04-10 09:30:45 +00:00
|
|
|
HideNoteMarker();
|
2009-03-02 14:19:13 +00:00
|
|
|
const ScViewData& rViewData = *GetViewData();
|
|
|
|
ScAddress aPos( rViewData.GetCurX(), rViewData.GetCurY(), rViewData.GetTabNo() );
|
|
|
|
// show note moved to ScDocFunc, to be able to use it in notesuno.cxx
|
|
|
|
rViewData.GetDocShell()->GetDocFunc().ShowNote( aPos, bShow );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScViewFunc::EditNote()
|
|
|
|
{
|
|
|
|
// zum Editieren einblenden und aktivieren
|
|
|
|
|
|
|
|
ScDocShell* pDocSh = GetViewData()->GetDocShell();
|
|
|
|
ScDocument* pDoc = pDocSh->GetDocument();
|
2004-06-04 11:10:45 +00:00
|
|
|
SCCOL nCol = GetViewData()->GetCurX();
|
|
|
|
SCROW nRow = GetViewData()->GetCurY();
|
|
|
|
SCTAB nTab = GetViewData()->GetTabNo();
|
2009-03-02 14:19:13 +00:00
|
|
|
ScAddress aPos( nCol, nRow, nTab );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2009-03-02 14:19:13 +00:00
|
|
|
// start drawing undo to catch undo action for insertion of the caption object
|
|
|
|
pDocSh->MakeDrawLayer();
|
|
|
|
ScDrawLayer* pDrawLayer = pDoc->GetDrawLayer();
|
|
|
|
pDrawLayer->BeginCalcUndo();
|
|
|
|
// generated undo action is processed in FuText::StopEditMode
|
|
|
|
|
|
|
|
// get existing note or create a new note (including caption drawing object)
|
|
|
|
if( ScPostIt* pNote = pDoc->GetOrCreateNote( aPos ) )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-03-02 14:19:13 +00:00
|
|
|
// hide temporary note caption
|
2002-04-10 09:30:45 +00:00
|
|
|
HideNoteMarker();
|
2009-03-02 14:19:13 +00:00
|
|
|
// show caption object without changing internal visibility state
|
2009-07-03 12:42:53 +00:00
|
|
|
pNote->ShowCaptionTemp( aPos );
|
2002-04-10 09:30:45 +00:00
|
|
|
|
2009-07-03 12:42:53 +00:00
|
|
|
/* Drawing object has been created in ScDocument::GetOrCreateNote() or
|
|
|
|
in ScPostIt::ShowCaptionTemp(), so ScPostIt::GetCaption() should
|
|
|
|
return a caption object. */
|
2009-03-02 14:19:13 +00:00
|
|
|
if( SdrCaptionObj* pCaption = pNote->GetCaption() )
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-03-02 14:19:13 +00:00
|
|
|
// #i33764# enable the resize handles before starting edit mode
|
|
|
|
if( FuPoor* pDraw = GetDrawFuncPtr() )
|
|
|
|
static_cast< FuSelection* >( pDraw )->ActivateNoteHandles( pCaption );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2009-03-02 14:19:13 +00:00
|
|
|
// activate object (as in FuSelection::TestComment)
|
|
|
|
GetViewData()->GetDispatcher().Execute( SID_DRAW_NOTEEDIT, SFX_CALLMODE_SYNCHRON | SFX_CALLMODE_RECORD );
|
2000-09-18 16:07:07 +00:00
|
|
|
// jetzt den erzeugten FuText holen und in den EditModus setzen
|
|
|
|
FuPoor* pPoor = GetDrawFuncPtr();
|
2009-03-02 14:19:13 +00:00
|
|
|
if ( pPoor && (pPoor->GetSlotID() == SID_DRAW_NOTEEDIT) ) // hat keine RTTI
|
2000-09-18 16:07:07 +00:00
|
|
|
{
|
2009-03-02 14:19:13 +00:00
|
|
|
ScrollToObject( pCaption ); // Objekt komplett sichtbar machen
|
|
|
|
static_cast< FuText* >( pPoor )->SetInEditMode( pCaption );
|
2000-09-18 16:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|