2004-09-09 08:46:29 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 14:49:15 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-09-09 08:46:29 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-09-09 08:46:29 +00:00
|
|
|
*
|
2008-04-10 14:49:15 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-09-09 08:46:29 +00:00
|
|
|
*
|
2008-04-10 14:49:15 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-09-09 08:46:29 +00:00
|
|
|
*
|
2008-04-10 14:49:15 +00:00
|
|
|
* 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.
|
2004-09-09 08:46:29 +00:00
|
|
|
*
|
2008-04-10 14:49:15 +00:00
|
|
|
* 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).
|
2004-09-09 08:46:29 +00:00
|
|
|
*
|
2008-04-10 14:49:15 +00:00
|
|
|
* 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.
|
2004-09-09 08:46:29 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef DBACCESS_TOOLBOXCONTROLLER_HXX
|
|
|
|
#define DBACCESS_TOOLBOXCONTROLLER_HXX
|
|
|
|
|
|
|
|
#include <svtools/toolboxcontroller.hxx>
|
|
|
|
#include <comphelper/stl_types.hxx>
|
|
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
|
|
#include <cppuhelper/implbase1.hxx>
|
|
|
|
#include "apitools.hxx"
|
2007-07-06 07:32:06 +00:00
|
|
|
#include "moduledbu.hxx"
|
2006-04-19 12:22:13 +00:00
|
|
|
#include <memory>
|
2004-09-09 08:46:29 +00:00
|
|
|
|
2006-04-19 12:22:13 +00:00
|
|
|
class PopupMenu;
|
2004-09-09 08:46:29 +00:00
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
typedef ::cppu::ImplHelper1 < ::com::sun::star::lang::XServiceInfo> TToolboxController_BASE;
|
|
|
|
|
|
|
|
class OToolboxController : public ::svt::ToolboxController
|
|
|
|
,public TToolboxController_BASE
|
|
|
|
{
|
|
|
|
DECLARE_STL_USTRINGACCESS_MAP(sal_Bool,TCommandState);
|
2007-07-06 07:32:06 +00:00
|
|
|
OModuleClient m_aModuleClient;
|
2004-09-09 08:46:29 +00:00
|
|
|
TCommandState m_aStates;
|
|
|
|
sal_uInt16 m_nToolBoxId;
|
2006-04-19 12:22:13 +00:00
|
|
|
|
|
|
|
::std::auto_ptr<PopupMenu> getMenu();
|
2004-09-09 08:46:29 +00:00
|
|
|
public:
|
|
|
|
OToolboxController(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& _rxORB);
|
|
|
|
|
|
|
|
// XInterface
|
|
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
virtual void SAL_CALL acquire() throw ();
|
|
|
|
virtual void SAL_CALL release() throw ();
|
|
|
|
// XServiceInfo
|
|
|
|
DECLARE_SERVICE_INFO_STATIC();
|
|
|
|
|
|
|
|
// XInitialization
|
|
|
|
virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
|
|
|
|
// XStatusListener
|
|
|
|
virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException );
|
|
|
|
// XToolbarController
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > SAL_CALL createPopupWindow() throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
};
|
|
|
|
//..........................................................................
|
|
|
|
} // dbaui
|
|
|
|
//..........................................................................
|
|
|
|
#endif //DBACCESS_TOOLBOXCONTROLLER_HXX
|
|
|
|
|