2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2011-03-31 10:05:04 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2013-11-05 02:17:53 +01:00
|
|
|
#ifndef INCLUDED_SW_SOURCE_UI_UNO_SWDETECT_HXX
|
|
|
|
#define INCLUDED_SW_SOURCE_UI_UNO_SWDETECT_HXX
|
2003-09-19 07:48:39 +00:00
|
|
|
|
2012-01-06 23:21:01 +01:00
|
|
|
#include <tools/solar.h>
|
2003-09-19 07:48:39 +00:00
|
|
|
#include <rtl/ustring.hxx>
|
2010-10-24 23:48:32 +02:00
|
|
|
#include <osl/diagnose.h>
|
2003-09-19 07:48:39 +00:00
|
|
|
#include <com/sun/star/document/XExtendedFilterDetection.hpp>
|
|
|
|
#include <com/sun/star/uno/Exception.hpp>
|
|
|
|
#include <com/sun/star/uno/Reference.h>
|
2015-04-06 18:44:54 +02:00
|
|
|
#include <cppuhelper/implbase.hxx>
|
2003-09-19 07:48:39 +00:00
|
|
|
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
|
|
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
|
|
|
|
#include <cppuhelper/factory.hxx>
|
|
|
|
|
|
|
|
class SfxMedium;
|
|
|
|
|
|
|
|
namespace com
|
|
|
|
{
|
|
|
|
namespace sun
|
|
|
|
{
|
|
|
|
namespace star
|
|
|
|
{
|
|
|
|
namespace beans
|
|
|
|
{
|
|
|
|
struct PropertyValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <sfx2/sfxuno.hxx>
|
|
|
|
class SfxMedium;
|
|
|
|
class SfxFilter;
|
|
|
|
|
2015-04-06 18:44:54 +02:00
|
|
|
class SwFilterDetect : public ::cppu::WeakImplHelper< css::document::XExtendedFilterDetection, css::lang::XServiceInfo >
|
2003-09-19 07:48:39 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-02-24 14:06:26 +11:00
|
|
|
SwFilterDetect();
|
2003-09-19 07:48:39 +00:00
|
|
|
virtual ~SwFilterDetect();
|
|
|
|
|
2015-02-24 14:06:26 +11:00
|
|
|
/* XServiceInfo */
|
|
|
|
virtual OUString SAL_CALL getImplementationName() throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
|
|
|
virtual sal_Bool SAL_CALL supportsService( const OUString& sServiceName ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
|
|
|
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
|
|
|
|
2003-09-19 07:48:39 +00:00
|
|
|
// XExtendedFilterDetect
|
2014-03-27 18:12:18 +01:00
|
|
|
virtual OUString SAL_CALL detect( css::uno::Sequence< css::beans::PropertyValue >& lDescriptor ) throw( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
2003-09-19 07:48:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2010-10-14 08:30:41 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|