summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-11-21 09:57:36 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-11-21 10:02:00 +0100
commit0b21dd2593fae41ee430717d7d65e2cfca25b8e9 (patch)
tree986c1b1906611540fb2a042b575190ae48c734e3
parente860c78e2390c8d4e924411ac41e045d2a1c3968 (diff)
Fix datasource choices offered by the Address Book wizard
...as at least on Linux, availability of Mozilla/Thunderbird is independend of WITH_MOZILLA/--enable-mozilla now. This fix might not be perfect yet, see the TODO comment in the code. Change-Id: Ie5343a23187648f5e56d82753b6c222e6da7ec54
-rw-r--r--extensions/Library_abp.mk2
-rw-r--r--extensions/source/abpilot/typeselectionpage.cxx46
2 files changed, 41 insertions, 7 deletions
diff --git a/extensions/Library_abp.mk b/extensions/Library_abp.mk
index b4a556976bc6..49195c09de58 100644
--- a/extensions/Library_abp.mk
+++ b/extensions/Library_abp.mk
@@ -38,6 +38,7 @@ $(eval $(call gb_Library_set_include,abp,\
-I$(SRCDIR)/extensions/source/inc \
))
+ifeq ($(OS),WNT)
ifneq ($(WITH_MOZILLA),NO)
ifneq ($(SYSTEM_MOZILLA),YES)
$(eval $(call gb_Library_add_defs,abp,\
@@ -45,6 +46,7 @@ $(eval $(call gb_Library_add_defs,abp,\
))
endif
endif
+endif
$(eval $(call gb_Library_add_defs,abp,\
-DCOMPMOD_NAMESPACE=abp \
diff --git a/extensions/source/abpilot/typeselectionpage.cxx b/extensions/source/abpilot/typeselectionpage.cxx
index 655fd0d76e7b..6ce6280753f7 100644
--- a/extensions/source/abpilot/typeselectionpage.cxx
+++ b/extensions/source/abpilot/typeselectionpage.cxx
@@ -57,16 +57,47 @@ namespace abp
Size aItemSize( LogicToPixel( Size( 0, 8 ), MAP_APPFONT ) );
aItemSize.Width() = GetOutputSizePixel().Width() - 30;
- bool bWithMozilla = true, bUnx = true;
+ //TODO: For now, try to keep offering the same choices like before the
+ // Mozilla/MORK cleanup, even if the status of what driver actually
+ // provides which functionality is somewhat unclear, see the discussions
+ // of fdo#57285 "Address Book Data Source Wizard lists 'Mac OS X address
+ // book' on Linux" and fdo#57322 "Moz-free LDAP Address Book driver."
+ // In accordance with ancient OOo 3.3, this is as follows:
+ //
+ // On Linux:
+ // - EVOLUTION, EVOLUTION_GROUPWISE, EVOLUTION_LDAP (if applicable)
+ // - MORK (via mork driver, which is built unconditionally)
+ // - THUNDERBIRD (via mork driver?, which is built unconditionally)
+ // - KAB (if applicable)
+ // - LDAP (via mork driver?, which is built unconditionally)
+ // - OTHER
+ //
+ // On Mac OS X:
+ // - MACAB (if applicable)
+ // - OTHER
+ //
+ // On Windows:
+ // - MORK, THUNDERBIRD, LDAP, OUTLOOK, OUTLOOKEXPRESS (via mozab driver,
+ // if WITH_MOZILLA)
+ // - OTHER
+
+ bool bWithMozilla = false, bWindows = false;
bool bHaveEvolution = false, bHaveKab = false;
bool bHaveMacab = false;
-#if !defined WITH_MOZILLA || defined MACOSX
- bWithMozilla = false;
+#if defined WNT
+
+#if defined WITH_MOZILLA
+ bWithMozilla = true;
#endif
-#ifndef UNX
- bUnx = false;
+ bWindows = true;
+
#else
+
+#if !defined MACOSX
+ bWithMozilla = true;
+#endif
+
Reference< XDriverAccess> xManager(_pParent->getORB()->createInstance(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.sdbc.DriverManager"))), UNO_QUERY);
try
@@ -101,6 +132,7 @@ namespace abp
catch(...)
{
}
+
#endif
// Items are displayed in list order
@@ -112,8 +144,8 @@ namespace abp
m_aAllTypes.push_back( ButtonItem( &m_aKab, AST_KAB, bHaveKab ) );
m_aAllTypes.push_back( ButtonItem( &m_aMacab, AST_MACAB, bHaveMacab ) );
m_aAllTypes.push_back( ButtonItem( &m_aLDAP, AST_LDAP, bWithMozilla ) );
- m_aAllTypes.push_back( ButtonItem( &m_aOutlook, AST_OUTLOOK, bWithMozilla && !bUnx ) );
- m_aAllTypes.push_back( ButtonItem( &m_aOE, AST_OE, bWithMozilla && !bUnx ) );
+ m_aAllTypes.push_back( ButtonItem( &m_aOutlook, AST_OUTLOOK, bWithMozilla && bWindows ) );
+ m_aAllTypes.push_back( ButtonItem( &m_aOE, AST_OE, bWithMozilla && bWindows ) );
m_aAllTypes.push_back( ButtonItem( &m_aOther, AST_OTHER, true ) );
Link aTypeSelectionHandler = LINK(this, TypeSelectionPage, OnTypeSelected );