From 6e33eee41ddfa8c3bace8886ca6b7ab1529f9964 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Fri, 22 Jul 2011 22:39:26 +0200 Subject: callcatcher: remove unused methods --- sfx2/Library_sfx.mk | 1 - sfx2/source/appl/appinit.cxx | 1 - sfx2/source/appl/appmain.cxx | 1 - sfx2/source/appl/appmisc.cxx | 1 - sfx2/source/dialog/intro.cxx | 109 ------------------------------------------- sfx2/source/inc/intro.hxx | 57 ---------------------- 6 files changed, 170 deletions(-) delete mode 100644 sfx2/source/dialog/intro.cxx delete mode 100644 sfx2/source/inc/intro.hxx (limited to 'sfx2') diff --git a/sfx2/Library_sfx.mk b/sfx2/Library_sfx.mk index 4af5501016ee..e002feafe0f3 100755 --- a/sfx2/Library_sfx.mk +++ b/sfx2/Library_sfx.mk @@ -158,7 +158,6 @@ $(eval $(call gb_Library_add_exception_objects,sfx,\ sfx2/source/dialog/dockwin \ sfx2/source/dialog/filedlghelper \ sfx2/source/dialog/filtergrouping \ - sfx2/source/dialog/intro \ sfx2/source/dialog/itemconnect \ sfx2/source/dialog/mailmodel \ sfx2/source/dialog/mgetempl \ diff --git a/sfx2/source/appl/appinit.cxx b/sfx2/source/appl/appinit.cxx index 4f4f3a1ebe6a..cafe3ef36ea8 100644 --- a/sfx2/source/appl/appinit.cxx +++ b/sfx2/source/appl/appinit.cxx @@ -68,7 +68,6 @@ #include #include #include -#include "intro.hxx" #include #include #include diff --git a/sfx2/source/appl/appmain.cxx b/sfx2/source/appl/appmain.cxx index 00ec4e88ecdd..54c07bd42822 100644 --- a/sfx2/source/appl/appmain.cxx +++ b/sfx2/source/appl/appmain.cxx @@ -54,7 +54,6 @@ #include "sfx2/sfxresid.hxx" #include #include -#include "intro.hxx" #include #include #include diff --git a/sfx2/source/appl/appmisc.cxx b/sfx2/source/appl/appmisc.cxx index eb0a10016d33..767e514dcba3 100644 --- a/sfx2/source/appl/appmisc.cxx +++ b/sfx2/source/appl/appmisc.cxx @@ -71,7 +71,6 @@ #include #include #include "workwin.hxx" -#include "intro.hxx" #include #include "sfxlocal.hrc" #include diff --git a/sfx2/source/dialog/intro.cxx b/sfx2/source/dialog/intro.cxx deleted file mode 100644 index 8bfed93e4cba..000000000000 --- a/sfx2/source/dialog/intro.cxx +++ /dev/null @@ -1,109 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -// MARKER(update_precomp.py): autogen include statement, do not remove -#include "precompiled_sfx2.hxx" - -#include "intro.hxx" - -#include -#include -#include -#include -#include - -#include - -// ----------------------------------------------------------------------- - -void IntroWindow_Impl::Init() -{ - Size aSize = aIntroBmp.GetSizePixel(); - SetOutputSizePixel( aSize ); - Size aScreenSize( GetDesktopRectPixel().GetSize() ); - Size aWinSize( GetSizePixel() ); - Point aWinPos( ( aScreenSize.Width() - aWinSize.Width() ) / 2, - ( aScreenSize.Height() - aWinSize.Height() ) / 2 ); - SetPosPixel( aWinPos ); - - if ( GetColorCount() >= 16 ) - { - Show(); - Update(); - } -} - -// ----------------------------------------------------------------------- - -IntroWindow_Impl::IntroWindow_Impl( const Bitmap& rBmp ) : - - WorkWindow( NULL, (WinBits)0 ), - - aIntroBmp( rBmp ) - -{ - Hide(); - - // load bitmap depends on productname ("StarOffice", "StarSuite",...) - ::com::sun::star::uno::Any aRet = ::utl::ConfigManager::GetDirectConfigProperty( ::utl::ConfigManager::PRODUCTNAME ); - rtl::OUString aTmp; - aRet >>= aTmp; - String aBmpFileName = aTmp; - aBmpFileName += String( DEFINE_CONST_UNICODE("_intro.bmp") ); - INetURLObject aObj( SvtPathOptions().GetModulePath(), INET_PROT_FILE ); - aObj.insertName( aBmpFileName ); - SvFileStream aStrm( aObj.PathToFileName(), STREAM_STD_READ ); - if ( !aStrm.GetError() ) - aStrm >> aIntroBmp; - - Init(); -} - -// ----------------------------------------------------------------------- - -IntroWindow_Impl::~IntroWindow_Impl() -{ - Hide(); -} - -// ----------------------------------------------------------------------- - -void IntroWindow_Impl::Paint( const Rectangle& ) -{ - DrawBitmap( Point(), aIntroBmp ); - Flush(); -} - -// ----------------------------------------------------------------------- - -void IntroWindow_Impl::Slide() -{ -} - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/sfx2/source/inc/intro.hxx b/sfx2/source/inc/intro.hxx deleted file mode 100644 index 8eb741bc7a97..000000000000 --- a/sfx2/source/inc/intro.hxx +++ /dev/null @@ -1,57 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * - * for a copy of the LGPLv3 License. - * - ************************************************************************/ -#ifndef _SFX_INTRO_HXX -#define _SFX_INTRO_HXX - -// include --------------------------------------------------------------- - -#include -#include - -// class IntroWindow_Impl ------------------------------------------------ - -class IntroWindow_Impl : public WorkWindow -{ -private: - Bitmap aIntroBmp; - - void Init(); - -public: - IntroWindow_Impl( const Bitmap& rBmp ); - ~IntroWindow_Impl(); - - virtual void Paint( const Rectangle& ); - - void Slide(); -}; - -#endif // #ifndef _SFX_INTRO_HXX - - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit