Files
libreoffice/svtools/source/toolpanel/toolpaneldeckpeer.hxx
Caolán McNamara 8e22cd40ec cppcheck: noExplicitConstructor
Change-Id: I8ae8623252546ca94f65fc04b331dd9cafa4fc92
2015-06-02 08:57:56 +01:00

62 lines
1.9 KiB
C++

/* -*- 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_SVTOOLS_SOURCE_TOOLPANEL_TOOLPANELDECKPEER_HXX
#define INCLUDED_SVTOOLS_SOURCE_TOOLPANEL_TOOLPANELDECKPEER_HXX
#include "svtaccessiblefactory.hxx"
#include <toolkit/awt/vclxwindow.hxx>
namespace svt
{
class ToolPanelDeck;
//= ToolPanelDeckPeer
class ToolPanelDeckPeer : public VCLXWindow
{
public:
explicit ToolPanelDeckPeer( ToolPanelDeck& i_rDeck );
protected:
virtual ~ToolPanelDeckPeer();
// VCLXWindow overridables
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > CreateAccessibleContext() SAL_OVERRIDE;
// XComponent
void SAL_CALL dispose() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
private:
AccessibleFactoryAccess m_aAccessibleFactory;
VclPtr<ToolPanelDeck> m_pDeck;
};
} // namespace svt
#endif // INCLUDED_SVTOOLS_SOURCE_TOOLPANEL_TOOLPANELDECKPEER_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */