1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/*
* Copyright (C) 2000-2003 Marco Pesenti Gritti
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "ephy-embed-factory.h"
#include "mozilla-embed.h"
#include "mozilla-embed-persist.h"
#include "mozilla-embed-single.h"
#include <string.h>
typedef enum
{
EPHY_EMBED_OBJECT,
EPHY_EMBED_PERSIST_OBJECT,
EPHY_EMBED_SINGLE_OBJECT
} EmbedObjectType;
static EmbedObjectType
type_from_id (const char *object_id)
{
EmbedObjectType result = 0;
if (strcmp (object_id, "EphyEmbed") == 0)
{
result = EPHY_EMBED_OBJECT;
}
else if (strcmp (object_id, "EphyEmbedPersist") == 0)
{
result = EPHY_EMBED_PERSIST_OBJECT;
}
else if (strcmp (object_id, "EphyEmbedSingle") == 0)
{
result = EPHY_EMBED_SINGLE_OBJECT;
}
else
{
g_assert_not_reached ();
}
return result;
}
/**
* ephy_embed_factory_new_object:
* @object_id: identifier of the object to create
*
* Create an instance of the object identified by
* object_id string. Valid ids are EphyEmbed, EphyEmbedPersist,
* EphyEmbedSingle.
* We use a factory instead of creating instances directly
* to keep the embed implementation abstract. All the embed
* objects should be based on an interface and created by
* this factory.
*
* Return value: the object instance
**/
GObject *
ephy_embed_factory_new_object (const char *object_id)
{
GObject *object;
switch (type_from_id (object_id))
{
case EPHY_EMBED_OBJECT:
object = g_object_new (MOZILLA_TYPE_EMBED, NULL);
break;
case EPHY_EMBED_PERSIST_OBJECT:
object = g_object_new (MOZILLA_TYPE_EMBED_PERSIST, NULL);
break;
case EPHY_EMBED_SINGLE_OBJECT:
object = g_object_new (MOZILLA_TYPE_EMBED_SINGLE, NULL);
break;
default:
object = NULL;
}
return object;
}
|