2010-10-27 12:53:26 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-21 14:30:25 +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 .
|
|
|
|
*/
|
2002-02-05 13:39:38 +00:00
|
|
|
|
2013-10-23 22:38:46 +02:00
|
|
|
#ifndef INCLUDED_SD_SOURCE_UI_INC_ACCESSIBLEPRESENTATIONSHAPE_HXX
|
|
|
|
#define INCLUDED_SD_SOURCE_UI_INC_ACCESSIBLEPRESENTATIONSHAPE_HXX
|
2002-02-05 13:39:38 +00:00
|
|
|
|
|
|
|
#include <svx/AccessibleShape.hxx>
|
|
|
|
|
|
|
|
namespace accessibility {
|
|
|
|
|
|
|
|
/** This class makes Impress shapes accessible.
|
|
|
|
*/
|
|
|
|
class AccessiblePresentationShape
|
|
|
|
: public AccessibleShape
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
//===== internal ========================================================
|
2002-05-06 08:38:50 +00:00
|
|
|
AccessiblePresentationShape (
|
|
|
|
const AccessibleShapeInfo& rShapeInfo,
|
|
|
|
const AccessibleShapeTreeInfo& rShapeTreeInfo);
|
2015-04-14 12:44:47 +02:00
|
|
|
virtual ~AccessiblePresentationShape();
|
2002-02-05 13:39:38 +00:00
|
|
|
|
|
|
|
//===== XServiceInfo ====================================================
|
|
|
|
|
|
|
|
/** Returns an identifier for the implementation of this object.
|
|
|
|
*/
|
2013-04-07 12:06:47 +02:00
|
|
|
virtual OUString SAL_CALL
|
2015-04-14 12:44:47 +02:00
|
|
|
getImplementationName()
|
2014-03-27 18:12:18 +01:00
|
|
|
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
2002-02-05 13:39:38 +00:00
|
|
|
|
2002-03-18 09:27:23 +00:00
|
|
|
//===== internal ========================================================
|
|
|
|
|
2002-02-05 13:39:38 +00:00
|
|
|
/// Create a name string that contains the accessible name.
|
2013-04-07 12:06:47 +02:00
|
|
|
virtual OUString
|
2002-03-18 09:27:23 +00:00
|
|
|
CreateAccessibleBaseName ()
|
2014-03-27 18:12:18 +01:00
|
|
|
throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
|
2002-02-05 13:39:38 +00:00
|
|
|
|
|
|
|
/// Create a description string that contains the accessible description.
|
2013-04-07 12:06:47 +02:00
|
|
|
virtual OUString
|
2002-03-18 09:27:23 +00:00
|
|
|
CreateAccessibleDescription ()
|
2014-03-27 18:12:18 +01:00
|
|
|
throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
|
|
|
|
OUString GetStyle() SAL_OVERRIDE;
|
2002-03-18 09:27:23 +00:00
|
|
|
|
|
|
|
private:
|
2015-02-07 12:27:40 +01:00
|
|
|
AccessiblePresentationShape (const AccessiblePresentationShape&) SAL_DELETED_FUNCTION;
|
2002-03-18 09:27:23 +00:00
|
|
|
|
2015-02-07 12:27:40 +01:00
|
|
|
AccessiblePresentationShape& operator= (const AccessiblePresentationShape&) SAL_DELETED_FUNCTION;
|
2002-02-05 13:39:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end of namespace accessibility
|
|
|
|
|
|
|
|
#endif
|
2010-10-27 12:53:26 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|