dialog editor factory

This commit is contained in:
Thomas Benisch 2001-02-26 09:40:01 +00:00
parent bb0cb938a1
commit 8847ba15ac

View file

@ -0,0 +1,225 @@
/*************************************************************************
*
* $RCSfile: dlgedfac.cxx,v $
*
* $Revision: 1.1 $
*
* last change: $Author: tbe $ $Date: 2001-02-26 10:40:01 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* 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.
*
* 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
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#pragma hdrstop
#ifndef _COMPHELPER_STLTYPES_HXX_
#include <comphelper/stl_types.hxx>
#endif
#ifndef _COM_SUN_STAR_BEANS_PROPERTYVALUE_HPP_
#include <com/sun/star/beans/PropertyValue.hpp>
#endif
#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_
#include <com/sun/star/beans/XPropertySet.hpp>
#endif
#define _SI_NOVCDRAWVIEW
#define _SI_VCDRAWOBJ
#include "vcsbx.hxx"
#include "vcsbxdo.hxx"
#ifndef _BASCTL_DLGED_HXX
#include "dlged.hxx"
#endif
#ifndef _BASCTL_DLGEDOBJ_HXX
#include "dlgedobj.hxx"
#endif
#ifndef _BASCTL_DLGEDFAC_HXX
#include "dlgedfac.hxx"
#endif
#ifndef _BASCTL_PROPBRW_HXX
#include "propbrw.hxx"
#endif
using namespace ::rtl;
using namespace ::com::sun::star;
//----------------------------------------------------------------------------
VCDlgEditFactory::VCDlgEditFactory( VCDlgEditor* pDlgEd )
{
pDlgEditor = pDlgEd;
SdrObjFactory::InsertMakeObjectHdl(LINK(this, VCDlgEditFactory, MakeObject));
// Registrieung von globalen fenstern
//FmFieldWinMgr::RegisterChildWindow();
PropBrwMgr::RegisterChildWindow();
//FmExplorerWinMgr::RegisterChildWindow();
//FmFilterNavigatorWinMgr::RegisterChildWindow();
//ImplSmartRegisterUnoServices();
}
//----------------------------------------------------------------------------
IMPL_LINK( VCDlgEditFactory, MakeObject, SdrObjFactory *, pObjFactory )
{
static sal_Bool bNeedsInit = sal_True;
static uno::Reference< lang::XMultiServiceFactory > xDialogSFact;
if( bNeedsInit )
{
uno::Reference< lang::XMultiServiceFactory > xMSF = ::comphelper::getProcessServiceFactory();
uno::Reference< container::XNameContainer > xC( xMSF->createInstance( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlDialogModel" ) ) ), uno::UNO_QUERY );
if( xC.is() )
{
uno::Reference< lang::XMultiServiceFactory > xModFact( xC, uno::UNO_QUERY );
xDialogSFact = xModFact;
}
bNeedsInit = sal_False;
}
if( (pObjFactory->nInventor == VCSbxInventor) &&
(pObjFactory->nIdentifier >=OBJ_DLG_CHECKBOX) &&
(pObjFactory->nIdentifier <= OBJ_DLG_URLBUTTON) )
{
DlgEdForm* pForm = pDlgEditor->GetDlgEdForm();
StarBASIC* pBasic = pDlgEditor->GetBasic();
switch( pObjFactory->nIdentifier )
{
case OBJ_DLG_CHECKBOX:
pObjFactory->pNewObj = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlCheckBoxModel")
,xDialogSFact, pForm);
break;
case OBJ_DLG_RADIOBUTTON:
pObjFactory->pNewObj = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlRadioButtonModel")
,xDialogSFact, pForm);
break;
case OBJ_DLG_PUSHBUTTON:
pObjFactory->pNewObj = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlButtonModel")
,xDialogSFact, pForm);
break;
case OBJ_DLG_SPINBUTTON:
//pControl = new VCSbxSpinButton( TRUE );
break;
case OBJ_DLG_FIXEDTEXT:
pObjFactory->pNewObj = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlFixedTextModel")
,xDialogSFact, pForm);
break;
case OBJ_DLG_GROUPBOX:
pObjFactory->pNewObj = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlGroupBoxModel")
,xDialogSFact, pForm);
break;
case OBJ_DLG_LISTBOX:
pObjFactory->pNewObj = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlListBoxModel")
,xDialogSFact, pForm);
break;
case OBJ_DLG_COMBOBOX:
{
DlgEdObj* pNew = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlComboBoxModel")
,xDialogSFact, pForm);
pObjFactory->pNewObj = pNew;
try
{
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > xModelSet(pNew->GetUnoControlModel(), ::com::sun::star::uno::UNO_QUERY);
if (xModelSet.is())
{
sal_Bool bB = sal_True;
xModelSet->setPropertyValue(rtl::OUString::createFromAscii("Dropdown"), ::com::sun::star::uno::Any(&bB,::getBooleanCppuType()));
}
}
catch(...)
{
}
} break;
case OBJ_DLG_EDIT:
pObjFactory->pNewObj = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlEditModel")
,xDialogSFact, pForm);
break;
case OBJ_DLG_HSCROLLBAR:
//pControl = new VCSbxHScrollBar( TRUE );
//pObjFactory->pNewObj = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.form.component.CommandButton"));
break;
case OBJ_DLG_VSCROLLBAR:
//pControl = new VCSbxVScrollBar( TRUE );
//pObjFactory->pNewObj = new DlgEdObj(rtl::OUString::createFromAscii("com.sun.star.form.component.CommandButton"));
break;
case OBJ_DLG_PREVIEW:
//pControl = new VCSbxPreview( TRUE );
break;
case OBJ_DLG_URLBUTTON:
//pControl = new VCSbxURLButton( TRUE );
break;
}
DlgEdObj* pDlgEdObj = PTR_CAST(DlgEdObj, pObjFactory->pNewObj);
if (pDlgEdObj)
{
pDlgEdObj->StartPropertyListening();
}
}
if( aOldMakeObjLink.IsSet() )
aOldMakeObjLink.Call( pObjFactory );
return 0;
}
//----------------------------------------------------------------------------