summaryrefslogtreecommitdiff
path: root/UnoControls/inc/basecontrol.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'UnoControls/inc/basecontrol.hxx')
-rw-r--r--UnoControls/inc/basecontrol.hxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/UnoControls/inc/basecontrol.hxx b/UnoControls/inc/basecontrol.hxx
index d4efe7188a46..72ab5a33cbe6 100644
--- a/UnoControls/inc/basecontrol.hxx
+++ b/UnoControls/inc/basecontrol.hxx
@@ -92,23 +92,17 @@ namespace com { namespace sun { namespace star { namespace uno {
class XComponentContext;
} } } }
-
// "namespaces"
-
namespace unocontrols{
-
// macros
-
#define TRGB_COLORDATA(TRANSPARENCE,RED,GREEN,BLUE) \
((sal_Int32)(((sal_uInt32)((sal_uInt8)(BLUE))))|(((sal_uInt32)((sal_uInt8)(GREEN)))<<8)|(((sal_uInt32)((sal_uInt8)(RED)))<<16)|(((sal_uInt32)((sal_uInt8)(TRANSPARENCE)))<<24))
-
// structs
-
struct IMPL_MutexContainer
{
// Is necassery to initialize "BaseControl" and make this class thread-safe.
@@ -127,13 +121,10 @@ class BaseControl : public ::com::sun::star::lang::XServiceInfo
// public methods
-
public:
-
// construct/destruct
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -164,10 +155,8 @@ public:
virtual ~BaseControl();
-
// XInterface
-
/**_______________________________________________________________________________________________________
@short give answer, if interface is supported
@descr The interfaces are searched by type.
@@ -217,10 +206,8 @@ public:
virtual void SAL_CALL release() throw() SAL_OVERRIDE;
-
// XTypeProvider
-
/**_______________________________________________________________________________________________________
@short get information about supported interfaces
@descr -
@@ -254,10 +241,8 @@ public:
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId()
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// XAggregation
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -292,10 +277,8 @@ public:
const ::com::sun::star::uno::Type& aType
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// XServiceInfo
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -345,10 +328,8 @@ public:
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// XComponent
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -398,10 +379,8 @@ public:
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// XControl
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -563,10 +542,8 @@ public:
virtual sal_Bool SAL_CALL isTransparent() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// XWindow
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -850,10 +827,8 @@ public:
const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XPaintListener >& xListener
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// XView
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -934,10 +909,8 @@ public:
virtual ::com::sun::star::awt::Size SAL_CALL getSize() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// ::com::sun::star::lang::XEventListener
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -955,10 +928,8 @@ public:
const ::com::sun::star::lang::EventObject& rSource
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// XPaintListener
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -976,10 +947,8 @@ public:
const ::com::sun::star::awt::PaintEvent& rEvent
) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// XWindowListener
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -998,10 +967,8 @@ public:
virtual void SAL_CALL windowShown( const ::com::sun::star::lang::EventObject& aEvent ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL windowHidden( const ::com::sun::star::lang::EventObject& aEvent ) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
-
// impl but public method to register service
-
/**_______________________________________________________________________________________________________
@short -
@descr -
@@ -1032,10 +999,8 @@ public:
static const OUString impl_getStaticImplementationName();
-
// protected methods
-
protected:
using OComponentHelper::disposing;
@@ -1178,10 +1143,8 @@ protected:
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > impl_getDelegator();
-
// private methods
-
private:
/**_______________________________________________________________________________________________________
@@ -1214,10 +1177,8 @@ private:
OMRCListenerMultiplexerHelper* impl_getMultiplexer();
-
// private variables
-
private:
::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xComponentContext ;