summaryrefslogtreecommitdiff
path: root/tests/testing-util
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testing-util')
-rw-r--r--tests/testing-util/meson.build2
-rw-r--r--tests/testing-util/peas-activatable.c135
-rw-r--r--tests/testing-util/peas-activatable.h74
3 files changed, 0 insertions, 211 deletions
diff --git a/tests/testing-util/meson.build b/tests/testing-util/meson.build
index 521337d..62f0397 100644
--- a/tests/testing-util/meson.build
+++ b/tests/testing-util/meson.build
@@ -3,12 +3,10 @@ libtesting_util_string = '@0@-@1@'.format(libtesting_util_name, api_version)
libtesting_util_public_h = [
'testing-util.h',
- 'peas-activatable.h',
]
libtesting_util_c = [
'testing-util.c',
- 'peas-activatable.c',
]
libtesting_util_deps = [
diff --git a/tests/testing-util/peas-activatable.c b/tests/testing-util/peas-activatable.c
deleted file mode 100644
index 2d1c935..0000000
--- a/tests/testing-util/peas-activatable.c
+++ /dev/null
@@ -1,135 +0,0 @@
-/*
- * peas-activatable.c
- * This file is part of libpeas
- *
- * Copyright (C) 2010 Steve Frécinaux
- *
- * libpeas 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.
- *
- * libpeas 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * SPDX-License-Identifier: LGPL-2.1-or-later
- */
-
-#include "config.h"
-
-#include "peas-activatable.h"
-
-/**
- * PeasActivatable:
- *
- * Interface for activatable plugins.
- *
- * #PeasActivatable is an interface which should be implemented by plugins
- * that should be activated on an object of a certain type (depending on the
- * application). For instance, in a typical windowed application,
- * #PeasActivatable plugin instances could be bound to individual toplevel
- * windows.
- *
- * It is typical to use #PeasActivatable along with [class@ExtensionSet] in order
- * to activate and deactivate extensions automatically when plugins are loaded
- * or unloaded.
- *
- * You can also use the code of this interface as a base for your own
- * extension types, as illustrated by gedit's %GeditWindowActivatable and
- * %GeditDocumentActivatable interfaces.
- **/
-
-G_DEFINE_INTERFACE(PeasActivatable, peas_activatable, G_TYPE_OBJECT)
-
-static void
-peas_activatable_default_init (PeasActivatableInterface *iface)
-{
- /**
- * PeasActivatable:object:
- *
- * The object property contains the targetted object for this #PeasActivatable
- * instance.
- *
- * For example a toplevel window in a typical windowed application. It is set
- * at construction time and won't change.
- */
- g_object_interface_install_property (iface,
- g_param_spec_object ("object",
- "Object",
- "Object",
- G_TYPE_OBJECT,
- G_PARAM_READWRITE |
- G_PARAM_CONSTRUCT_ONLY |
- G_PARAM_STATIC_STRINGS));
-}
-
-/**
- * peas_activatable_activate:
- * @activatable: A #PeasActivatable.
- *
- * Activates the extension on the targetted object.
- *
- * On activation, the extension should hook itself to the object
- * where it makes sense.
- */
-void
-peas_activatable_activate (PeasActivatable *activatable)
-{
- PeasActivatableInterface *iface;
-
- g_return_if_fail (PEAS_IS_ACTIVATABLE (activatable));
-
- iface = PEAS_ACTIVATABLE_GET_IFACE (activatable);
- g_return_if_fail (iface->activate != NULL);
-
- iface->activate (activatable);
-}
-
-/**
- * peas_activatable_deactivate:
- * @activatable: A #PeasActivatable.
- *
- * Deactivates the extension on the targetted object.
- *
- * On deactivation, an extension should remove itself from all the hooks it
- * used and should perform any cleanup required, so it can be unreffed safely
- * and without any more effect on the host application.
- */
-void
-peas_activatable_deactivate (PeasActivatable *activatable)
-{
- PeasActivatableInterface *iface;
-
- g_return_if_fail (PEAS_IS_ACTIVATABLE (activatable));
-
- iface = PEAS_ACTIVATABLE_GET_IFACE (activatable);
- g_return_if_fail (iface->deactivate != NULL);
-
- iface->deactivate (activatable);
-}
-
-/**
- * peas_activatable_update_state:
- * @activatable: A #PeasActivatable.
- *
- * Triggers an update of the extension internal state to take into account
- * state changes in the targetted object, due to some event or user action.
- */
-void
-peas_activatable_update_state (PeasActivatable *activatable)
-{
- PeasActivatableInterface *iface;
-
- g_return_if_fail (PEAS_IS_ACTIVATABLE (activatable));
-
- iface = PEAS_ACTIVATABLE_GET_IFACE (activatable);
- if (iface->update_state != NULL)
- iface->update_state (activatable);
-}
-
diff --git a/tests/testing-util/peas-activatable.h b/tests/testing-util/peas-activatable.h
deleted file mode 100644
index 157f567..0000000
--- a/tests/testing-util/peas-activatable.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * peas-activatable.h
- * This file is part of libpeas
- *
- * Copyright (C) 2010 - Steve Frécinaux
- *
- * libpeas 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.
- *
- * libpeas 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * SPDX-License-Identifier: LGPL-2.1-or-later
- */
-
-#pragma once
-
-#include <glib-object.h>
-
-G_BEGIN_DECLS
-
-/*
- * Type checking and casting macros
- */
-#define PEAS_TYPE_ACTIVATABLE (peas_activatable_get_type ())
-#define PEAS_ACTIVATABLE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PEAS_TYPE_ACTIVATABLE, PeasActivatable))
-#define PEAS_ACTIVATABLE_IFACE(obj) (G_TYPE_CHECK_CLASS_CAST ((obj), PEAS_TYPE_ACTIVATABLE, PeasActivatableInterface))
-#define PEAS_IS_ACTIVATABLE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PEAS_TYPE_ACTIVATABLE))
-#define PEAS_ACTIVATABLE_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), PEAS_TYPE_ACTIVATABLE, PeasActivatableInterface))
-
-/**
- * PeasActivatable:
- *
- * Interface for activatable plugins.
- */
-typedef struct _PeasActivatable PeasActivatable; /* dummy typedef */
-typedef struct _PeasActivatableInterface PeasActivatableInterface;
-
-/**
- * PeasActivatableInterface:
- * @g_iface: The parent interface.
- * @activate: Activates the plugin.
- * @deactivate: Deactivates the plugin.
- * @update_state: Updates the plugin's internal state to take account of
- * a change in the target object's state.
- *
- * Provides an interface for activatable plugins.
- */
-struct _PeasActivatableInterface {
- GTypeInterface g_iface;
-
- /* Virtual public methods */
- void (*activate) (PeasActivatable *activatable);
- void (*deactivate) (PeasActivatable *activatable);
- void (*update_state) (PeasActivatable *activatable);
-};
-
-/*
- * Public methods
- */
-GType peas_activatable_get_type (void) G_GNUC_CONST;
-void peas_activatable_activate (PeasActivatable *activatable);
-void peas_activatable_deactivate (PeasActivatable *activatable);
-void peas_activatable_update_state (PeasActivatable *activatable);
-
-G_END_DECLS