summaryrefslogtreecommitdiff
path: root/toolkit/inc/toolkit/controls
diff options
context:
space:
mode:
authorMalte Timmermann <mt@openoffice.org>2001-08-10 08:10:14 +0000
committerMalte Timmermann <mt@openoffice.org>2001-08-10 08:10:14 +0000
commitca434df79001bc82f62f8d2affe8cb434af0499d (patch)
treeb68d17d51dd89fa7a8809b58e8d3a7504188abec /toolkit/inc/toolkit/controls
parentad002203324d987c0c602a26d768e11df4853078 (diff)
#88324# #88322# Date/TimeField 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 1a12a099d6d3..f22e560cae13 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.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: mt $ $Date: 2001-07-26 12:21:13 $
+ * last change: $Author: mt $ $Date: 2001-08-10 09:06:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1149,6 +1149,10 @@ public:
class UnoDateFieldControl : public UnoEditControl,
public ::com::sun::star::awt::XDateField
{
+private:
+ sal_Int32 mnFirst;
+ sal_Int32 mnLast;
+ sal_Bool mbLongFormat;
public:
UnoDateFieldControl();
::rtl::OUString GetComponentServiceName();
@@ -1162,6 +1166,8 @@ public:
::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);
+ 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::awt::XTextListener
void SAL_CALL textChanged( const ::com::sun::star::awt::TextEvent& rEvent ) throw(::com::sun::star::uno::RuntimeException);
@@ -1219,6 +1225,10 @@ public:
class UnoTimeFieldControl : public UnoEditControl,
public ::com::sun::star::awt::XTimeField
{
+private:
+ sal_Int32 mnFirst;
+ sal_Int32 mnLast;
+
public:
UnoTimeFieldControl();
::rtl::OUString GetComponentServiceName();
@@ -1232,6 +1242,8 @@ public:
::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);
+ 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::awt::XTextListener
void SAL_CALL textChanged( const ::com::sun::star::awt::TextEvent& rEvent ) throw(::com::sun::star::uno::RuntimeException);