INTEGRATION: CWS xmlfilter01 (1.9.72); FILE MERGED
2003/03/11 16:05:55 cl 1.9.72.1: #108138# new menu entry for xml filter configuration dialog
This commit is contained in:
parent
57696ffa4e
commit
930faa3b30
1 changed files with 27 additions and 2 deletions
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: drviewsb.cxx,v $
|
||||
*
|
||||
* $Revision: 1.9 $
|
||||
* $Revision: 1.10 $
|
||||
*
|
||||
* last change: $Author: cl $ $Date: 2002-12-12 18:41:50 $
|
||||
* last change: $Author: hr $ $Date: 2003-04-04 16:15:15 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -59,6 +59,12 @@
|
|||
*
|
||||
************************************************************************/
|
||||
|
||||
#ifndef _COM_SUN_STAR_UI_DIALOGS_XEXECUTABLEDIALOG_HPP_
|
||||
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
|
||||
#endif
|
||||
#ifndef _COMPHELPER_PROCESSFACTORY_HXX_
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#endif
|
||||
#ifndef _SVDLAYER_HXX
|
||||
#include <svx/svdlayer.hxx>
|
||||
#endif
|
||||
|
@ -704,6 +710,25 @@ void SdDrawViewShell::FuTemp02(SfxRequest& rReq)
|
|||
}
|
||||
break;
|
||||
|
||||
case SID_OPEN_XML_FILTERSETTINGS:
|
||||
{
|
||||
try
|
||||
{
|
||||
com::sun::star::uno::Reference < ::com::sun::star::ui::dialogs::XExecutableDialog > xDialog(::comphelper::getProcessServiceFactory()->createInstance(rtl::OUString::createFromAscii("com.sun.star.comp.ui.XSLTFilterDialog")), com::sun::star::uno::UNO_QUERY);
|
||||
if( xDialog.is() )
|
||||
{
|
||||
xDialog->execute();
|
||||
}
|
||||
}
|
||||
catch( ::com::sun::star::uno::RuntimeException& )
|
||||
{
|
||||
}
|
||||
|
||||
Cancel();
|
||||
rReq.Ignore ();
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
{
|
||||
// switch Anweisung wegen CLOOKS aufgeteilt. Alle case-Anweisungen die
|
||||
|
|
Loading…
Reference in a new issue