/************************************************************************* * * 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 --------------------------------------------------------------- #include #include #include #include #include #include "reffact.hxx" #include "tabvwsh.hxx" #include "sc.hrc" #include "acredlin.hxx" #include "simpref.hxx" #include "scmod.hxx" //Added by PengYunQuan for Validity Cell Range Picker*/\ if (!pViewShell) \ pViewShell = PTR_CAST( ScTabViewShell, SfxViewShell::Current() ); \ DBG_ASSERT( pViewShell, "missing view shell :-(" ); \ pWindow = pViewShell ? \ pViewShell->CreateRefDialog( p, this, pInfo, pParentP, sid ) : NULL; \ if (pViewShell && !pWindow) \ pViewShell->GetViewFrame()->SetChildWindow( nId, FALSE ); \ } //========================================================================= //------------------------------------------------------------------------- // ScNameDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScNameDlgWrapper, FID_DEFINE_NAME ) //------------------------------------------------------------------------- // ScSolverDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScSolverDlgWrapper, SID_OPENDLG_SOLVE ) //------------------------------------------------------------------------- // ScOptSolverDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScOptSolverDlgWrapper, SID_OPENDLG_OPTSOLVER ) //------------------------------------------------------------------------- // ScPivotLayoutWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScPivotLayoutWrapper, SID_OPENDLG_PIVOTTABLE ) //------------------------------------------------------------------------- // ScTabOpDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScTabOpDlgWrapper, SID_OPENDLG_TABOP ) //------------------------------------------------------------------------- // ScFilterDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScFilterDlgWrapper, SID_FILTER ) //------------------------------------------------------------------------- // ScSpecialFilterDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScSpecialFilterDlgWrapper, SID_SPECIAL_FILTER ) //------------------------------------------------------------------------- // ScDbNameDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScDbNameDlgWrapper, SID_DEFINE_DBNAME ) //------------------------------------------------------------------------- // ScColRowNameRangesDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScColRowNameRangesDlgWrapper, SID_DEFINE_COLROWNAMERANGES ) //------------------------------------------------------------------------- // ScConsolidateDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScConsolidateDlgWrapper, SID_OPENDLG_CONSOLIDATE ) //------------------------------------------------------------------------- // ScPrintAreasDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScPrintAreasDlgWrapper, SID_OPENDLG_EDIT_PRINTAREA ) //------------------------------------------------------------------------- // ScCondFormatDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScCondFormatDlgWrapper, SID_OPENDLG_CONDFRMT ) //------------------------------------------------------------------------- // ScFormulaDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScFormulaDlgWrapper, SID_OPENDLG_FUNCTION ) //------------------------------------------------------------------------- // ScSimpleRefDlgWrapper //------------------------------------------------------------------------- static BOOL bScSimpleRefFlag; static long nScSimpleRefHeight; static long nScSimpleRefWidth; static long nScSimpleRefX; static long nScSimpleRefY; static BOOL bAutoReOpen=TRUE; ScSimpleRefDlgWrapper::ScSimpleRefDlgWrapper( Window* pParentP, USHORT nId, SfxBindings* p, SfxChildWinInfo* pInfo ) : SfxChildWindow(pParentP, nId) { // ScTabViewShell* pViewShell = // PTR_CAST( ScTabViewShell, SfxViewShell::Current() ); ScTabViewShell* pViewShell = NULL; SfxDispatcher* pDisp = p->GetDispatcher(); if ( pDisp ) { SfxViewFrame* pViewFrm = pDisp->GetFrame(); if ( pViewFrm ) pViewShell = PTR_CAST( ScTabViewShell, pViewFrm->GetViewShell() ); } DBG_ASSERT( pViewShell, "missing view shell :-(" ); if(pInfo!=NULL && bScSimpleRefFlag) { pInfo->aPos.X()=nScSimpleRefX; pInfo->aPos.Y()=nScSimpleRefY; pInfo->aSize.Height()=nScSimpleRefHeight; pInfo->aSize.Width()=nScSimpleRefWidth; } pWindow = NULL; if(bAutoReOpen && pViewShell) pWindow = pViewShell->CreateRefDialog( p, this, pInfo, pParentP, WID_SIMPLE_REF); if (!pWindow) { SC_MOD()->SetRefDialog( nId, FALSE ); } } void ScSimpleRefDlgWrapper::SetDefaultPosSize(Point aPos, Size aSize, BOOL bSet) { bScSimpleRefFlag=bSet; if(bScSimpleRefFlag) { nScSimpleRefX=aPos.X(); nScSimpleRefY=aPos.Y(); nScSimpleRefHeight=aSize.Height(); nScSimpleRefWidth=aSize.Width(); } } String ScSimpleRefDlgWrapper::GetRefString() { String aResult; if(pWindow!=NULL) { aResult=((ScSimpleRefDlg*)pWindow)->GetRefString(); } return aResult; } void ScSimpleRefDlgWrapper::SetAutoReOpen(BOOL bFlag) { bAutoReOpen=bFlag; } void ScSimpleRefDlgWrapper::SetRefString(const String& rStr) { if(pWindow!=NULL) { ((ScSimpleRefDlg*)pWindow)->SetRefString(rStr); } } void ScSimpleRefDlgWrapper::SetCloseHdl( const Link& rLink ) { if(pWindow!=NULL) { ((ScSimpleRefDlg*)pWindow)->SetCloseHdl( rLink ); } } void ScSimpleRefDlgWrapper::SetUnoLinks( const Link& rDone, const Link& rAbort, const Link& rChange ) { if(pWindow!=NULL) { ((ScSimpleRefDlg*)pWindow)->SetUnoLinks( rDone, rAbort, rChange ); } } void ScSimpleRefDlgWrapper::SetFlags( BOOL bCloseOnButtonUp, BOOL bSingleCell, BOOL bMultiSelection ) { if(pWindow!=NULL) { ((ScSimpleRefDlg*)pWindow)->SetFlags( bCloseOnButtonUp, bSingleCell, bMultiSelection ); } } void ScSimpleRefDlgWrapper::StartRefInput() { if(pWindow!=NULL) { ((ScSimpleRefDlg*)pWindow)->StartRefInput(); } } //------------------------------------------------------------------------- // ScAcceptChgDlgWrapper //Kommentar: sollte in die ViewShell //------------------------------------------------------------------------- ScAcceptChgDlgWrapper::ScAcceptChgDlgWrapper( Window* pParentP, USHORT nId, SfxBindings* pBindings, SfxChildWinInfo* pInfo ) : SfxChildWindow( pParentP, nId ) { ScTabViewShell* pViewShell = PTR_CAST( ScTabViewShell, SfxViewShell::Current() ); DBG_ASSERT( pViewShell, "missing view shell :-(" ); pWindow = pViewShell ? new ScAcceptChgDlg( pBindings, this, pParentP, pViewShell->GetViewData() ) : NULL; if(pWindow!=NULL) { ((ScAcceptChgDlg*)pWindow)->Initialize( pInfo ); } if (pViewShell && !pWindow) pViewShell->GetViewFrame()->SetChildWindow( nId, FALSE ); } void ScAcceptChgDlgWrapper::ReInitDlg() { ScTabViewShell* pViewShell = PTR_CAST( ScTabViewShell, SfxViewShell::Current() ); DBG_ASSERT( pViewShell, "missing view shell :-(" ); if(pWindow!=NULL && pViewShell) { ((ScAcceptChgDlg*)pWindow)->ReInit(pViewShell->GetViewData()); } } //------------------------------------------------------------------------- // ScHighlightChgDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScHighlightChgDlgWrapper, FID_CHG_SHOW ) /*------------------------------------------------------------------------*/ /*@@@ //------------------------------------------------------------------------- // ScFunctionDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScFunctionDlgWrapper, SID_OPENDLG_FUNCTION ) //------------------------------------------------------------------------- // ScEditFunctionDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScEditFunctionDlgWrapper, SID_OPENDLG_EDITFUNCTION ) //------------------------------------------------------------------------- // ScArgumentDlgWrapper //------------------------------------------------------------------------- IMPL_CHILD_CTOR( ScArgumentDlgWrapper, SID_OPENDLG_ARGUMENT ) @@@*/ /*------------------------------------------------------------------------*/ //Added by PengYunQuan for Validity Cell Range Picker