summaryrefslogtreecommitdiff
path: root/UnoControls/inc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 19:56:18 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 20:00:28 +0300
commit1e0fae45a6b13e7571ec890d27dc1f6f69c9f3fb (patch)
treee046ccfbd937ed9a8ef466832a713cddb3ce0ca2 /UnoControls/inc
parentfdecbd4a415ef8d08d16321beb6567919bd8e864 (diff)
Bin empty @seealso, @param, @return and @onerror metacomments
Change-Id: I6517028670a953954b31599fa3e23f4c8ee8cfc9
Diffstat (limited to 'UnoControls/inc')
-rw-r--r--UnoControls/inc/basecontainercontrol.hxx145
-rw-r--r--UnoControls/inc/basecontrol.hxx602
-rw-r--r--UnoControls/inc/multiplexer.hxx361
3 files changed, 0 insertions, 1108 deletions
diff --git a/UnoControls/inc/basecontainercontrol.hxx b/UnoControls/inc/basecontainercontrol.hxx
index 0408cb92060a..4938a69e9762 100644
--- a/UnoControls/inc/basecontainercontrol.hxx
+++ b/UnoControls/inc/basecontainercontrol.hxx
@@ -58,31 +58,11 @@ public:
// construct/destruct
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
BaseContainerControl( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext );
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ~BaseContainerControl();
@@ -110,12 +90,7 @@ public:
/**_______________________________________________________________________________________________________
@short get information about supported interfaces
- @descr -
-
@seealso XTypeProvider
-
- @param -
-
@return Sequence of types of all supported interfaces
@onerror A RuntimeException is thrown.
@@ -127,16 +102,6 @@ public:
// XAggregation
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation(
@@ -146,16 +111,6 @@ public:
// XControl
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL createPeer(
@@ -164,16 +119,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual sal_Bool SAL_CALL setModel(
@@ -181,16 +126,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControlModel > SAL_CALL getModel()
@@ -199,16 +134,6 @@ public:
// XComponent
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL dispose() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -216,16 +141,6 @@ public:
// XEventListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& rEvent ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -233,16 +148,6 @@ public:
// XControlContainer
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL addControl(
@@ -251,16 +156,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL removeControl(
@@ -268,16 +163,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setStatusText(
@@ -285,16 +170,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl > SAL_CALL getControl(
@@ -302,16 +177,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControl > > SAL_CALL getControls()
@@ -320,16 +185,6 @@ public:
// XWindow
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setVisible( sal_Bool bVisible ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
diff --git a/UnoControls/inc/basecontrol.hxx b/UnoControls/inc/basecontrol.hxx
index 45ca1b2530f8..c46f30f9adf4 100644
--- a/UnoControls/inc/basecontrol.hxx
+++ b/UnoControls/inc/basecontrol.hxx
@@ -126,31 +126,11 @@ public:
// construct/destruct
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
BaseControl( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& rxContext );
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ~BaseControl();
@@ -176,15 +156,8 @@ public:
/**_______________________________________________________________________________________________________
@short increment refcount
- @descr -
-
@seealso XInterface
@seealso release()
-
- @param -
-
- @return -
-
@onerror A RuntimeException is thrown.
*/
@@ -192,15 +165,8 @@ public:
/**_______________________________________________________________________________________________________
@short decrement refcount
- @descr -
-
@seealso XInterface
@seealso acquire()
-
- @param -
-
- @return -
-
@onerror A RuntimeException is thrown.
*/
@@ -210,12 +176,7 @@ public:
/**_______________________________________________________________________________________________________
@short get information about supported interfaces
- @descr -
-
@seealso XTypeProvider
-
- @param -
-
@return Sequence of types of all supported interfaces
@onerror A RuntimeException is thrown.
@@ -230,9 +191,6 @@ public:
Another way, cache is enabled.
@seealso XTypeProvider
-
- @param -
-
@return ID as Sequence of byte
@onerror A RuntimeException is thrown.
@@ -244,16 +202,6 @@ public:
// XAggregation
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setDelegator(
@@ -261,16 +209,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation(
@@ -280,16 +218,6 @@ public:
// XServiceInfo
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual sal_Bool SAL_CALL supportsService(
@@ -297,32 +225,12 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual OUString SAL_CALL getImplementationName()
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
@@ -331,31 +239,11 @@ public:
// XComponent
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL dispose() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL addEventListener(
@@ -363,16 +251,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL removeEventListener(
@@ -382,16 +260,6 @@ public:
// XControl
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL createPeer(
@@ -400,16 +268,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setContext(
@@ -417,16 +275,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual sal_Bool SAL_CALL setModel(
@@ -434,110 +282,40 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE = 0;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setDesignMode( sal_Bool bOn ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL getContext()
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XControlModel > SAL_CALL getModel()
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE = 0;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > SAL_CALL getPeer()
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XView > SAL_CALL getView()
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual sal_Bool SAL_CALL isDesignMode() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual sal_Bool SAL_CALL isTransparent() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -545,16 +323,6 @@ public:
// XWindow
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setPosSize( sal_Int32 nX ,
@@ -564,76 +332,26 @@ public:
sal_Int16 nFlags ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setVisible( sal_Bool bVisible ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setEnable( sal_Bool bEnable ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setFocus() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::awt::Rectangle SAL_CALL getPosSize() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL addWindowListener(
@@ -641,16 +359,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL addFocusListener(
@@ -658,16 +366,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL addKeyListener(
@@ -675,16 +373,6 @@ public:
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL addMouseListener(
@@ -692,16 +380,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL addMouseMotionListener(
@@ -709,16 +387,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL addPaintListener(
@@ -726,16 +394,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL removeWindowListener(
@@ -743,16 +401,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL removeFocusListener(
@@ -760,16 +408,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL removeKeyListener(
@@ -777,16 +415,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL removeMouseListener(
@@ -794,16 +422,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL removeMouseMotionListener(
@@ -811,16 +429,6 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL removePaintListener(
@@ -830,32 +438,12 @@ public:
// XView
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL draw( sal_Int32 nX ,
sal_Int32 nY ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual sal_Bool SAL_CALL setGraphics(
@@ -863,48 +451,18 @@ public:
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL setZoom( float fZoomX ,
float fZoomY ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XGraphics > SAL_CALL getGraphics()
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::awt::Size SAL_CALL getSize() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -912,16 +470,6 @@ public:
// ::com::sun::star::lang::XEventListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL disposing(
@@ -931,16 +479,6 @@ public:
// XPaintListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowPaint(
@@ -950,16 +488,6 @@ public:
// XWindowListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowResized( const ::com::sun::star::awt::WindowEvent& aEvent ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
@@ -970,31 +498,11 @@ public:
// impl but public method to register service
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
static const ::com::sun::star::uno::Sequence< OUString > impl_getStaticSupportedServiceNames();
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
static const OUString impl_getStaticImplementationName();
@@ -1005,91 +513,31 @@ protected:
using OComponentHelper::disposing;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > impl_getComponentContext();
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > impl_getPeerWindow();
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XGraphics > impl_getGraphicsPeer();
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
const sal_Int32& impl_getWidth();
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
const sal_Int32& impl_getHeight();
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ::com::sun::star::awt::WindowDescriptor* impl_getWindowDescriptor(
@@ -1097,16 +545,6 @@ protected:
);
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void impl_paint( sal_Int32 nX ,
@@ -1114,31 +552,11 @@ protected:
const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XGraphics >& xGraphics );
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void impl_recalcLayout( const ::com::sun::star::awt::WindowEvent& aEvent );
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > impl_getDelegator();
@@ -1148,31 +566,11 @@ protected:
private:
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
void impl_releasePeer();
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
OMRCListenerMultiplexerHelper* impl_getMultiplexer();
diff --git a/UnoControls/inc/multiplexer.hxx b/UnoControls/inc/multiplexer.hxx
index 21c76dec0847..4ec3c66a02fd 100644
--- a/UnoControls/inc/multiplexer.hxx
+++ b/UnoControls/inc/multiplexer.hxx
@@ -71,15 +71,8 @@ public:
/**_______________________________________________________________________________________________________
@short constructor
@descr Create a Multiplexer of XWindowEvents.
-
- @seealso -
-
@param rControl The control. All listeners think that this is the original broadcaster.
@param rPeer The peer from which the original events are dispatched. Null is allowed.
-
- @return -
-
- @onerror -
*/
OMRCListenerMultiplexerHelper( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow >& xControl ,
@@ -88,29 +81,13 @@ public:
/**_______________________________________________________________________________________________________
@short copy-constructor
@descr
-
- @seealso -
-
@param rCopyInstance C++-Reference to instance to make copy from.
-
- @return -
-
- @onerror -
*/
OMRCListenerMultiplexerHelper( const OMRCListenerMultiplexerHelper& aCopyInstance );
/**_______________________________________________________________________________________________________
@short destructor
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual ~OMRCListenerMultiplexerHelper();
@@ -135,15 +112,8 @@ public:
/**_______________________________________________________________________________________________________
@short increment refcount
- @descr -
-
@seealso XInterface
@seealso release()
-
- @param -
-
- @return -
-
@onerror A RuntimeException is thrown.
*/
@@ -151,15 +121,8 @@ public:
/**_______________________________________________________________________________________________________
@short decrement refcount
- @descr -
-
@seealso XInterface
@seealso acquire()
-
- @param -
-
- @return -
-
@onerror A RuntimeException is thrown.
*/
@@ -168,31 +131,11 @@ public:
// operator
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
operator ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >() const;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
OMRCListenerMultiplexerHelper& operator= ( const OMRCListenerMultiplexerHelper& aCopyInstance );
@@ -201,45 +144,19 @@ public:
/**_______________________________________________________________________________________________________
@short Remove all listeners from the previous set peer and add the needed listeners to rPeer.
- @descr -
-
- @seealso -
-
@param rPeer The peer from which the original events are dispatched. Null is allowed.
-
- @return -
-
- @onerror -
*/
void setPeer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow >& xPeer );
/**_______________________________________________________________________________________________________
@short Remove all listeners and send a disposing message.
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
void disposeAndClear();
/**_______________________________________________________________________________________________________
@short Add the specified listener to the source.
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
void advise( const ::com::sun::star::uno::Type& aType ,
@@ -247,15 +164,6 @@ public:
/**_______________________________________________________________________________________________________
@short Remove the specified listener from the source.
- @descr -
-
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
void unadvise( const ::com::sun::star::uno::Type& aType ,
@@ -264,17 +172,6 @@ public:
// XEventListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL disposing(const ::com::sun::star::lang::EventObject& aSource)
@@ -283,34 +180,12 @@ public:
// XFocusListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL focusGained(const ::com::sun::star::awt::FocusEvent& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL focusLost(const ::com::sun::star::awt::FocusEvent& aEvent )
@@ -319,68 +194,24 @@ public:
// XWindowListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowResized(const ::com::sun::star::awt::WindowEvent& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowMoved(const ::com::sun::star::awt::WindowEvent& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowShown(const ::com::sun::star::lang::EventObject& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowHidden(const ::com::sun::star::lang::EventObject& aEvent )
@@ -389,34 +220,12 @@ public:
// XKeyListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL keyPressed( const ::com::sun::star::awt::KeyEvent& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL keyReleased( const ::com::sun::star::awt::KeyEvent& aEvent )
@@ -425,68 +234,24 @@ public:
// XMouseListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL mousePressed(const ::com::sun::star::awt::MouseEvent& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL mouseReleased(const ::com::sun::star::awt::MouseEvent& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL mouseEntered(const ::com::sun::star::awt::MouseEvent& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL mouseExited(const ::com::sun::star::awt::MouseEvent& aEvent )
@@ -495,34 +260,12 @@ public:
// XMouseMotionListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL mouseDragged(const ::com::sun::star::awt::MouseEvent& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL mouseMoved(const ::com::sun::star::awt::MouseEvent& aEvent )
@@ -531,17 +274,6 @@ public:
// XPaintListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowPaint(const ::com::sun::star::awt::PaintEvent& aEvent )
@@ -550,119 +282,42 @@ public:
// XTopWindowListener
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowOpened( const ::com::sun::star::lang::EventObject& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowClosing( const ::com::sun::star::lang::EventObject& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowClosed( const ::com::sun::star::lang::EventObject& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowMinimized( const ::com::sun::star::lang::EventObject& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowNormalized( const ::com::sun::star::lang::EventObject& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowActivated( const ::com::sun::star::lang::EventObject& aEvent )
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/**_______________________________________________________________________________________________________
- @short -
- @descr -
-
- @seealso -
- @seealso -
-
- @param -
-
- @return -
-
- @onerror -
*/
virtual void SAL_CALL windowDeactivated( const ::com::sun::star::lang::EventObject& aEvent )
@@ -674,16 +329,8 @@ protected:
/**_______________________________________________________________________________________________________
@short Remove the listener from the peer.
- @descr -
-
- @seealso -
-
@param xPeer The peer from which the listener is removed.
@param rType The listener type, which specify the type of the listener.
-
- @return -
-
- @onerror -
*/
void impl_adviseToPeer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow >& xPeer ,
@@ -691,16 +338,8 @@ protected:
/**_______________________________________________________________________________________________________
@short Add the listener to the peer.
- @descr -
-
- @seealso -
-
@param xPeer The peer to which the listener is added.
@param rType The listener type, which specify the type of the listener.
-
- @return -
-
- @onerror -
*/
void impl_unadviseFromPeer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow >& xPeer ,