5030757a5c
2006/09/01 17:16:23 kaib 1.18.102.1: #i68856# Added header markers and pch files
225 lines
9.6 KiB
C++
225 lines
9.6 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: dlgedfac.cxx,v $
|
|
*
|
|
* $Revision: 1.19 $
|
|
*
|
|
* last change: $Author: obo $ $Date: 2006-09-17 00:31:06 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 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
|
|
*
|
|
************************************************************************/
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
#include "precompiled_basctl.hxx"
|
|
|
|
|
|
#ifndef _BASCTL_DLGEDFAC_HXX
|
|
#include "dlgedfac.hxx"
|
|
#endif
|
|
|
|
#ifndef _BASCTL_DLGEDOBJ_HXX
|
|
#include "dlgedobj.hxx"
|
|
#endif
|
|
|
|
#ifndef _BASCTL_DLGEDDEF_HXX
|
|
#include <dlgeddef.hxx>
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XNAMECONTAINER_HPP_
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
#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
|
|
|
|
#ifndef _COM_SUN_STAR_AWT_SCROLLBARORIENTATION_HPP_
|
|
#include <com/sun/star/awt/ScrollBarOrientation.hpp>
|
|
#endif
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
DlgEdFactory::DlgEdFactory()
|
|
{
|
|
SdrObjFactory::InsertMakeObjectHdl( LINK(this, DlgEdFactory, MakeObject) );
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
DlgEdFactory::~DlgEdFactory()
|
|
{
|
|
SdrObjFactory::RemoveMakeObjectHdl( LINK(this, DlgEdFactory, MakeObject) );
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
IMPL_LINK( DlgEdFactory, 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 == DlgInventor) &&
|
|
(pObjFactory->nIdentifier >= OBJ_DLG_PUSHBUTTON) &&
|
|
(pObjFactory->nIdentifier <= OBJ_DLG_FILECONTROL) )
|
|
{
|
|
switch( pObjFactory->nIdentifier )
|
|
{
|
|
case OBJ_DLG_PUSHBUTTON:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlButtonModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_RADIOBUTTON:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlRadioButtonModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_CHECKBOX:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlCheckBoxModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_LISTBOX:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlListBoxModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_COMBOBOX:
|
|
{
|
|
DlgEdObj* pNew = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlComboBoxModel") , xDialogSFact );
|
|
pObjFactory->pNewObj = pNew;
|
|
try
|
|
{
|
|
uno::Reference< beans::XPropertySet > xPSet(pNew->GetUnoControlModel(), uno::UNO_QUERY);
|
|
if (xPSet.is())
|
|
{
|
|
sal_Bool bB = sal_True;
|
|
xPSet->setPropertyValue( DLGED_PROP_DROPDOWN, uno::Any(&bB,::getBooleanCppuType()));
|
|
}
|
|
}
|
|
catch(...)
|
|
{
|
|
}
|
|
} break;
|
|
case OBJ_DLG_GROUPBOX:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlGroupBoxModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_EDIT:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlEditModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_FIXEDTEXT:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlFixedTextModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_IMAGECONTROL:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlImageControlModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_PROGRESSBAR:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlProgressBarModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_HSCROLLBAR:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlScrollBarModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_VSCROLLBAR:
|
|
{
|
|
DlgEdObj* pNew = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlScrollBarModel") , xDialogSFact );
|
|
pObjFactory->pNewObj = pNew;
|
|
// set vertical orientation
|
|
try
|
|
{
|
|
uno::Reference< beans::XPropertySet > xPSet(pNew->GetUnoControlModel(), uno::UNO_QUERY);
|
|
if (xPSet.is())
|
|
{
|
|
uno::Any aValue;
|
|
aValue <<= (sal_Int32) ::com::sun::star::awt::ScrollBarOrientation::VERTICAL;
|
|
xPSet->setPropertyValue( DLGED_PROP_ORIENTATION, aValue );
|
|
}
|
|
}
|
|
catch(...)
|
|
{
|
|
}
|
|
} break;
|
|
case OBJ_DLG_HFIXEDLINE:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlFixedLineModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_VFIXEDLINE:
|
|
{
|
|
DlgEdObj* pNew = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlFixedLineModel") , xDialogSFact );
|
|
pObjFactory->pNewObj = pNew;
|
|
// set vertical orientation
|
|
try
|
|
{
|
|
uno::Reference< beans::XPropertySet > xPSet(pNew->GetUnoControlModel(), uno::UNO_QUERY);
|
|
if (xPSet.is())
|
|
{
|
|
uno::Any aValue;
|
|
aValue <<= (sal_Int32) 1;
|
|
xPSet->setPropertyValue( DLGED_PROP_ORIENTATION, aValue );
|
|
}
|
|
}
|
|
catch(...)
|
|
{
|
|
}
|
|
} break;
|
|
case OBJ_DLG_DATEFIELD:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlDateFieldModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_TIMEFIELD:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlTimeFieldModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_NUMERICFIELD:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlNumericFieldModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_CURRENCYFIELD:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlCurrencyFieldModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_FORMATTEDFIELD:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlFormattedFieldModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_PATTERNFIELD:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlPatternFieldModel") , xDialogSFact );
|
|
break;
|
|
case OBJ_DLG_FILECONTROL:
|
|
pObjFactory->pNewObj = new DlgEdObj( ::rtl::OUString::createFromAscii("com.sun.star.awt.UnoControlFileControlModel") , xDialogSFact );
|
|
break;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
//----------------------------------------------------------------------------
|
|
|