summaryrefslogtreecommitdiff
path: root/toolkit/inc/toolkit/controls
diff options
context:
space:
mode:
authorMalte Timmermann <mt@openoffice.org>2001-08-10 08:52:16 +0000
committerMalte Timmermann <mt@openoffice.org>2001-08-10 08:52:16 +0000
commit5ddf6436e7dca5e18b7542ff4d06c94f14ef7174 (patch)
treed18a817732991288403ec82e1019ebc58c6b9672 /toolkit/inc/toolkit/controls
parent48fb0985c250e9eb11c1ba4b6f50e66499a7d001 (diff)
#88015# First/Last
Diffstat (limited to 'toolkit/inc/toolkit/controls')
-rw-r--r--toolkit/inc/toolkit/controls/unocontrols.hxx16
1 files changed, 14 insertions, 2 deletions
diff --git a/toolkit/inc/toolkit/controls/unocontrols.hxx b/toolkit/inc/toolkit/controls/unocontrols.hxx
index f22e560cae13..bd5a7c4f87f1 100644
--- a/toolkit/inc/toolkit/controls/unocontrols.hxx
+++ b/toolkit/inc/toolkit/controls/unocontrols.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: unocontrols.hxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: mt $ $Date: 2001-08-10 09:06:57 $
+ * last change: $Author: mt $ $Date: 2001-08-10 09:51:19 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1300,6 +1300,10 @@ public:
class UnoNumericFieldControl : public UnoEditControl,
public ::com::sun::star::awt::XNumericField
{
+private:
+ double mnFirst;
+ double mnLast;
+
public:
UnoNumericFieldControl();
::rtl::OUString GetComponentServiceName();
@@ -1309,6 +1313,8 @@ public:
void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException) { OWeakAggObject::acquire(); }
void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException) { OWeakAggObject::release(); }
+ void SAL_CALL createPeer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit >& Toolkit, const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer >& Parent ) throw(::com::sun::star::uno::RuntimeException);
+
// ::com::sun::star::lang::XTypeProvider
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw(::com::sun::star::uno::RuntimeException);
::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw(::com::sun::star::uno::RuntimeException);
@@ -1371,6 +1377,10 @@ public:
class UnoCurrencyFieldControl : public UnoEditControl,
public ::com::sun::star::awt::XCurrencyField
{
+private:
+ double mnFirst;
+ double mnLast;
+
public:
UnoCurrencyFieldControl();
::rtl::OUString GetComponentServiceName();
@@ -1380,6 +1390,8 @@ public:
void SAL_CALL acquire() throw(::com::sun::star::uno::RuntimeException) { OWeakAggObject::acquire(); }
void SAL_CALL release() throw(::com::sun::star::uno::RuntimeException) { OWeakAggObject::release(); }
+ void SAL_CALL createPeer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit >& Toolkit, const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer >& Parent ) throw(::com::sun::star::uno::RuntimeException);
+
// ::com::sun::star::lang::XTypeProvider
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw(::com::sun::star::uno::RuntimeException);
::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw(::com::sun::star::uno::RuntimeException);