#105638# new property DispathUrlInternal to allow sound played inside

This commit is contained in:
Ocke Janssen
2002-12-02 11:58:13 +00:00
parent a9ced50e33
commit ca79720647
5 changed files with 22 additions and 15 deletions

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: Button.cxx,v $
*
* $Revision: 1.7 $
* $Revision: 1.8 $
*
* last change: $Author: fs $ $Date: 2002-12-02 09:56:26 $
* last change: $Author: oj $ $Date: 2002-12-02 12:57:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -133,9 +133,10 @@ void OButtonModel::fillProperties(
Sequence< Property >& _rProps,
Sequence< Property >& _rAggregateProps ) const
{
FRM_BEGIN_PROP_HELPER(7)
FRM_BEGIN_PROP_HELPER(8)
DECL_PROP2(CLASSID, sal_Int16, READONLY, TRANSIENT);
DECL_PROP1(BUTTONTYPE, FormButtonType, BOUND);
DECL_PROP1(BUTTONTYPE, FormButtonType, BOUND);
DECL_PROP1(DISPATCHURLINTERNAL, sal_Bool, BOUND);
DECL_PROP1(TARGET_URL, ::rtl::OUString, BOUND);
DECL_PROP1(TARGET_FRAME, ::rtl::OUString, BOUND);
DECL_PROP1(NAME, ::rtl::OUString, BOUND);

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: ImageButton.cxx,v $
*
* $Revision: 1.5 $
* $Revision: 1.6 $
*
* last change: $Author: fs $ $Date: 2002-12-02 09:56:33 $
* last change: $Author: oj $ $Date: 2002-12-02 12:57:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -149,9 +149,10 @@ void OImageButtonModel::fillProperties(
Sequence< Property >& _rProps,
Sequence< Property >& _rAggregateProps ) const
{
FRM_BEGIN_PROP_HELPER(7)
FRM_BEGIN_PROP_HELPER(8)
DECL_PROP2(CLASSID, sal_Int16, READONLY, TRANSIENT);
DECL_PROP1(BUTTONTYPE, FormButtonType, BOUND);
DECL_PROP1(BUTTONTYPE, FormButtonType, BOUND);
DECL_PROP1(DISPATCHURLINTERNAL, sal_Bool, BOUND);
DECL_PROP1(TARGET_URL, ::rtl::OUString, BOUND);
DECL_PROP1(TARGET_FRAME, ::rtl::OUString, BOUND);
DECL_PROP1(NAME, ::rtl::OUString, BOUND);

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: ImageControl.cxx,v $
*
* $Revision: 1.22 $
* $Revision: 1.23 $
*
* last change: $Author: fs $ $Date: 2002-12-02 09:56:33 $
* last change: $Author: oj $ $Date: 2002-12-02 12:57:25 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -426,7 +426,7 @@ void OImageControlModel::fillProperties(
Sequence< Property >& _rProps,
Sequence< Property >& _rAggregateProps ) const
{
FRM_BEGIN_PROP_HELPER(8)
FRM_BEGIN_PROP_HELPER(9)
// ModifyPropertyAttributes(_rAggregateProps, PROPERTY_IMAGE_URL, PropertyAttribute::TRANSIENT, 0);
DECL_PROP2(CLASSID, sal_Int16, READONLY, TRANSIENT);
@@ -437,6 +437,7 @@ void OImageControlModel::fillProperties(
DECL_IFACE_PROP2(BOUNDFIELD, XPropertySet, READONLY, TRANSIENT);
DECL_IFACE_PROP2(CONTROLLABEL, XPropertySet, BOUND, MAYBEVOID);
DECL_PROP2(CONTROLSOURCEPROPERTY, rtl::OUString, READONLY, TRANSIENT);
DECL_PROP1(DISPATCHURLINTERNAL, sal_Bool, BOUND);
FRM_END_PROP_HELPER();
}

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: property.hrc,v $
*
* $Revision: 1.5 $
* $Revision: 1.6 $
*
* last change: $Author: fs $ $Date: 2001-08-06 14:53:51 $
* last change: $Author: oj $ $Date: 2002-12-02 12:58:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -249,6 +249,8 @@ namespace frm
#define PROPERTY_ID_FONTEMPHASISMARK (PROPERTY_ID_START +210)
#define PROPERTY_ID_FONTRELIEF (PROPERTY_ID_START +211)
#define PROPERTY_ID_DISPATCHURLINTERNAL (PROPERTY_ID_START +212) // BOOL
// start ID fuer aggregierte Properties
#define PROPERTY_ID_AGGREGATE_ID (PROPERTY_ID_START + 10000)
@@ -420,6 +422,7 @@ DECLARE_CONSTASCII_USTRING(PROPERTY_CONTROLSOURCEPROPERTY);
DECLARE_CONSTASCII_USTRING(PROPERTY_REALNAME);
DECLARE_CONSTASCII_USTRING(PROPERTY_USER);
DECLARE_CONSTASCII_USTRING(PROPERTY_PASSWORD);
DECLARE_CONSTASCII_USTRING(PROPERTY_DISPATCHURLINTERNAL);
//.........................................................................
}

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: property.cxx,v $
*
* $Revision: 1.7 $
* $Revision: 1.8 $
*
* last change: $Author: hr $ $Date: 2001-10-26 11:21:56 $
* last change: $Author: oj $ $Date: 2002-12-02 12:58:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -471,6 +471,7 @@ IMPLEMENT_CONSTASCII_USTRING(PROPERTY_REALNAME, "RealName");
IMPLEMENT_CONSTASCII_USTRING(PROPERTY_CONTROLSOURCEPROPERTY, "DataFieldProperty");
IMPLEMENT_CONSTASCII_USTRING(PROPERTY_USER, "User");
IMPLEMENT_CONSTASCII_USTRING(PROPERTY_PASSWORD, "Password");
IMPLEMENT_CONSTASCII_USTRING(PROPERTY_DISPATCHURLINTERNAL, "DispatchURLInternal");
//.........................................................................
}