summaryrefslogtreecommitdiff
path: root/extensions/source/abpilot/typeselectionpage.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-02-28 09:39:34 +0000
committerKurt Zenker <kz@openoffice.org>2006-02-28 09:39:34 +0000
commit193c975eb4f7ee12dbc52bb02ee186e491f7013b (patch)
treef23fe2799483fa1ae8b79980763e55bdacd84419 /extensions/source/abpilot/typeselectionpage.hxx
parent573cc66d247df67d3de900e9a6f9cc854315b838 (diff)
INTEGRATION: CWS evo2fixes (1.8.44); FILE MERGED
2006/02/20 12:11:19 mmeeks 1.8.44.1: Issue number: i#62138# Submitted by: mmeeks Reviewed by: fs Re-factor & add support for updated Evolution, LDAP & Groupwise accounts.
Diffstat (limited to 'extensions/source/abpilot/typeselectionpage.hxx')
-rw-r--r--extensions/source/abpilot/typeselectionpage.hxx22
1 files changed, 20 insertions, 2 deletions
diff --git a/extensions/source/abpilot/typeselectionpage.hxx b/extensions/source/abpilot/typeselectionpage.hxx
index f2f50cf99390..4520b0d29e83 100644
--- a/extensions/source/abpilot/typeselectionpage.hxx
+++ b/extensions/source/abpilot/typeselectionpage.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: typeselectionpage.hxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: obo $ $Date: 2005-12-19 17:28:44 $
+ * last change: $Author: kz $ $Date: 2006-02-28 10:39:34 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -61,6 +61,8 @@ namespace abp
FixedLine m_aTypeSep;
RadioButton m_aMORK;
RadioButton m_aThunderbird;
+ RadioButton m_aEvolutionGroupwise;
+ RadioButton m_aEvolutionLdap;
RadioButton m_aEvolution;
RadioButton m_aKab;
RadioButton m_aLDAP;
@@ -68,6 +70,22 @@ namespace abp
RadioButton m_aOE;
RadioButton m_aOther;
+ struct ButtonItem {
+ RadioButton *m_pItem;
+ AddressSourceType m_eType;
+ bool m_bVisible;
+
+ ButtonItem( RadioButton *pItem,
+ AddressSourceType eType,
+ bool bVisible ) :
+ m_pItem( pItem ),
+ m_eType( eType ),
+ m_bVisible( bVisible )
+ {}
+ };
+
+ ::std::vector< ButtonItem > m_aAllTypes;
+
public:
TypeSelectionPage( OAddessBookSourcePilot* _pParent );