diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-05-20 02:53:05 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-05-20 03:00:31 +0200 |
commit | 07cb96a163e1551ca1357ab9e648eb24d39f8ba2 (patch) | |
tree | be03f6c4b4f89a4f7769c46c6a8a0d7b87f20477 /include/toolkit/awt | |
parent | 20f2ea061d783767937d0e6b3219476b7ac28a9e (diff) |
remove unused header files
Change-Id: If7ec1ff0a78f9cde5ac926e92377de4720c828b2
Diffstat (limited to 'include/toolkit/awt')
-rw-r--r-- | include/toolkit/awt/xsimpleanimation.hxx | 70 | ||||
-rw-r--r-- | include/toolkit/awt/xthrobber.hxx | 73 |
2 files changed, 0 insertions, 143 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: */ |