diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-03-09 12:04:18 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-03-09 12:04:18 +0000 |
commit | d37b8f56384cd7b0b169625a6c937f7665442713 (patch) | |
tree | d5cff7f35a03dd12a079da9cf217cc14d2adbbe4 /xmloff/inc/txtvfldi.hxx | |
parent | c0a8e1f47957e57ced093bb3a9a8780ba6f9747e (diff) |
INTEGRATION: CWS hb02 (1.10.104); FILE MERGED
2007/02/05 16:30:55 hbrinkm 1.10.104.1: #144146# new tokens help and hint
Diffstat (limited to 'xmloff/inc/txtvfldi.hxx')
-rw-r--r-- | xmloff/inc/txtvfldi.hxx | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/xmloff/inc/txtvfldi.hxx b/xmloff/inc/txtvfldi.hxx index d626345c1cde..c86f68cff72c 100644 --- a/xmloff/inc/txtvfldi.hxx +++ b/xmloff/inc/txtvfldi.hxx @@ -4,9 +4,9 @@ * * $RCSfile: txtvfldi.hxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: rt $ $Date: 2007-02-01 09:22:16 $ + * last change: $Author: obo $ $Date: 2007-03-09 13:04:18 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -164,6 +164,8 @@ class XMLVarFieldImportContext : public XMLTextFieldImportContext protected: const ::rtl::OUString sPropertyContent; const ::rtl::OUString sPropertyHint; + const ::rtl::OUString sPropertyHelp; + const ::rtl::OUString sPropertyTooltip; const ::rtl::OUString sPropertyIsVisible; const ::rtl::OUString sPropertyIsDisplayFormula; const ::rtl::OUString sPropertyCurrentPresentation; @@ -172,6 +174,8 @@ private: ::rtl::OUString sName; /// name attribute ::rtl::OUString sFormula; /// formula attribute ::rtl::OUString sDescription; /// description + ::rtl::OUString sHelp; /// help text + ::rtl::OUString sHint; /// hint XMLValueImportHelper aValueHelper; /// value, value-type, and style sal_Bool bDisplayFormula; /// display formula?(rather than value) sal_Bool bDisplayNone; /// hide field? @@ -179,12 +183,16 @@ private: sal_Bool bNameOK; /// sName was set sal_Bool bFormulaOK; /// sFormula was set sal_Bool bDescriptionOK; /// sDescription was set + sal_Bool bHelpOK; /// sHelp was set + sal_Bool bHintOK; /// sHint was set sal_Bool bDisplayOK; /// sDisplayFormula/-None were set sal_Bool bSetName; /// set sName with ???-property sal_Bool bSetFormula; /// set Formula property sal_Bool bSetFormulaDefault; /// use content as default for formula sal_Bool bSetDescription; /// set sDescription with Hint-property + sal_Bool bSetHelp; + sal_Bool bSetHint; sal_Bool bSetVisible; /// set IsVisible sal_Bool bSetDisplayFormula; /// set DisplayFormula (sub type???) sal_Bool bSetPresentation; /// set presentation frm elem. content? @@ -205,6 +213,8 @@ public: sal_Bool bFormula, /// set Formula property sal_Bool bFormulaDefault, /// use content as default for formula sal_Bool bDescription, /// set sDescription with Hint-property + sal_Bool bHelp, + sal_Bool bHint, sal_Bool bVisible, /// set IsVisible (display attr) sal_Bool bDisplayFormula, /// set ??? (display attr.) sal_Bool bType, /// set value type with ???-property @@ -331,6 +341,8 @@ public: sal_Bool bFormula, /// see XMLTextFieldImportContext sal_Bool bFormulaDefault, /// see XMLTextFieldImportContext sal_Bool bDescription, /// see XMLTextFieldImportContext + sal_Bool bHelp, /// see XMLTextFieldImportContext + sal_Bool bHint, /// see XMLTextFieldImportContext sal_Bool bVisible, /// see XMLTextFieldImportContext sal_Bool bDisplayFormula, /// see XMLTextFieldImportContext sal_Bool bType, /// see XMLTextFieldImportContext |