office-gobmx/UnoControls/inc/basecontainercontrol.hxx

595 lines
18 KiB
C++
Raw Normal View History

2010-10-27 06:45:03 -05:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 10:18:56 -05:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 10:18:56 -05:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 10:18:56 -05:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 10:18:56 -05:00
*
* This file is part of OpenOffice.org.
2000-09-18 10:18:56 -05: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.
2000-09-18 10:18:56 -05: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).
2000-09-18 10:18:56 -05: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.
2000-09-18 10:18:56 -05:00
*
************************************************************************/
#ifndef _UNOCONTROLS_BASECONTAINERCONTROL_CTRL_HXX
#define _UNOCONTROLS_BASECONTAINERCONTROL_CTRL_HXX
//____________________________________________________________________________________________________________
// includes of other projects
//____________________________________________________________________________________________________________
#include <com/sun/star/lang/XServiceName.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/container/XContainer.hpp>
#include <com/sun/star/container/XIndexContainer.hpp>
#include <com/sun/star/container/XNameReplace.hpp>
#include <com/sun/star/container/XContainerListener.hpp>
#include <com/sun/star/container/XSet.hpp>
#include <com/sun/star/container/ContainerEvent.hpp>
#include <com/sun/star/container/XIndexReplace.hpp>
#include <com/sun/star/container/XNameContainer.hpp>
#include <vector>
2000-09-18 10:18:56 -05:00
//____________________________________________________________________________________________________________
// includes of my own project
//____________________________________________________________________________________________________________
#include "basecontrol.hxx"
//____________________________________________________________________________________________________________
// "namespaces"
//____________________________________________________________________________________________________________
namespace unocontrols{
2010-10-31 23:34:25 -05:00
#define CSS_UNO ::com::sun::star::uno
#define CSS_AWT ::com::sun::star::awt
#define CSS_LANG ::com::sun::star::lang
#define CSS_CONTAINER ::com::sun::star::container
2000-09-18 10:18:56 -05:00
//____________________________________________________________________________________________________________
// structs, types, forwards
//____________________________________________________________________________________________________________
struct IMPL_ControlInfo
{
2010-10-31 23:34:25 -05:00
CSS_UNO::Reference< CSS_AWT::XControl > xControl ;
::rtl::OUString sName ;
2000-09-18 10:18:56 -05:00
};
//____________________________________________________________________________________________________________
// classes
//____________________________________________________________________________________________________________
2010-10-31 23:34:25 -05:00
class BaseContainerControl : public CSS_AWT::XControlModel
, public CSS_AWT::XControlContainer
2000-09-18 10:18:56 -05:00
, public BaseControl
{
//____________________________________________________________________________________________________________
// public methods
//____________________________________________________________________________________________________________
public:
//________________________________________________________________________________________________________
// construct/destruct
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
BaseContainerControl( const CSS_UNO::Reference< CSS_LANG::XMultiServiceFactory >& xFactory );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
virtual ~BaseContainerControl();
//________________________________________________________________________________________________________
// XInterface
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short give answer, if interface is supported
@descr The interfaces are searched by type.
@seealso XInterface
@param "rType" is the type of searched interface.
@return Any information about found interface
@onerror A RuntimeException is thrown.
*/
2010-10-31 23:34:25 -05:00
virtual CSS_UNO::Any SAL_CALL queryInterface(
const CSS_UNO::Type& aType
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
//________________________________________________________________________________________________________
// XTypeProvider
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short get information about supported interfaces
@descr -
@seealso XTypeProvider
@param -
@return Sequence of types of all supported interfaces
@onerror A RuntimeException is thrown.
*/
2010-10-31 23:34:25 -05:00
virtual CSS_UNO::Sequence< CSS_UNO::Type > SAL_CALL getTypes()
throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
//________________________________________________________________________________________________________
// XAggregation
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual CSS_UNO::Any SAL_CALL queryAggregation(
const CSS_UNO::Type& aType
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
//________________________________________________________________________________________________________
// XControl
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL createPeer(
const CSS_UNO::Reference< CSS_AWT::XToolkit >& xToolkit ,
const CSS_UNO::Reference< CSS_AWT::XWindowPeer >& xParent
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual sal_Bool SAL_CALL setModel(
const CSS_UNO::Reference< CSS_AWT::XControlModel >& xModel
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual CSS_UNO::Reference< CSS_AWT::XControlModel > SAL_CALL getModel()
throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
//________________________________________________________________________________________________________
// XComponent
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL dispose() throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
//________________________________________________________________________________________________________
// XEventListener
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL disposing( const CSS_LANG::EventObject& rEvent ) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
//________________________________________________________________________________________________________
// XControlContainer
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL addControl(
const ::rtl::OUString& sName ,
const CSS_UNO::Reference< CSS_AWT::XControl >& xControl
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL addContainerListener(
const CSS_UNO::Reference< CSS_CONTAINER::XContainerListener >& xListener
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL removeControl(
const CSS_UNO::Reference< CSS_AWT::XControl >& xControl
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL removeContainerListener(
const CSS_UNO::Reference< CSS_CONTAINER::XContainerListener >& xListener
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL setStatusText(
const ::rtl::OUString& sStatusText
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual CSS_UNO::Reference< CSS_AWT::XControl > SAL_CALL getControl(
const ::rtl::OUString& sName
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual CSS_UNO::Sequence< CSS_UNO::Reference< CSS_AWT::XControl > > SAL_CALL getControls()
throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
//________________________________________________________________________________________________________
// XUnoControlContainer
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL addTabController(
const CSS_UNO::Reference< CSS_AWT::XTabController >& xTabController
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL removeTabController(
const CSS_UNO::Reference< CSS_AWT::XTabController >& xTabController
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL setTabControllers(
const CSS_UNO::Sequence< CSS_UNO::Reference< CSS_AWT::XTabController > >& xTabControllers
) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual CSS_UNO::Sequence< CSS_UNO::Reference< CSS_AWT::XTabController > > SAL_CALL getTabControllers()
throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
//________________________________________________________________________________________________________
// XWindow
//________________________________________________________________________________________________________
/**_______________________________________________________________________________________________________
@short -
@descr -
@seealso -
@param -
@return -
@onerror -
*/
2010-10-31 23:34:25 -05:00
virtual void SAL_CALL setVisible( sal_Bool bVisible ) throw( CSS_UNO::RuntimeException );
2000-09-18 10:18:56 -05:00
//____________________________________________________________________________________________________________
// protected methods
//____________________________________________________________________________________________________________
protected:
using OComponentHelper::disposing;
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short
@descr
@seealso
@param
@return
@onerror
*/
2010-10-31 23:34:25 -05:00
virtual CSS_AWT::WindowDescriptor* impl_getWindowDescriptor(
const CSS_UNO::Reference< CSS_AWT::XWindowPeer >& xParentPeer
);
2000-09-18 10:18:56 -05:00
/**_______________________________________________________________________________________________________
@short
@descr
@seealso
@param
@return
@onerror
*/
2010-10-31 23:34:25 -05:00
virtual void impl_paint(
sal_Int32 nX ,
sal_Int32 nY ,
const CSS_UNO::Reference< CSS_AWT::XGraphics >& xGraphics
);
2000-09-18 10:18:56 -05:00
//____________________________________________________________________________________________________________
// private methods
//____________________________________________________________________________________________________________
private:
/**_______________________________________________________________________________________________________
@short
@descr
@seealso
@param
@return
@onerror
*/
void impl_activateTabControllers();
/**_______________________________________________________________________________________________________
@short
@descr
@seealso
@param
@return
@onerror
*/
void impl_cleanMemory();
//____________________________________________________________________________________________________________
// private variables
//____________________________________________________________________________________________________________
private:
2010-10-31 23:34:25 -05:00
// list of pointer of "struct IMPL_ControlInfo" to hold child-controls
::std::vector< IMPL_ControlInfo* > maControlInfoList;
2000-09-18 10:18:56 -05:00
2010-10-31 23:34:25 -05:00
// list of references of XTabController to hold tab-order in this container
CSS_UNO::Sequence< CSS_UNO::Reference< CSS_AWT::XTabController > > m_xTabControllerList ;
::cppu::OMultiTypeInterfaceContainerHelper m_aListeners ;
2000-09-18 10:18:56 -05:00
}; // class BaseContainerControl
2010-10-31 23:34:25 -05:00
// The namespace aliases are only used in this header
#undef CSS_UNO
#undef CSS_AWT
#undef CSS_LANG
#undef CSS_CONTAINER
2000-09-18 10:18:56 -05:00
} // namespace unocontrols
#endif // ifndef _UNOCONTROLS_BASECONTAINERCONTROL_CTRL_HXX
2010-10-27 06:45:03 -05:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */