summaryrefslogtreecommitdiff
path: root/plugins/changecase/pluma-changecase-plugin.h
diff options
context:
space:
mode:
authormbkma <[email protected]>2020-08-05 11:19:36 +0200
committerGitHub <[email protected]>2020-08-05 11:19:36 +0200
commitd85c0aa6ec87e91901e393f701873085e5eeddb0 (patch)
tree6b7bcb1dc2ccff35cf865104e5d887306a253972 /plugins/changecase/pluma-changecase-plugin.h
parent3c2bf1aef96a7a94c58d9e99ac12a0d8cd788259 (diff)
downloadpluma-d85c0aa6ec87e91901e393f701873085e5eeddb0.tar.bz2
pluma-d85c0aa6ec87e91901e393f701873085e5eeddb0.tar.xz
Remove changecase plugin. Functionality is provided by GtkSourceView. (#565)
Diffstat (limited to 'plugins/changecase/pluma-changecase-plugin.h')
-rw-r--r--plugins/changecase/pluma-changecase-plugin.h79
1 files changed, 0 insertions, 79 deletions
diff --git a/plugins/changecase/pluma-changecase-plugin.h b/plugins/changecase/pluma-changecase-plugin.h
deleted file mode 100644
index d6611097..00000000
--- a/plugins/changecase/pluma-changecase-plugin.h
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * pluma-changecase-plugin.h
- *
- * Copyright (C) 2004-2005 - Paolo Borelli
- *
- * 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 St, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * $Id$
- */
-
-#ifndef __PLUMA_CHANGECASE_PLUGIN_H__
-#define __PLUMA_CHANGECASE_PLUGIN_H__
-
-#include <glib.h>
-#include <glib-object.h>
-#include <libpeas/peas-extension-base.h>
-#include <libpeas/peas-object-module.h>
-
-G_BEGIN_DECLS
-
-/*
- * Type checking and casting macros
- */
-#define PLUMA_TYPE_CHANGECASE_PLUGIN (pluma_changecase_plugin_get_type ())
-#define PLUMA_CHANGECASE_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), PLUMA_TYPE_CHANGECASE_PLUGIN, PlumaChangecasePlugin))
-#define PLUMA_CHANGECASE_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), PLUMA_TYPE_CHANGECASE_PLUGIN, PlumaChangecasePluginClass))
-#define PLUMA_IS_CHANGECASE_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), PLUMA_TYPE_CHANGECASE_PLUGIN))
-#define PLUMA_IS_CHANGECASE_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), PLUMA_TYPE_CHANGECASE_PLUGIN))
-#define PLUMA_CHANGECASE_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), PLUMA_TYPE_CHANGECASE_PLUGIN, PlumaChangecasePluginClass))
-
-/* Private structure type */
-typedef struct _PlumaChangecasePluginPrivate PlumaChangecasePluginPrivate;
-
-/*
- * Main object structure
- */
-typedef struct _PlumaChangecasePlugin PlumaChangecasePlugin;
-
-struct _PlumaChangecasePlugin
-{
- PeasExtensionBase parent_instance;
-
- /*< private >*/
- PlumaChangecasePluginPrivate *priv;
-};
-
-/*
- * Class definition
- */
-typedef struct _PlumaChangecasePluginClass PlumaChangecasePluginClass;
-
-struct _PlumaChangecasePluginClass
-{
- PeasExtensionBaseClass parent_class;
-};
-
-/*
- * Public methods
- */
-GType pluma_changecase_plugin_get_type (void) G_GNUC_CONST;
-
-/* All the plugins must implement this function */
-G_MODULE_EXPORT void peas_register_types (PeasObjectModule *module);
-
-G_END_DECLS
-
-#endif /* __PLUMA_CHANGECASE_PLUGIN_H__ */