X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-tny-platform-factory.c;h=00eba53c1b4e4b26283166dbaf1319b9349c7df5;hp=4d370a55512440fef9220d5f141d57fb7473f31f;hb=a0b97bdb5b2391619437f8ef3c9bae321a1227dd;hpb=e5d4412a9f76a8ba843fc979f9439bd092095ea8 diff --git a/src/modest-tny-platform-factory.c b/src/modest-tny-platform-factory.c index 4d370a5..00eba53 100644 --- a/src/modest-tny-platform-factory.c +++ b/src/modest-tny-platform-factory.c @@ -31,19 +31,19 @@ #include #include +#include + #include #include #include -/* MODES_PLATFORM_ID: 1 ==> gtk, 2==> maemo */ -#if MODEST_PLATFORM_ID==1 -#include -#elif MODEST_PLATFORM_ID==2 -#include -#endif - #include "modest-tny-platform-factory.h" #include "modest-tny-account-store.h" +#ifdef MODEST_USE_MOZEMBED +#include +#else +#include +#endif /* 'private'/'protected' functions */ static void modest_tny_platform_factory_class_init (ModestTnyPlatformFactoryClass *klass); @@ -58,8 +58,6 @@ static TnyDevice* modest_tny_platform_factory_new_device (TnyPlatfo static TnyMsgView* modest_tny_platform_factory_new_msg_view (TnyPlatformFactory *self); static TnyMsg* modest_tny_platform_factory_new_msg (TnyPlatformFactory *self); static TnyMimePart* modest_tny_platform_factory_new_mime_part (TnyPlatformFactory *self); -static TnyHeader* modest_tny_platform_factory_new_header (TnyPlatformFactory *self); - /* list my signals */ enum { @@ -167,8 +165,6 @@ tny_platform_factory_init (gpointer g, gpointer iface_data) klass->new_msg_view_func = modest_tny_platform_factory_new_msg_view; klass->new_msg_func = modest_tny_platform_factory_new_msg; klass->new_mime_part_func = modest_tny_platform_factory_new_mime_part; - klass->new_header_func = modest_tny_platform_factory_new_header; - return; } @@ -191,21 +187,18 @@ modest_tny_platform_factory_new_account_store (TnyPlatformFactory *self) static TnyDevice * modest_tny_platform_factory_new_device (TnyPlatformFactory *self) { -/* MODES_PLATFORM_ID: 1 ==> gtk, 2==> maemo */ -#if MODEST_PLATFORM_ID==1 - return TNY_DEVICE (tny_gnome_device_new ()); -#elif MODEST_PLATFORM_ID==2 - return TNY_DEVICE (tny_maemo_device_new ()); -#else - g_return_val_if_reached (NULL); -#endif /* MODEST_PLATFORM */ + return modest_platform_get_new_device (); } static TnyMsgView* modest_tny_platform_factory_new_msg_view (TnyPlatformFactory *self) { - /* TODO */ - return NULL; + /* Here we'll select one of the implementations available */ +#ifdef MODEST_USE_MOZEMBED + return g_object_new (MODEST_TYPE_MOZEMBED_MSG_VIEW, NULL); +#else + return g_object_new (MODEST_TYPE_GTKHTML_MSG_VIEW, NULL); +#endif } static TnyMsg* @@ -222,8 +215,3 @@ modest_tny_platform_factory_new_mime_part (TnyPlatformFactory *self) } -static TnyHeader* -modest_tny_platform_factory_new_header (TnyPlatformFactory *self) -{ - return tny_camel_header_new (); -}