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
|
/*
* Copyright (C) 2002 Jorn Baayen
*
* 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.
*/
#ifndef SESSION_H
#define SESSION_H
#include <gtk/gtkwindow.h>
G_BEGIN_DECLS
#define EPHY_TYPE_SESSION (session_get_type ())
#define EPHY_SESSION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_SESSION, Session))
#define EPHY_SESSION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_SESSION, SessionClass))
#define EPHY_IS_SESSION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_SESSION))
#define EPHY_IS_SESSION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_SESSION))
#define EPHY_SESSION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_SESSION, SessionClass))
#define SESSION_CRASHED "type:session_crashed"
#define SESSION_GNOME "type:session_gnome"
typedef struct Session Session;
typedef struct SessionClass SessionClass;
typedef struct SessionPrivate SessionPrivate;
struct Session
{
GObject parent;
SessionPrivate *priv;
};
struct SessionClass
{
GObjectClass parent_class;
void ( *new_window) (Session *session,
GtkWindow *window);
void ( *close_window) (Session *session,
GtkWindow *window);
};
GType session_get_type (void);
Session *session_new (void);
void session_load (Session *session,
const char *filename);
gboolean session_autoresume (Session *session);
GList *session_get_windows (Session *session);
void session_add_window (Session *session,
GtkWindow *window);
void session_remove_window (Session *session,
GtkWindow *window);
G_END_DECLS
#endif
|