2010-10-14 08:27:31 +02: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.
|
2010-02-26 22:25:32 +01:00
|
|
|
*
|
2012-06-21 14:30:25 +01:00
|
|
|
* 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/.
|
2010-02-26 22:25:32 +01:00
|
|
|
*
|
2012-06-21 14:30:25 +01:00
|
|
|
* This file incorporates work covered by the following license notice:
|
2010-02-26 22:25:32 +01:00
|
|
|
*
|
2012-06-21 14:30:25 +01:00
|
|
|
* 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 .
|
|
|
|
*/
|
2010-02-26 22:25:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
#include "dummypanel.hxx"
|
|
|
|
|
2014-02-25 20:45:41 +01:00
|
|
|
|
2010-02-26 22:25:32 +01:00
|
|
|
namespace svt
|
|
|
|
{
|
2014-02-25 20:45:41 +01:00
|
|
|
|
2010-02-26 22:25:32 +01:00
|
|
|
|
2010-03-30 16:00:37 +02:00
|
|
|
using ::com::sun::star::uno::Reference;
|
|
|
|
using ::com::sun::star::accessibility::XAccessible;
|
|
|
|
|
2014-02-25 20:45:41 +01:00
|
|
|
|
2010-02-26 22:25:32 +01:00
|
|
|
//= DummyPanel
|
2014-02-25 20:45:41 +01:00
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2010-02-26 22:25:32 +01:00
|
|
|
DummyPanel::DummyPanel()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2010-02-26 22:25:32 +01:00
|
|
|
DummyPanel::~DummyPanel()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-09-23 11:20:40 +02:00
|
|
|
void DummyPanel::Activate( vcl::Window& )
|
2010-02-26 22:25:32 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2010-03-19 10:28:04 +01:00
|
|
|
void DummyPanel::Deactivate()
|
2010-02-26 22:25:32 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2010-03-19 10:28:04 +01:00
|
|
|
void DummyPanel::SetSizePixel( const Size& )
|
2010-02-26 22:25:32 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString DummyPanel::GetDisplayName() const
|
2010-03-01 13:23:12 +01:00
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
return OUString();
|
2010-03-01 13:23:12 +01:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2010-03-01 13:23:12 +01:00
|
|
|
Image DummyPanel::GetImage() const
|
|
|
|
{
|
|
|
|
return Image();
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
OString DummyPanel::GetHelpID() const
|
2010-05-18 12:01:02 +02:00
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
return OString();
|
2010-05-18 12:01:02 +02:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2010-03-02 10:31:11 +01:00
|
|
|
void DummyPanel::GrabFocus()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2010-03-15 11:33:53 +01:00
|
|
|
void DummyPanel::Dispose()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2010-03-30 16:00:37 +02:00
|
|
|
Reference< XAccessible > DummyPanel::CreatePanelAccessible( const Reference< XAccessible >& i_rParentAccessible )
|
|
|
|
{
|
|
|
|
(void)i_rParentAccessible;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-25 20:45:41 +01:00
|
|
|
|
2010-02-26 22:25:32 +01:00
|
|
|
} // namespace svt
|
2014-02-25 20:45:41 +01:00
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|