2010-10-14 08:30:41 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-04 15:25:45 +01: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 .
|
|
|
|
*/
|
2003-09-19 07:53:10 +00:00
|
|
|
|
2013-10-22 21:30:16 +02:00
|
|
|
#ifndef INCLUDED_STARMATH_SOURCE_SMDETECT_HXX
|
|
|
|
#define INCLUDED_STARMATH_SOURCE_SMDETECT_HXX
|
2003-09-19 07:53:10 +00:00
|
|
|
|
|
|
|
#include <rtl/ustring.hxx>
|
2010-10-07 11:02:05 +01:00
|
|
|
#include <osl/diagnose.h>
|
2003-09-19 07:53:10 +00:00
|
|
|
#include <com/sun/star/document/XExtendedFilterDetection.hpp>
|
|
|
|
#include <com/sun/star/uno/Exception.hpp>
|
|
|
|
#include <com/sun/star/uno/Reference.h>
|
2015-02-28 16:55:13 +09:00
|
|
|
#include <cppuhelper/implbase.hxx>
|
2003-09-19 07:53:10 +00:00
|
|
|
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
|
|
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
|
|
|
|
#include <cppuhelper/factory.hxx>
|
|
|
|
|
|
|
|
namespace com
|
|
|
|
{
|
|
|
|
namespace sun
|
|
|
|
{
|
|
|
|
namespace star
|
|
|
|
{
|
|
|
|
namespace lang
|
|
|
|
{
|
|
|
|
class XMultiServiceFactory;
|
|
|
|
}
|
|
|
|
namespace beans
|
|
|
|
{
|
|
|
|
struct PropertyValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <sfx2/sfxuno.hxx>
|
|
|
|
|
2015-02-28 16:55:13 +09:00
|
|
|
class SmFilterDetect : public ::cppu::WeakImplHelper< css::document::XExtendedFilterDetection, css::lang::XServiceInfo >
|
2003-09-19 07:53:10 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-04-07 10:39:42 +09:00
|
|
|
explicit SmFilterDetect( const css::uno::Reference < css::lang::XMultiServiceFactory >& xFactory );
|
2003-09-19 07:53:10 +00:00
|
|
|
virtual ~SmFilterDetect();
|
|
|
|
|
2015-07-24 16:22:29 +02: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:53:10 +00:00
|
|
|
|
2015-07-24 16:22:29 +02:00
|
|
|
/* Helper for XServiceInfo */
|
|
|
|
static css::uno::Sequence< OUString > impl_getStaticSupportedServiceNames();
|
|
|
|
static OUString impl_getStaticImplementationName();
|
2014-02-25 20:41:20 +01:00
|
|
|
|
2015-07-24 16:22:29 +02:00
|
|
|
/* Helper for registry */
|
|
|
|
static css::uno::Reference< css::uno::XInterface > SAL_CALL impl_createInstance( const css::uno::Reference< css::lang::XMultiServiceFactory >& xServiceManager ) throw( css::uno::Exception );
|
2014-02-25 20:41:20 +01:00
|
|
|
|
2015-07-24 16:22:29 +02: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:53:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2010-10-14 08:30:41 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|