Refactor userscripts and userstyles as an extension
This commit is contained in:
parent
05dd4b963a
commit
7c0e58a835
4 changed files with 1262 additions and 1152 deletions
1262
extensions/addons.c
Normal file
1262
extensions/addons.c
Normal file
File diff suppressed because it is too large
Load diff
|
@ -15,7 +15,6 @@
|
|||
#endif
|
||||
|
||||
#include "midori.h"
|
||||
#include "midori-addons.h"
|
||||
#include "midori-array.h"
|
||||
#include "midori-bookmarks.h"
|
||||
#include "midori-console.h"
|
||||
|
@ -661,11 +660,6 @@ midori_app_add_browser_cb (MidoriApp* app,
|
|||
gtk_widget_show (addon);
|
||||
midori_panel_append_page (MIDORI_PANEL (panel), MIDORI_VIEWABLE (addon));
|
||||
|
||||
/* Userscripts */
|
||||
addon = midori_addons_new (MIDORI_ADDON_USER_SCRIPTS, GTK_WIDGET (browser));
|
||||
gtk_widget_show (addon);
|
||||
midori_panel_append_page (MIDORI_PANEL (panel), MIDORI_VIEWABLE (addon));
|
||||
|
||||
/* Extensions */
|
||||
addon = g_object_new (MIDORI_TYPE_EXTENSIONS, NULL);
|
||||
gtk_widget_show (addon);
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,67 +0,0 @@
|
|||
/*
|
||||
Copyright (C) 2008 Christian Dywan <christian@twotoasts.de>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
See the file COPYING for the full license text.
|
||||
*/
|
||||
|
||||
#ifndef __MIDORI_ADDONS_H__
|
||||
#define __MIDORI_ADDONS_H__
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include <katze/katze.h>
|
||||
|
||||
#include "midori-viewable.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define MIDORI_TYPE_ADDONS \
|
||||
(midori_addons_get_type ())
|
||||
#define MIDORI_ADDONS(obj) \
|
||||
(G_TYPE_CHECK_INSTANCE_CAST ((obj), MIDORI_TYPE_ADDONS, MidoriAddons))
|
||||
#define MIDORI_ADDONS_CLASS(klass) \
|
||||
(G_TYPE_CHECK_CLASS_CAST ((klass), MIDORI_TYPE_ADDONS, MidoriAddonsClass))
|
||||
#define MIDORI_IS_ADDONS(obj) \
|
||||
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), MIDORI_TYPE_ADDONS))
|
||||
#define MIDORI_IS_ADDONS_CLASS(klass) \
|
||||
(G_TYPE_CHECK_CLASS_TYPE ((klass), MIDORI_TYPE_ADDONS))
|
||||
#define MIDORI_ADDONS_GET_CLASS(obj) \
|
||||
(G_TYPE_INSTANCE_GET_CLASS ((obj), MIDORI_TYPE_ADDONS, MidoriAddonsClass))
|
||||
|
||||
typedef struct _MidoriAddons MidoriAddons;
|
||||
typedef struct _MidoriAddonsClass MidoriAddonsClass;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
MIDORI_ADDON_NONE,
|
||||
MIDORI_ADDON_USER_SCRIPTS,
|
||||
MIDORI_ADDON_USER_STYLES
|
||||
} MidoriAddonKind;
|
||||
|
||||
GType
|
||||
midori_addon_kind_get_type (void) G_GNUC_CONST;
|
||||
|
||||
#define MIDORI_TYPE_ADDON_KIND \
|
||||
(midori_addon_kind_get_type ())
|
||||
|
||||
GType
|
||||
midori_addons_get_type (void);
|
||||
|
||||
GtkWidget*
|
||||
midori_addons_new (MidoriAddonKind kind,
|
||||
GtkWidget* web_widget);
|
||||
|
||||
GtkWidget*
|
||||
midori_addons_get_toolbar (MidoriViewable* addons);
|
||||
|
||||
void
|
||||
midori_addons_update_elements (MidoriAddons* addons);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __MIDORI_ADDONS_H__ */
|
Loading…
Reference in a new issue