aboutsummaryrefslogtreecommitdiffstats
path: root/src/session.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/session.h')
-rw-r--r--src/session.h75
1 files changed, 0 insertions, 75 deletions
diff --git a/src/session.h b/src/session.h
deleted file mode 100644
index 6e7711a16..000000000
--- a/src/session.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * 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