summaryrefslogtreecommitdiff
path: root/include/toolkit
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-20 02:53:05 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-05-20 03:00:31 +0200
commit07cb96a163e1551ca1357ab9e648eb24d39f8ba2 (patch)
treebe03f6c4b4f89a4f7769c46c6a8a0d7b87f20477 /include/toolkit
parent20f2ea061d783767937d0e6b3219476b7ac28a9e (diff)
remove unused header files
Change-Id: If7ec1ff0a78f9cde5ac926e92377de4720c828b2
Diffstat (limited to 'include/toolkit')
-rw-r--r--include/toolkit/awt/xsimpleanimation.hxx70
-rw-r--r--include/toolkit/awt/xthrobber.hxx73
-rw-r--r--include/toolkit/controls/tksimpleanimation.hxx95
-rw-r--r--include/toolkit/controls/tkthrobber.hxx103
4 files changed, 0 insertions, 341 deletions
diff --git a/include/toolkit/awt/xsimpleanimation.hxx b/include/toolkit/awt/xsimpleanimation.hxx
deleted file mode 100644
index b41b81d23672..000000000000
--- a/include/toolkit/awt/xsimpleanimation.hxx
+++ /dev/null
@@ -1,70 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * 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 .
- */
-#ifndef INCLUDED_TOOLKIT_AWT_XSIMPLEANIMATION_HXX
-#define INCLUDED_TOOLKIT_AWT_XSIMPLEANIMATION_HXX
-
-#include <toolkit/awt/vclxwindow.hxx>
-#include <toolkit/helper/listenermultiplexer.hxx>
-#include <cppuhelper/implbase1.hxx>
-#include <comphelper/uno3.hxx>
-#include <com/sun/star/awt/XSimpleAnimation.hpp>
-
-#include <boost/scoped_ptr.hpp>
-
-
-namespace toolkit
-{
-
-
-
- //= XSimpleAnimation
-
- typedef ::cppu::ImplInheritanceHelper1 < VCLXWindow
- , ::com::sun::star::awt::XSimpleAnimation
- > XSimpleAnimation_Base;
-
- class XSimpleAnimation : public XSimpleAnimation_Base
- {
- public:
- XSimpleAnimation();
-
- protected:
- ~XSimpleAnimation();
-
- // XSimpleAnimation
- virtual void SAL_CALL start() throw (::com::sun::star::uno::RuntimeException);
- virtual void SAL_CALL stop() throw (::com::sun::star::uno::RuntimeException);
- virtual void SAL_CALL setImageList( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic > >& ImageList )
- throw (::com::sun::star::uno::RuntimeException);
- // VclWindowPeer
- virtual void SAL_CALL setProperty( const OUString& PropertyName, const ::com::sun::star::uno::Any& Value ) throw(::com::sun::star::uno::RuntimeException);
- virtual ::com::sun::star::uno::Any SAL_CALL getProperty( const OUString& PropertyName ) throw(::com::sun::star::uno::RuntimeException);
-
- private:
- XSimpleAnimation( const XSimpleAnimation& ); // never implemented
- XSimpleAnimation& operator=( const XSimpleAnimation& ); // never implemented
- };
-
-
-} // namespacetoolkit
-
-
-#endif // TOOLKIT_INC_ INCLUDED_TOOLKIT_AWT_XSIMPLEANIMATION_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/toolkit/awt/xthrobber.hxx b/include/toolkit/awt/xthrobber.hxx
deleted file mode 100644
index fd2959b75442..000000000000
--- a/include/toolkit/awt/xthrobber.hxx
+++ /dev/null
@@ -1,73 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * 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 .
- */
-#ifndef INCLUDED_TOOLKIT_AWT_XTHROBBER_HXX
-#define INCLUDED_TOOLKIT_AWT_XTHROBBER_HXX
-
-#include <toolkit/awt/vclxwindow.hxx>
-#include <toolkit/helper/listenermultiplexer.hxx>
-#include <cppuhelper/implbase1.hxx>
-#include <comphelper/uno3.hxx>
-#include <com/sun/star/awt/XThrobber.hpp>
-
-#include <boost/scoped_ptr.hpp>
-#include <boost/noncopyable.hpp>
-
-
-namespace toolkit
-{
-
-
-
- //= XThrobber
-
- typedef ::cppu::ImplInheritanceHelper1 < VCLXWindow
- , ::com::sun::star::awt::XThrobber
- > XThrobber_Base;
-
- class XThrobber :public XThrobber_Base
- ,public ::boost::noncopyable
- {
- private:
- void SAL_CALL InitImageList() throw(::com::sun::star::uno::RuntimeException);
-
- public:
- XThrobber();
-
- protected:
- ~XThrobber();
-
- // XThrobber
- virtual void SAL_CALL start() throw (::com::sun::star::uno::RuntimeException);
- virtual void SAL_CALL stop() throw (::com::sun::star::uno::RuntimeException);
-
- // VCLXWindow
- virtual void SetWindow( Window* pWindow );
-
- private:
- XThrobber( const XThrobber& ); // never implemented
- XThrobber& operator=( const XThrobber& ); // never implemented
- };
-
-
-} // namespacetoolkit
-
-
-#endif // INCLUDED_TOOLKIT_AWT_XTHROBBER_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/toolkit/controls/tksimpleanimation.hxx b/include/toolkit/controls/tksimpleanimation.hxx
deleted file mode 100644
index 482390c8fd96..000000000000
--- a/include/toolkit/controls/tksimpleanimation.hxx
+++ /dev/null
@@ -1,95 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * 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 .
- */
-#ifndef INCLUDED_TOOLKIT_CONTROLS_TKSIMPLEANIMATION_HXX
-#define INCLUDED_TOOLKIT_CONTROLS_TKSIMPLEANIMATION_HXX
-
-#include <toolkit/controls/unocontrolmodel.hxx>
-#include <toolkit/helper/servicenames.hxx>
-#include <toolkit/controls/unocontrolbase.hxx>
-#include <toolkit/helper/macros.hxx>
-#include <com/sun/star/graphic/XGraphic.hpp>
-#include <com/sun/star/awt/XSimpleAnimation.hpp>
-#include <comphelper/uno3.hxx>
-#include <cppuhelper/implbase1.hxx>
-
-
-namespace toolkit
-{
-
-
-
- //= UnoSimpleAnimationControlModel
-
- class UnoSimpleAnimationControlModel : public UnoControlModel
- {
- protected:
- ::com::sun::star::uno::Any ImplGetDefaultValue( sal_uInt16 nPropId ) const;
- ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
-
- public:
- UnoSimpleAnimationControlModel( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& i_factory );
- UnoSimpleAnimationControlModel( const UnoSimpleAnimationControlModel& rModel ) : UnoControlModel( rModel ) {;}
-
- UnoControlModel* Clone() const { return new UnoSimpleAnimationControlModel( *this ); }
-
- // XMultiPropertySet
- ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException);
-
- // XPersistObject
- OUString SAL_CALL getServiceName() throw(::com::sun::star::uno::RuntimeException);
-
- // XServiceInfo
- OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
- ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
- };
-
-
- //= UnoSimpleAnimationControl
-
-
- typedef ::cppu::AggImplInheritanceHelper1 < UnoControlBase
- , ::com::sun::star::awt::XSimpleAnimation
- > UnoSimpleAnimationControl_Base;
-
- class UnoSimpleAnimationControl : public UnoSimpleAnimationControl_Base
- {
- private:
-
- public:
- UnoSimpleAnimationControl();
- OUString GetComponentServiceName();
-
- // XSimpleAnimation
- virtual void SAL_CALL start() throw (::com::sun::star::uno::RuntimeException);
- virtual void SAL_CALL stop() throw (::com::sun::star::uno::RuntimeException);
- virtual void SAL_CALL setImageList( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic > >& ImageList )
- throw (::com::sun::star::uno::RuntimeException);
-
- // XServiceInfo
- OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
- ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
- };
-
-
-} // namespacetoolkit
-
-
-#endif // INCLUDED_TOOLKIT_CONTROLS_TKSIMPLEANIMATION_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/toolkit/controls/tkthrobber.hxx b/include/toolkit/controls/tkthrobber.hxx
deleted file mode 100644
index 972690e173ec..000000000000
--- a/include/toolkit/controls/tkthrobber.hxx
+++ /dev/null
@@ -1,103 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * 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 .
- */
-#ifndef INCLUDED_TOOLKIT_CONTROLS_TKTHROBBER_HXX
-#define INCLUDED_TOOLKIT_CONTROLS_TKTHROBBER_HXX
-
-#include <toolkit/controls/unocontrolmodel.hxx>
-#include <toolkit/helper/servicenames.hxx>
-#include <toolkit/controls/unocontrolbase.hxx>
-#include <toolkit/helper/macros.hxx>
-#include <com/sun/star/graphic/XGraphic.hpp>
-#include <com/sun/star/awt/XThrobber.hpp>
-#include <comphelper/uno3.hxx>
-#include <cppuhelper/implbase1.hxx>
-
-
-namespace toolkit
-{
-
-
-
- //= UnoThrobberControlModel
-
- class UnoThrobberControlModel : public UnoControlModel
- {
- protected:
- ::com::sun::star::uno::Any ImplGetDefaultValue( sal_uInt16 nPropId ) const;
- ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper();
-
- public:
- UnoThrobberControlModel( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& i_factory );
- UnoThrobberControlModel( const UnoThrobberControlModel& rModel ) : UnoControlModel( rModel ) {;}
-
- UnoControlModel* Clone() const { return new UnoThrobberControlModel( *this ); }
-
- // XMultiPropertySet
- ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException);
-
- // XPersistObject
- OUString SAL_CALL getServiceName() throw(::com::sun::star::uno::RuntimeException);
-
- // XServiceInfo
- OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
- ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
- };
-
-
- //= UnoThrobberControl
-
-
- typedef ::cppu::ImplHelper1 < ::com::sun::star::awt::XThrobber
- > UnoThrobberControl_Base;
-
- class UnoThrobberControl :public UnoControlBase
- ,public UnoThrobberControl_Base
- {
- private:
-
- public:
- UnoThrobberControl();
- OUString GetComponentServiceName();
-
- DECLARE_UNO3_AGG_DEFAULTS( UnoThrobberControl, UnoControlBase )
- ::com::sun::star::uno::Any SAL_CALL queryAggregation( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException);
-
- void SAL_CALL createPeer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit >& Toolkit, const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer >& Parent ) throw(::com::sun::star::uno::RuntimeException);
- void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException) { UnoControlBase::disposing( Source ); }
- void SAL_CALL dispose( ) throw(::com::sun::star::uno::RuntimeException);
-
- // XTypeProvider
- DECLARE_XTYPEPROVIDER()
-
- // XThrobber
- virtual void SAL_CALL start() throw (::com::sun::star::uno::RuntimeException);
- virtual void SAL_CALL stop() throw (::com::sun::star::uno::RuntimeException);
-
- // XServiceInfo
- OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
- ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException);
- };
-
-
-} // namespacetoolkit
-
-
-#endif // INCLUDED_TOOLKIT_CONTROLS_TKTHROBBER_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */