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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright © 2004 Christian Persch
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "config.h"
#include "ephy-home-action.h"
#include "ephy-link.h"
G_DEFINE_TYPE (EphyHomeAction, ephy_home_action, EPHY_TYPE_LINK_ACTION)
static void
ephy_home_action_open (GtkAction *action,
const char *address,
EphyLinkFlags flags)
{
ephy_link_open (EPHY_LINK (action),
address != NULL && address[0] != '\0' ? address : "about:blank",
NULL,
flags);
}
static void
action_name_association (GtkAction *action,
char *action_name,
char *address)
{
EphyLinkFlags flags = EPHY_LINK_HOME_PAGE;
if (g_str_equal (action_name, "FileNewTab"))
flags |= EPHY_LINK_NEW_TAB | EPHY_LINK_JUMP_TO;
ephy_home_action_open (action, address, flags);
}
static void
ephy_home_action_activate (GtkAction *action)
{
char *action_name;
g_object_get (G_OBJECT (action), "name", &action_name, NULL);
action_name_association (action, action_name, "about:overview");
g_free (action_name);
}
static void
ephy_home_action_class_init (EphyHomeActionClass *class)
{
GtkActionClass *action_class = GTK_ACTION_CLASS (class);
action_class->activate = ephy_home_action_activate;
}
static void
ephy_home_action_init (EphyHomeAction *action)
{
/* Empty, needed for G_DEFINE_TYPE macro */
}
|