diff options
author | Cao Cuong Ngo <cao.cuong.ngo@gmail.com> | 2013-06-18 15:10:26 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2013-09-02 13:51:48 +0200 |
commit | 969807901d9dae91be7fc6ba9aa518f4d25b5034 (patch) | |
tree | 463e4584618060517fb705b1c563c19ff9e63692 /include/sfx2/dinfdlg.hxx | |
parent | 91d9430d68434cd267b481f73d4bc522a902eeda (diff) |
Cmis Property
Add MultiValued, OpenChoice and Choices to CMIS Property
Change-Id: Iade033c86878368b39a0264ad0a56d0286e6bffb
Diffstat (limited to 'include/sfx2/dinfdlg.hxx')
-rw-r--r-- | include/sfx2/dinfdlg.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx index 6f0d57a2ede9..6577cb12f855 100644 --- a/include/sfx2/dinfdlg.hxx +++ b/include/sfx2/dinfdlg.hxx @@ -167,6 +167,8 @@ public: void ClearCmisProperties(); void AddCmisProperty( const OUString& sId, const OUString& sName, const bool bUpdatable, const bool bRequired, + const bool bMultiValued, const bool bOpenChoice, + const com::sun::star::uno::Any& Choices, const com::sun::star::uno::Any& rValue ); virtual SfxPoolItem* Clone( SfxItemPool* pPool = NULL ) const; @@ -635,6 +637,8 @@ public: inline sal_Int32 GetLineHeight() const { return m_nLineHeight; } void AddLine( const OUString& sId, const OUString& sName, const bool bUpdatable, const bool bRequired, + const bool bMultiValued, const bool bOpenChoice, + com::sun::star::uno::Any& aChoices, com::sun::star::uno::Any& rAny ); bool AreAllLinesValid() const; void ClearAllLines(); @@ -664,6 +668,8 @@ public: void AddLine( const OUString& sId, const OUString& sName, const bool bUpdatable, const bool bRequired, + const bool bMultiValude, const bool bOpenChoice, + com::sun::star::uno::Any& aChoices, com::sun::star::uno::Any& rAny, bool bInteractive ); inline bool AreAllLinesValid() const { return m_pPropertiesWin->AreAllLinesValid(); } |