2010-10-14 01:27:31 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2010-02-26 15:25:32 -06:00
|
|
|
/*************************************************************************
|
|
|
|
* 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
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#include "precompiled_svtools.hxx"
|
|
|
|
|
|
|
|
#include "dummypanel.hxx"
|
|
|
|
|
|
|
|
//........................................................................
|
|
|
|
namespace svt
|
|
|
|
{
|
|
|
|
//........................................................................
|
|
|
|
|
2010-03-30 09:00:37 -05:00
|
|
|
using ::com::sun::star::uno::Reference;
|
|
|
|
using ::com::sun::star::accessibility::XAccessible;
|
|
|
|
|
2010-02-26 15:25:32 -06:00
|
|
|
//====================================================================
|
|
|
|
//= DummyPanel
|
|
|
|
//====================================================================
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
DummyPanel::DummyPanel()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
DummyPanel::~DummyPanel()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-03-01 06:23:12 -06:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
IMPLEMENT_IREFERENCE( DummyPanel )
|
|
|
|
|
2010-02-26 15:25:32 -06:00
|
|
|
//--------------------------------------------------------------------
|
2010-03-19 04:28:04 -05:00
|
|
|
void DummyPanel::Activate( Window& )
|
2010-02-26 15:25:32 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2010-03-19 04:28:04 -05:00
|
|
|
void DummyPanel::Deactivate()
|
2010-02-26 15:25:32 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2010-03-19 04:28:04 -05:00
|
|
|
void DummyPanel::SetSizePixel( const Size& )
|
2010-02-26 15:25:32 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-03-01 06:23:12 -06:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
::rtl::OUString DummyPanel::GetDisplayName() const
|
|
|
|
{
|
|
|
|
return ::rtl::OUString();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
Image DummyPanel::GetImage() const
|
|
|
|
{
|
|
|
|
return Image();
|
|
|
|
}
|
|
|
|
|
2010-05-18 05:01:02 -05:00
|
|
|
//--------------------------------------------------------------------
|
2010-07-13 07:38:37 -05:00
|
|
|
rtl::OString DummyPanel::GetHelpID() const
|
2010-05-18 05:01:02 -05:00
|
|
|
{
|
2010-07-13 07:38:37 -05:00
|
|
|
return rtl::OString();
|
2010-05-18 05:01:02 -05:00
|
|
|
}
|
|
|
|
|
2010-03-02 03:31:11 -06:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void DummyPanel::GrabFocus()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-03-15 05:33:53 -05:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void DummyPanel::Dispose()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-03-30 09:00:37 -05:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
Reference< XAccessible > DummyPanel::CreatePanelAccessible( const Reference< XAccessible >& i_rParentAccessible )
|
|
|
|
{
|
|
|
|
(void)i_rParentAccessible;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-02-26 15:25:32 -06:00
|
|
|
//........................................................................
|
|
|
|
} // namespace svt
|
|
|
|
//........................................................................
|
2010-10-14 01:27:31 -05:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|