/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* Copyright © 2000-2004 Marco Pesenti Gritti
* Copyright © 2003, 2004, 2006 Christian Persch
* Copyright © 2011 Igalia S.L.
*
* 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.
*
*/
#if !defined (__EPHY_EPIPHANY_H_INSIDE__) && !defined (EPIPHANY_COMPILATION)
#error "Only <epiphany/epiphany.h> can be included directly."
#endif
#ifndef EPHY_SHELL_H
#define EPHY_SHELL_H
#include "ephy-bookmarks.h"
#include "ephy-embed-shell.h"
#include "ephy-embed.h"
#include "ephy-session.h"
#include "ephy-window.h"
#ifdef HAVE_WEBKIT2
#include <webkit2/webkit2.h>
#else
#include <webkit/webkit.h>
#endif
#include <glib-object.h>
#include <glib.h>
G_BEGIN_DECLS
#define EPHY_TYPE_SHELL (ephy_shell_get_type ())
#define EPHY_SHELL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EPHY_TYPE_SHELL, EphyShell))
#define EPHY_SHELL_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), EPHY_TYPE_SHELL, EphyShellClass))
#define EPHY_IS_SHELL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EPHY_TYPE_SHELL))
#define EPHY_IS_SHELL_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EPHY_TYPE_SHELL))
#define EPHY_SHELL_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_SHELL, EphyShellClass))
typedef struct _EphyShell EphyShell;
typedef struct _EphyShellClass EphyShellClass;
typedef struct _EphyShellPrivate EphyShellPrivate;
/**
* EphyNewTabFlags:
* @EPHY_NEW_TAB_HOME_PAGE: loads the home page in the new tab.
* @EPHY_NEW_TAB_NEW_PAGE: legacy synonym for @EPHY_NEW_TAB_HOME_PAGE.
* @EPHY_NEW_TAB_OPEN_PAGE: opens the provided network-request.
* @EPHY_NEW_TAB_DELAYED_OPEN_PAGE: store the provided network-request
* so that it will be opened when the tab is switched to.
* @EPHY_NEW_TAB_FULLSCREEN_MODE: calls gtk_window_fullscreen on the
* parent window of the new tab.
* @EPHY_NEW_TAB_DONT_SHOW_WINDOW: do not show the window where the new
* tab is attached.
* @EPHY_NEW_TAB_APPEND_LAST: appends the new tab at the end of the
* notebook.
* @EPHY_NEW_TAB_APPEND_AFTER: appends the new tab right after the
* current one in the notebook.
* @EPHY_NEW_TAB_JUMP: jumps to the new tab immediately.
* @EPHY_NEW_TAB_IN_NEW_WINDOW: creates the new tab in a new window.
* @EPHY_NEW_TAB_IN_EXISTING_WINDOW: creates the new tab in the current
* active window, if there is none, creates a window.
* @EPHY_NEW_TAB_FROM_EXTERNAL: tries to open the new tab in the current
* active tab if it is currently not loading anything and is
* blank.
* @EPHY_NEW_TAB_DONT_COPY_HISTORY: do not copy the back-forward history
* from the current active tab to the new one.
* @EPHY_NEW_TAB_PRESENT_WINDOW: present the active window.
*
* Controls how new tabs/windows are created and handled.
*/
typedef enum {
/* Page types */
EPHY_NEW_TAB_HOME_PAGE = 1 << 0,
EPHY_NEW_TAB_NEW_PAGE = 1 << 1,
EPHY_NEW_TAB_OPEN_PAGE = 1 << 2,
EPHY_NEW_TAB_DELAYED_OPEN_PAGE = 1 << 3,
/* Page mode */
EPHY_NEW_TAB_FULLSCREEN_MODE = 1 << 4,
EPHY_NEW_TAB_DONT_SHOW_WINDOW = 1 << 5,
EPHY_NEW_TAB_PRESENT_WINDOW = 1 << 6,
/* Tabs */
EPHY_NEW_TAB_FIRST = 1 << 7,
EPHY_NEW_TAB_APPEND_LAST = 1 << 8,
EPHY_NEW_TAB_APPEND_AFTER = 1 << 9,
EPHY_NEW_TAB_JUMP = 1 << 10,
/* Where */
EPHY_NEW_TAB_IN_NEW_WINDOW = 1 << 11,
EPHY_NEW_TAB_IN_EXISTING_WINDOW = 1 << 12,
/* The way to load */
EPHY_NEW_TAB_FROM_EXTERNAL = 1 << 13,
EPHY_NEW_TAB_DONT_COPY_HISTORY = 1 << 14,
} EphyNewTabFlags;
typedef enum {
EPHY_STARTUP_NEW_TAB = 1 << 0,
EPHY_STARTUP_NEW_WINDOW = 1 << 1,
} EphyStartupFlags;
typedef struct {
EphyStartupFlags startup_flags;
char *bookmarks_filename;
char *session_filename;
char *bookmark_url;
char **arguments;
guint32 user_time;
} EphyShellStartupContext;
struct _EphyShell {
EphyEmbedShell parent;
/*< private >*/
EphyShellPrivate *priv;
};
struct _EphyShellClass {
EphyEmbedShellClass parent_class;
};
GType ephy_new_tab_flags_get_type (void) G_GNUC_CONST;
GType ephy_shell_get_type (void);
EphyShell *ephy_shell_get_default (void);
EphyEmbed *ephy_shell_new_tab (EphyShell *shell,
EphyWindow *parent_window,
EphyEmbed *previous_embed,
const char *url,
EphyNewTabFlags flags);
EphyEmbed *ephy_shell_new_tab_full (EphyShell *shell,
EphyWindow *parent_window,
EphyEmbed *previous_embed,
#ifdef HAVE_WEBKIT2
WebKitURIRequest *request,
#else
WebKitNetworkRequest *request,
#endif
EphyNewTabFlags flags,
EphyWebViewChrome chrome,
gboolean is_popup,
guint32 user_time);
EphySession *ephy_shell_get_session (EphyShell *shell);
GNetworkMonitor *ephy_shell_get_net_monitor (EphyShell *shell);
EphyBookmarks *ephy_shell_get_bookmarks (EphyShell *shell);
GtkWidget *ephy_shell_get_bookmarks_editor (EphyShell *shell);
GtkWidget *ephy_shell_get_history_window (EphyShell *shell);
GObject *ephy_shell_get_pdm_dialog (EphyShell *shell);
GObject *ephy_shell_get_prefs_dialog (EphyShell *shell);
guint ephy_shell_get_n_windows (EphyShell *shell);
EphyWindow *ephy_shell_get_main_window (EphyShell *shell);
gboolean ephy_shell_close_all_windows (EphyShell *shell);
void ephy_shell_open_uris (EphyShell *shell,
const char **uris,
EphyStartupFlags startup_flags,
guint32 user_time);
G_END_DECLS
#endif