Files
libreoffice/sc/source/ui/view/pivotsh.cxx

207 lines
6.8 KiB
C++
Raw Normal View History

2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:07:07 +00:00
*
* $RCSfile: pivotsh.cxx,v $
2000-09-18 16:07:07 +00:00
*
* $Revision: 1.8 $
2000-09-18 16:07:07 +00:00
*
* last change: $Author: rt $ $Date: 2007-04-26 09:57:21 $
2000-09-18 16:07:07 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 16:07:07 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 16:07:07 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
2000-09-18 16:07:07 +00:00
*
* This library 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 for more details.
2000-09-18 16:07:07 +00:00
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
2000-09-18 16:07:07 +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 "scitems.hxx"
#include <svx/srchitem.hxx>
#include <sfx2/app.hxx>
#include <sfx2/objface.hxx>
#include <sfx2/objsh.hxx>
#include <sfx2/request.hxx>
#include <svtools/whiter.hxx>
2002-05-30 13:36:32 +00:00
#include <vcl/msgbox.hxx>
2000-09-18 16:07:07 +00:00
2002-05-30 13:36:32 +00:00
#include "sc.hrc"
2000-09-18 16:07:07 +00:00
#include "pivotsh.hxx"
#include "tabvwsh.hxx"
2002-05-30 13:36:32 +00:00
#include "docsh.hxx"
2000-09-18 16:07:07 +00:00
#include "scresid.hxx"
#include "document.hxx"
2002-05-30 13:36:32 +00:00
#include "dpobject.hxx"
#include "dpshttab.hxx"
#include "dbdocfun.hxx"
#include "uiitems.hxx"
//CHINA001 #include "pfiltdlg.hxx"
#include "scabstdlg.hxx" //CHINA001
2000-09-18 16:07:07 +00:00
//------------------------------------------------------------------------
#define ScPivotShell
#include "scslots.hxx"
//------------------------------------------------------------------------
TYPEINIT1( ScPivotShell, SfxShell );
SFX_IMPL_INTERFACE(ScPivotShell, SfxShell, ScResId(SCSTR_PIVOTSHELL))
{
SFX_POPUPMENU_REGISTRATION( ScResId(RID_POPUP_PIVOT) );
}
//------------------------------------------------------------------------
ScPivotShell::ScPivotShell( ScTabViewShell* pViewSh ) :
SfxShell(pViewSh),
pViewShell( pViewSh )
{
SetPool( &pViewSh->GetPool() );
SetUndoManager( pViewSh->GetViewData()->GetSfxDocShell()->GetUndoManager() );
SetHelpId( HID_SCSHELL_PIVOTSH );
SetName(String::CreateFromAscii(RTL_CONSTASCII_STRINGPARAM("Pivot")));
}
//------------------------------------------------------------------------
ScPivotShell::~ScPivotShell()
{
}
//------------------------------------------------------------------------
void ScPivotShell::Execute( SfxRequest& rReq )
{
switch ( rReq.GetSlot() )
{
case SID_PIVOT_RECALC:
pViewShell->RecalcPivotTable();
break;
case SID_PIVOT_KILL:
pViewShell->DeletePivotTable();
break;
2002-05-30 13:36:32 +00:00
case SID_DP_FILTER:
{
ScDPObject* pDPObj = GetCurrDPObject();
if( pDPObj )
{
ScQueryParam aQueryParam;
SCTAB nSrcTab = 0;
2002-05-30 13:36:32 +00:00
const ScSheetSourceDesc* pDesc = pDPObj->GetSheetDesc();
DBG_ASSERT( pDesc, "no sheet source for DP filter dialog" );
if( pDesc )
{
aQueryParam = pDesc->aQueryParam;
nSrcTab = pDesc->aSourceRange.aStart.Tab();
}
ScViewData* pViewData = pViewShell->GetViewData();
SfxItemSet aArgSet( pViewShell->GetPool(),
SCITEM_QUERYDATA, SCITEM_QUERYDATA );
aArgSet.Put( ScQueryItem( SCITEM_QUERYDATA, pViewData, &aQueryParam ) );
//CHINA001 ScPivotFilterDlg* pDlg = new ScPivotFilterDlg(
//CHINA001 pViewShell->GetDialogParent(), aArgSet, nSrcTab );
ScAbstractDialogFactory* pFact = ScAbstractDialogFactory::Create();
DBG_ASSERT(pFact, "ScAbstractFactory create fail!");//CHINA001
AbstractScPivotFilterDlg* pDlg = pFact->CreateScPivotFilterDlg( pViewShell->GetDialogParent(),
aArgSet, nSrcTab,
RID_SCDLG_PIVOTFILTER);
DBG_ASSERT(pDlg, "Dialog create fail!");//CHINA001
2002-05-30 13:36:32 +00:00
if( pDlg->Execute() == RET_OK )
{
ScSheetSourceDesc aNewDesc;
if( pDesc )
aNewDesc = *pDesc;
const ScQueryItem& rQueryItem = pDlg->GetOutputItem();
aNewDesc.aQueryParam = rQueryItem.GetQueryData();
ScDPObject aNewObj( *pDPObj );
aNewObj.SetSheetDesc( aNewDesc );
ScDBDocFunc aFunc( *pViewData->GetDocShell() );
aFunc.DataPilotUpdate( pDPObj, &aNewObj, TRUE, FALSE );
pViewData->GetView()->CursorPosChanged(); // shells may be switched
}
delete pDlg;
}
}
break;
2000-09-18 16:07:07 +00:00
}
}
//------------------------------------------------------------------------
void __EXPORT ScPivotShell::GetState( SfxItemSet& rSet )
{
ScDocShell* pDocSh = pViewShell->GetViewData()->GetDocShell();
ScDocument* pDoc = pDocSh->GetDocument();
2002-05-30 13:36:32 +00:00
BOOL bDisable = pDocSh->IsReadOnly() || pDoc->GetChangeTrack();
2000-09-18 16:07:07 +00:00
SfxWhichIter aIter(rSet);
USHORT nWhich = aIter.FirstWhich();
while (nWhich)
{
switch (nWhich)
{
case SID_PIVOT_RECALC:
case SID_PIVOT_KILL:
2002-05-30 13:36:32 +00:00
{
//! move ReadOnly check to idl flags
if ( bDisable )
2000-09-18 16:07:07 +00:00
{
2002-05-30 13:36:32 +00:00
rSet.DisableItem( nWhich );
2000-09-18 16:07:07 +00:00
}
2002-05-30 13:36:32 +00:00
}
break;
case SID_DP_FILTER:
{
ScDPObject* pDPObj = GetCurrDPObject();
if( bDisable || !pDPObj || !pDPObj->IsSheetData() )
rSet.DisableItem( nWhich );
}
break;
2000-09-18 16:07:07 +00:00
}
nWhich = aIter.NextWhich();
}
}
2002-05-30 13:36:32 +00:00
//------------------------------------------------------------------------
ScDPObject* ScPivotShell::GetCurrDPObject()
{
const ScViewData& rViewData = *pViewShell->GetViewData();
return rViewData.GetDocument()->GetDPAtCursor(
rViewData.GetCurX(), rViewData.GetCurY(), rViewData.GetTabNo() );
}
2000-09-18 16:07:07 +00:00