Port to meson (#258)
* Port to meson * plugin generation script: swtich to meson, update to python3, switch to libpeas, add some extra options, and cleanup * clean up some build warnings * kill xed-bugreport.sh with fire: it isn't used anymore, and probably doesn't even work * update gzip command to avoid warnings on some systems and move appdata.xml to /usr/share/metainfo/ as that's where it's supposed to go now * POTFILES.in: fix path that changed in the meson port, which was causing makepot to fail
This commit is contained in:
committed by
Clement Lefebvre
parent
39cadaa36e
commit
6e36dc4a5f
@@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env python
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# generate-plugin.py - xed plugin skeletton generator
|
||||
@@ -18,100 +18,46 @@
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with xed; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
# Boston, MA 02110-1301 USA
|
||||
|
||||
import re
|
||||
import os
|
||||
import sys
|
||||
import getopt
|
||||
import argparse
|
||||
from datetime import date
|
||||
import preprocessor
|
||||
|
||||
# Default values of command line options
|
||||
options = {
|
||||
'language' : 'c',
|
||||
'description' : 'Type here a short description of your plugin',
|
||||
'author' : os.getenv('USERNAME'),
|
||||
'email' : os.getenv('LOGNAME') + '@email.com',
|
||||
'standalone' : False,
|
||||
'with-side-pane' : False,
|
||||
'with-bottom-pane' : False,
|
||||
'with-menu' : False,
|
||||
'with-config-dlg' : False
|
||||
}
|
||||
|
||||
USAGE = """Usage:
|
||||
%s [OPTIONS...] pluginname
|
||||
""" % os.path.basename(sys.argv[0])
|
||||
HELP = USAGE + """
|
||||
generate skeleton source tree for a new xed plugin.
|
||||
|
||||
Options:
|
||||
--author Set the author name
|
||||
--email Set the author email
|
||||
--description Set the description you want for your new plugin
|
||||
--standalone Is this plugin intended to be distributed as a
|
||||
standalone package ? (N/A)
|
||||
--language / -l Set the language (C) [default: %(language)s]
|
||||
--with-$feature Enable $feature
|
||||
--without-$feature Disable $feature
|
||||
--help / -h Show this message and exits
|
||||
|
||||
Features:
|
||||
config-dlg Plugin configuration dialog
|
||||
menu Plugin menu entries
|
||||
side-pane Side pane item (N/A)
|
||||
bottom-pane Bottom pane item (N/A)
|
||||
""" % options
|
||||
|
||||
TEMPLATE_DIR = os.path.join(os.path.dirname(sys.argv[0]), "plugin_template")
|
||||
TEMPLATE_DIR = os.path.join(os.path.dirname(__file__), 'plugin_template')
|
||||
PLUGIN_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), '../plugins'))
|
||||
|
||||
# Parsing command line options
|
||||
try:
|
||||
opts, args = getopt.getopt(sys.argv[1:],
|
||||
'l:h',
|
||||
['language=',
|
||||
'description=',
|
||||
'author=',
|
||||
'email=',
|
||||
'standalone',
|
||||
'with-menu' , 'without-menu',
|
||||
'with-side-pane' , 'without-side-pane',
|
||||
'with-bottom-pane' , 'without-bottom-pane',
|
||||
'with-config-dlg' , 'without-config-dlg',
|
||||
'help'])
|
||||
except getopt.error, exc:
|
||||
print >>sys.stderr, '%s: %s' % (sys.argv[0], str(exc))
|
||||
print >>sys.stderr, USAGE
|
||||
sys.exit(1)
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('-S', '--standalone', dest='standalone', action='store_true',
|
||||
help='indicates that this plugin is intended to be distributed as a standalone package')
|
||||
parser.add_argument('-s', '--with-side-pane', dest='side_pane', action='store_true',
|
||||
help='Indicates that this plugin will use a side pane')
|
||||
parser.add_argument('-b', '--with-bottom-pane', dest='bottom_pane', action='store_true',
|
||||
help='Indicates that this plugin will use a bottom pane')
|
||||
parser.add_argument('-m', '--with-menu', dest='menu', action='store_true',
|
||||
help='Indicates that this plugin will use menu entries')
|
||||
parser.add_argument('-c', '--with-config', dest='config', action='store_true',
|
||||
help='Indicates that this plugin will use a configuration dialog')
|
||||
parser.add_argument('-d', '--description', dest='description', default='Type here a short description of your plugin', metavar='DESC',
|
||||
help='Description of the plugin')
|
||||
parser.add_argument('-a', '--author', dest='author', default=os.getenv('USERNAME'), metavar='AUTH',
|
||||
help='Author of the plugin')
|
||||
parser.add_argument('-e', '--email', dest='email', default=os.getenv('LOGNAME') + '@email.com', metavar='EMAIL',
|
||||
help='Email address of the author')
|
||||
parser.add_argument('-l', '--language', dest='language', default='c', metavar='LANG',
|
||||
help='Language of the plugin')
|
||||
parser.add_argument('-o', '--output-directory', dest='directory', default=None, metavar='LANG',
|
||||
help='Language of the plugin')
|
||||
parser.add_argument('name', metavar='PLUGIN_NAME',
|
||||
help='The name of the plugin')
|
||||
|
||||
for opt, arg in opts:
|
||||
if opt in ('-h', '--help'):
|
||||
print >>sys.stderr, HELP
|
||||
sys.exit(0)
|
||||
args = parser.parse_args()
|
||||
|
||||
elif opt in ('--description', '--author', '--email'):
|
||||
options[opt[2:]] = arg
|
||||
|
||||
elif opt in ('-l', '--language'):
|
||||
options['language'] = arg.lower()
|
||||
|
||||
elif opt == '--standalone':
|
||||
options['standalone'] = True
|
||||
|
||||
elif opt[0:7] == '--with-':
|
||||
options['with-' + opt[7:]] = True
|
||||
|
||||
elif opt[0:10] == '--without-':
|
||||
options['with-' + opt[10:]] = False
|
||||
|
||||
# What's the new plugin name ?
|
||||
if len(args) < 1:
|
||||
print >>sys.stderr, USAGE
|
||||
sys.exit(1)
|
||||
|
||||
plugin_name = args[0]
|
||||
plugin_name = args.name
|
||||
plugin_id = re.sub('[^a-z0-9_]', '', plugin_name.lower().replace(' ', '_'))
|
||||
plugin_module = plugin_id.replace('_', '-')
|
||||
|
||||
@@ -119,64 +65,97 @@ directives = {
|
||||
'PLUGIN_NAME' : plugin_name,
|
||||
'PLUGIN_MODULE' : plugin_module,
|
||||
'PLUGIN_ID' : plugin_id,
|
||||
'AUTHOR_FULLNAME' : options['author'],
|
||||
'AUTHOR_EMAIL' : options['email'],
|
||||
'AUTHOR_FULLNAME' : args.author,
|
||||
'AUTHOR_EMAIL' : args.email,
|
||||
'DATE_YEAR' : date.today().year,
|
||||
'DESCRIPTION' : options['description'],
|
||||
'DESCRIPTION' : args.description,
|
||||
}
|
||||
|
||||
# Files to be generated by the preprocessor, in the form "template : outfile"
|
||||
output_files = {
|
||||
'Makefile.am': '%s/Makefile.am' % plugin_module,
|
||||
'xed-plugin.desktop.in': '%s/%s.xed-plugin.desktop.in' % (plugin_module, plugin_module)
|
||||
'meson.build': 'meson.build',
|
||||
'xed-plugin.desktop.in': '%s.plugin.desktop.in' % plugin_module
|
||||
}
|
||||
|
||||
if options['language'] == 'c':
|
||||
output_files['xed-plugin.c'] = '%s/%s-plugin.c' % (plugin_module, plugin_module)
|
||||
output_files['xed-plugin.h'] = '%s/%s-plugin.h' % (plugin_module, plugin_module)
|
||||
else:
|
||||
print >>sys.stderr, 'Value of --language should be C'
|
||||
print >>sys.stderr, USAGE
|
||||
sys.exit(1)
|
||||
if args.language == 'c':
|
||||
directives['HAS_C_FILES'] = True
|
||||
output_files['xed-plugin.c'] = 'xed-%s-plugin.c' % plugin_module
|
||||
output_files['xed-plugin.h'] = 'xed-%s-plugin.h' % plugin_module
|
||||
|
||||
if options['standalone']:
|
||||
output_files['configure.ac'] = 'configure.ac'
|
||||
|
||||
if options['with-side-pane']:
|
||||
if args.side_pane:
|
||||
directives['WITH_SIDE_PANE'] = True
|
||||
|
||||
if options['with-bottom-pane']:
|
||||
if args.bottom_pane:
|
||||
directives['WITH_BOTTOM_PANE'] = True
|
||||
|
||||
if options['with-menu']:
|
||||
if args.menu:
|
||||
directives['WITH_MENU'] = True
|
||||
|
||||
if options['with-config-dlg']:
|
||||
|
||||
if args.config:
|
||||
directives['WITH_CONFIGURE_DIALOG'] = True
|
||||
|
||||
|
||||
if args.directory is None:
|
||||
directory = os.getcwd() if args.standalone else PLUGIN_DIR
|
||||
elif os.path.isdir(args.directory):
|
||||
directory = args.directory
|
||||
else:
|
||||
print('Unable to create plugin: %s does not exist or is not a directory' % args.directory)
|
||||
quit(1)
|
||||
|
||||
directory = os.path.join(directory, plugin_module)
|
||||
if os.path.exists(directory):
|
||||
print('Unable to create plugin: directory %s already exists' % directory)
|
||||
quit(1)
|
||||
else:
|
||||
os.makedirs(directory)
|
||||
|
||||
if not args.standalone:
|
||||
with open(os.path.join(PLUGIN_DIR, 'meson.build'), 'r') as f:
|
||||
contents = f.read()
|
||||
lines = contents.split('\n')
|
||||
|
||||
start = False
|
||||
for i in range(len(lines)):
|
||||
line = lines[i].rstrip()
|
||||
print(line)
|
||||
if line.startswith('subdir('):
|
||||
start = True
|
||||
elif start:
|
||||
break
|
||||
else:
|
||||
continue
|
||||
|
||||
if line[8:-2] > plugin_module:
|
||||
break
|
||||
|
||||
lines.insert(i, 'subdir(\'%s\')' % plugin_module)
|
||||
|
||||
with open(os.path.join(PLUGIN_DIR, 'meson.build'), 'w') as f:
|
||||
f.write('\n'.join(lines))
|
||||
|
||||
# Generate the plugin base
|
||||
for infile, outfile in output_files.iteritems():
|
||||
print 'Processing %s\n' \
|
||||
' into %s...' % (infile, outfile)
|
||||
print('Generating file %s from template %s...' % (outfile, infile))
|
||||
|
||||
file_directives = directives.copy()
|
||||
|
||||
infile = os.path.join(TEMPLATE_DIR, infile)
|
||||
outfile = os.path.join(os.getcwd(), outfile)
|
||||
outfile = os.path.join(directory, outfile)
|
||||
|
||||
if not os.path.isfile(infile):
|
||||
print >>sys.stderr, 'Input file does not exist : %s.' % os.path.basename(infile)
|
||||
print('Input file %s does not exist: skipping' % os.path.basename(infile))
|
||||
continue
|
||||
|
||||
|
||||
# Make sure the destination directory exists
|
||||
if not os.path.isdir(os.path.split(outfile)[0]):
|
||||
os.makedirs(os.path.split(outfile)[0])
|
||||
|
||||
|
||||
# Variables relative to the generated file
|
||||
directives['DIRNAME'], directives['FILENAME'] = os.path.split(outfile)
|
||||
file_directives['DIRNAME'], file_directives['FILENAME'] = os.path.split(outfile)
|
||||
|
||||
# Generate the file
|
||||
preprocessor.process(infile, outfile, directives.copy())
|
||||
preprocessor.process(infile, outfile, file_directives)
|
||||
|
||||
print 'Done.'
|
||||
print('Done')
|
||||
|
||||
# ex:ts=4:et:
|
||||
|
@@ -1,37 +0,0 @@
|
||||
# ##(PLUGIN_NAME)
|
||||
|
||||
plugindir = $(XED_PLUGINS_LIBS_DIR)
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
-I$(top_srcdir) \
|
||||
$(XED_CFLAGS) \
|
||||
$(WARN_CFLAGS) \
|
||||
$(DISABLE_DEPRECATED_CFLAGS) \
|
||||
-DXED_LOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\"
|
||||
|
||||
plugin_LTLIBRARIES = lib##(PLUGIN_MODULE).la
|
||||
|
||||
lib##(PLUGIN_MODULE)_la_SOURCES = \
|
||||
##(PLUGIN_MODULE)-plugin.h \
|
||||
##(PLUGIN_MODULE)-plugin.c
|
||||
|
||||
lib##(PLUGIN_MODULE)_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
|
||||
lib##(PLUGIN_MODULE)_la_LIBADD = $(XED_LIBS)
|
||||
|
||||
# UI files (if you use gtkbuilder for your plugin, list those files here)
|
||||
uidir = $(XED_PLUGINS_DATA_DIR)/##(PLUGIN_MODULE)
|
||||
ui_DATA =
|
||||
|
||||
plugin_in_files = ##(PLUGIN_MODULE).xed-plugin.desktop.in
|
||||
|
||||
%.xed-plugin: %.xed-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
|
||||
|
||||
plugin_DATA = $(plugin_in_files:.xed-plugin.desktop.in=.xed-plugin)
|
||||
|
||||
EXTRA_DIST = $(plugin_in_files)
|
||||
|
||||
CLEANFILES = $(plugin_DATA) $(ui_DATA)
|
||||
|
||||
DISTCLEANFILES = $(plugin_DATA) $(ui_DATA)
|
||||
|
||||
-include $(top_srcdir)/git.mk
|
34
tools/plugin_template/meson.build
Normal file
34
tools/plugin_template/meson.build
Normal file
@@ -0,0 +1,34 @@
|
||||
##ifdef HAS_C_FILES
|
||||
##(PLUGIN_ID.lower)_sources = [
|
||||
xed-##(PLUGIN_MODULE.lower)-plugin.h
|
||||
xed-##(PLUGIN_MODULE.lower)-plugin.c,
|
||||
]
|
||||
|
||||
##(PLUGIN_ID.lower)_deps = [
|
||||
config_h,
|
||||
glib,
|
||||
gtksourceview,
|
||||
libpeas,
|
||||
libpeas_gtk
|
||||
]
|
||||
|
||||
library(
|
||||
'##(PLUGIN_ID.lower)',
|
||||
##(PLUGIN_ID.lower)_sources,
|
||||
link_with: libxed,
|
||||
dependencies: ##(PLUGIN_ID.lower)_deps,
|
||||
include_directories: include_dirs,
|
||||
install_rpath: join_paths(prefix, libdir, 'xed'),
|
||||
install: true,
|
||||
install_dir: join_paths(libdir, 'xed', 'plugins')
|
||||
)
|
||||
|
||||
##endif
|
||||
##(PLUGIN_ID.lower)_desktop = custom_target(
|
||||
'##(PLUGIN_ID)_desktop',
|
||||
input: '##(PLUGIN_ID).plugin.desktop.in',
|
||||
output: '##(PLUGIN_ID).plugin',
|
||||
command: [intltool_merge, '-d', '-u', po_dir, '@INPUT@', '@OUTPUT@'],
|
||||
install: true,
|
||||
install_dir: pluginslibdir,
|
||||
)
|
@@ -7,7 +7,7 @@
|
||||
* 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
|
||||
@@ -18,167 +18,185 @@
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "##(PLUGIN_MODULE)-plugin.h"
|
||||
|
||||
#include <glib/gi18n-lib.h>
|
||||
#include <xed/xed-debug.h>
|
||||
|
||||
#define WINDOW_DATA_KEY "##(PLUGIN_ID.camel)PluginWindowData"
|
||||
|
||||
#define ##(PLUGIN_ID.upper)_PLUGIN_GET_PRIVATE(object) (G_TYPE_INSTANCE_GET_PRIVATE ((object), TYPE_##(PLUGIN_ID.upper)_PLUGIN, ##(PLUGIN_ID.camel)PluginPrivate))
|
||||
#include "##(PLUGIN_MODULE)-plugin.h"
|
||||
|
||||
struct _##(PLUGIN_ID.camel)PluginPrivate
|
||||
{
|
||||
gpointer dummy;
|
||||
gpointer dummy;
|
||||
|
||||
##ifdef WITH_MENU
|
||||
GtkActionGroup *action_group;
|
||||
guint ui_id;
|
||||
##endif
|
||||
};
|
||||
|
||||
XED_PLUGIN_REGISTER_TYPE (##(PLUGIN_ID.camel)Plugin, ##(PLUGIN_ID.lower)_plugin)
|
||||
struct _##(PLUGIN_ID.camel)Plugin
|
||||
{
|
||||
PeasExtensionBase;
|
||||
};
|
||||
|
||||
static void peas_activatable_iface_init (PeasActivatableInterface *iface);
|
||||
static void peas_gtk_configurable_iface_init (PeasGtkConfigurableInterface *iface);
|
||||
|
||||
G_DEFINE_TYPE_WITH_PRIVATE (##(PLUGIN_ID.camel)Plugin, ##(PLUGIN_ID.lower)_plugin, PeasExtensionBase)
|
||||
|
||||
##ifdef WITH_MENU
|
||||
/* UI string. See xed-ui.xml for reference */
|
||||
static const gchar ui_str =
|
||||
"<ui>"
|
||||
" <menubar name='MenuBar'>"
|
||||
" <!-- Put your menu entries here -->"
|
||||
" </menubar>"
|
||||
"</ui>";
|
||||
static const gchar ui_str =
|
||||
"<ui>"
|
||||
" <menubar name='MenuBar'>"
|
||||
" <!-- Put your menu entries here -->"
|
||||
" </menubar>"
|
||||
"</ui>";
|
||||
|
||||
/* UI actions */
|
||||
static const GtkActionEntry action_entries[] =
|
||||
{
|
||||
/* Put your actions here */
|
||||
};
|
||||
{
|
||||
/* Put your actions here */
|
||||
};
|
||||
|
||||
typedef struct
|
||||
{
|
||||
GtkActionGroup *action_group;
|
||||
guint ui_id;
|
||||
} WindowData;
|
||||
##endif
|
||||
|
||||
static void
|
||||
##(PLUGIN_ID.lower)_plugin_init (##(PLUGIN_ID.camel)Plugin *plugin)
|
||||
{
|
||||
plugin->priv = ##(PLUGIN_ID.upper)_PLUGIN_GET_PRIVATE (plugin);
|
||||
plugin->priv = ##(PLUGIN_ID.upper)_PLUGIN_GET_PRIVATE (plugin);
|
||||
|
||||
xed_debug_message (DEBUG_PLUGINS,
|
||||
"##(PLUGIN_ID.camel)Plugin initializing");
|
||||
xed_debug_message (DEBUG_PLUGINS, "##(PLUGIN_ID.camel)Plugin initializing");
|
||||
}
|
||||
|
||||
static void
|
||||
##(PLUGIN_ID.lower)_plugin_finalize (GObject *object)
|
||||
{
|
||||
xed_debug_message (DEBUG_PLUGINS,
|
||||
"##(PLUGIN_ID.camel)Plugin finalizing");
|
||||
xed_debug_message (DEBUG_PLUGINS, "##(PLUGIN_ID.camel)Plugin finalizing");
|
||||
|
||||
G_OBJECT_CLASS (##(PLUGIN_ID.lower)_plugin_parent_class)->finalize (object);
|
||||
G_OBJECT_CLASS (##(PLUGIN_ID.lower)_plugin_parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
##ifdef WITH_MENU
|
||||
static void
|
||||
free_window_data (WindowData *data)
|
||||
##(PLUGIN_ID.lower)_plugin_dispose (GObject *object)
|
||||
{
|
||||
g_return_if_fail (data != NULL);
|
||||
##(PLUGIN_ID.camelPlugin *plugin = ##(PLUGIN_ID.upper)_PLUGIN (object);
|
||||
xed_debug_message (DEBUG_PLUGINS, "##(PLUGIN_ID.camel)Plugin disposing");
|
||||
if (plugin->priv->window != NULL)
|
||||
{
|
||||
g_object_unref (plugin->priv->window);
|
||||
plugin->priv->window = NULL;
|
||||
}
|
||||
if (plugin->priv->action_group)
|
||||
{
|
||||
g_object_unref (plugin->priv->action_group);
|
||||
plugin->priv->action_group = NULL;
|
||||
}
|
||||
|
||||
g_object_unref (data->action_group);
|
||||
g_free (data);
|
||||
G_OBJECT_CLASS (##(PLUGIN_ID.lower)_plugin_parent_class)->dispose (object);
|
||||
}
|
||||
|
||||
static void
|
||||
##(PLUGIN_ID.lower)_plugin_activate (PeasActivatable *activatable)
|
||||
{
|
||||
##ifdef WITH_MENU
|
||||
##(PLUGIN_ID.camel)Plugin *plugin;
|
||||
##(PLUGIN_ID.camel)PluginPrivate *data;
|
||||
XedWindow *window;
|
||||
GtkUIManager *manager;
|
||||
##endif
|
||||
|
||||
static void
|
||||
impl_activate (XedPlugin *plugin,
|
||||
XedWindow *window)
|
||||
{
|
||||
##ifdef WITH_MENU
|
||||
GtkUIManager *manager;
|
||||
WindowData *data;
|
||||
##endif
|
||||
|
||||
xed_debug (DEBUG_PLUGINS);
|
||||
xed_debug (DEBUG_PLUGINS);
|
||||
|
||||
##ifdef WITH_MENU
|
||||
data = g_new (WindowData, 1);
|
||||
manager = xed_window_get_ui_manager (window);
|
||||
plugin = ##(PLUGIN_ID.upper)_PLUGIN (activatable);
|
||||
data = plugin->priv;
|
||||
window = XED_WINDOW (data->window);
|
||||
|
||||
data->action_group = gtk_action_group_new ("##(PLUGIN_ID.camel)PluginActions");
|
||||
gtk_action_group_set_translation_domain (data->action_group,
|
||||
GETTEXT_PACKAGE);
|
||||
gtk_action_group_add_actions (data->action_group,
|
||||
action_entries,
|
||||
G_N_ELEMENTS (action_entries),
|
||||
window);
|
||||
manager = xed_window_get_ui_manager (window);
|
||||
|
||||
gtk_ui_manager_insert_action_group (manager, data->action_group, -1);
|
||||
data->action_group = gtk_action_group_new ("##(PLUGIN_ID.camel)PluginActions");
|
||||
gtk_action_group_set_translation_domain (data->action_group,
|
||||
GETTEXT_PACKAGE);
|
||||
gtk_action_group_add_actions (data->action_group,
|
||||
action_entries,
|
||||
G_N_ELEMENTS (action_entries),
|
||||
window);
|
||||
|
||||
data->ui_id = gtk_ui_manager_add_ui_from_string (manager, ui_str,
|
||||
-1, NULL);
|
||||
gtk_ui_manager_insert_action_group (manager, data->action_group, -1);
|
||||
|
||||
g_object_set_data_full (G_OBJECT (window),
|
||||
WINDOW_DATA_KEY,
|
||||
data,
|
||||
(GDestroyNotify) free_window_data);
|
||||
##endif
|
||||
}
|
||||
|
||||
static void
|
||||
impl_deactivate (XedPlugin *plugin,
|
||||
XedWindow *window)
|
||||
{
|
||||
##ifdef WITH_MENU
|
||||
GtkUIManager *manager;
|
||||
WindowData *data;
|
||||
##endif
|
||||
|
||||
xed_debug (DEBUG_PLUGINS);
|
||||
|
||||
##ifdef WITH_MENU
|
||||
manager = xed_window_get_ui_manager (window);
|
||||
|
||||
data = (WindowData *) g_object_get_data (G_OBJECT (window),
|
||||
WINDOW_DATA_KEY);
|
||||
g_return_if_fail (data != NULL);
|
||||
|
||||
gtk_ui_manager_remove_ui (manager, data->ui_id);
|
||||
gtk_ui_manager_remove_action_group (manager, data->action_group);
|
||||
|
||||
g_object_set_data (G_OBJECT (window), WINDOW_DATA_KEY, NULL);
|
||||
data->ui_id = gtk_ui_manager_add_ui_from_string (manager, ui_str,
|
||||
-1, NULL);
|
||||
##endif
|
||||
}
|
||||
|
||||
static void
|
||||
impl_update_ui (XedPlugin *plugin,
|
||||
XedWindow *window)
|
||||
##(PLUGIN_ID.lower)_plugin_deactivate (PeasActivatable *activatable)
|
||||
{
|
||||
xed_debug (DEBUG_PLUGINS);
|
||||
##ifdef WITH_MENU
|
||||
##(PLUGIN_ID.camel)PluginPrivate *data;
|
||||
XedWindow *window;
|
||||
GtkUIManager *manager;
|
||||
##endif
|
||||
|
||||
xed_debug (DEBUG_PLUGINS);
|
||||
|
||||
##ifdef WITH_MENU
|
||||
data = ##(PLUGIN_ID.upper)_PLUGIN (activatable)->priv;
|
||||
window = XED_WINDOW (data->window);
|
||||
|
||||
manager = xed_window_get_ui_manager (window);
|
||||
|
||||
data = (WindowData *) g_object_get_data (G_OBJECT (window),
|
||||
WINDOW_DATA_KEY);
|
||||
g_return_if_fail (data != NULL);
|
||||
|
||||
gtk_ui_manager_remove_ui (manager, data->ui_id);
|
||||
gtk_ui_manager_remove_action_group (manager, data->action_group);
|
||||
##endif
|
||||
}
|
||||
|
||||
static void
|
||||
##(PLUGIN_ID.lower)_plugin_update_state (PeasActivatable *activatable)
|
||||
{
|
||||
xed_debug (DEBUG_PLUGINS);
|
||||
}
|
||||
|
||||
static void
|
||||
peas_activatable_iface_init (PeasActivatableInterface *iface)
|
||||
{
|
||||
iface->activate = ##(PLUGIN_ID.lower)_plugin_activate;
|
||||
iface->deactivate = ##(PLUGIN_ID.lower)_plugin_deactivate;
|
||||
iface->update_state = ##(PLUGIN_ID.lower)_plugin_update_state;
|
||||
}
|
||||
|
||||
##ifdef WITH_CONFIGURE_DIALOG
|
||||
static GtkWidget *
|
||||
impl_create_configure_dialog (XedPlugin *plugin)
|
||||
static void
|
||||
peas_gtk_configurable_iface_init (PeasGtkConfigurableInterface *iface)
|
||||
{
|
||||
xed_debug (DEBUG_PLUGINS);
|
||||
iface->create_configure_widget = xed_time_plugin_create_configure_widget;
|
||||
}
|
||||
##endif
|
||||
|
||||
static void
|
||||
##(PLUGIN_ID.lower)_plugin_class_init (##(PLUGIN_ID.camel)PluginClass *klass)
|
||||
{
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
XedPluginClass *plugin_class = XED_PLUGIN_CLASS (klass);
|
||||
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
||||
XedPluginClass *plugin_class = XED_PLUGIN_CLASS (klass);
|
||||
|
||||
object_class->finalize = ##(PLUGIN_ID.lower)_plugin_finalize;
|
||||
|
||||
plugin_class->activate = impl_activate;
|
||||
plugin_class->deactivate = impl_deactivate;
|
||||
plugin_class->update_ui = impl_update_ui;
|
||||
##ifdef WITH_CONFIGURE_DIALOG
|
||||
plugin_class->create_configure_dialog = impl_create_configure_dialog;
|
||||
##endif
|
||||
|
||||
g_type_class_add_private (object_class,
|
||||
sizeof (##(PLUGIN_ID.camel)PluginPrivate));
|
||||
object_class->finalize = ##(PLUGIN_ID.lower)_plugin_finalize;
|
||||
object_class->dispose = ##(PLUGIN_ID.lower)_plugin_dispose;
|
||||
}
|
||||
|
||||
G_MODULE_EXPORT void
|
||||
peas_register_types (PeasObjectModule *module)
|
||||
{
|
||||
##(PLUGIN_ID.lower)_plugin_register_type (G_TYPE_MODULE (module));
|
||||
peas_object_module_register_extension_type (module,
|
||||
PEAS_TYPE_ACTIVATABLE,
|
||||
##(PLUGIN_ID.lower)_TYPE_PLUGIN);
|
||||
|
||||
peas_object_module_register_extension_type (module,
|
||||
PEAS_GTK_TYPE_CONFIGURABLE,
|
||||
##(PLUGIN_ID.lower)_TYPE_PLUGIN);
|
||||
}
|
||||
|
@@ -23,53 +23,16 @@
|
||||
|
||||
#include <glib.h>
|
||||
#include <glib-object.h>
|
||||
#include <xed/xed-plugin.h>
|
||||
#include <libpeas/peas-extension-base.h>
|
||||
#include <libpeas/peas-object-module.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
/*
|
||||
* Type checking and casting macros
|
||||
*/
|
||||
#define TYPE_##(PLUGIN_ID.upper)_PLUGIN (##(PLUGIN_ID.lower)_plugin_get_type ())
|
||||
#define ##(PLUGIN_ID.upper)_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TYPE_##(PLUGIN_ID.upper)_PLUGIN, ##(PLUGIN_ID.camel)Plugin))
|
||||
#define ##(PLUGIN_ID.upper)_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), TYPE_##(PLUGIN_ID.upper)_PLUGIN, ##(PLUGIN_ID.camel)PluginClass))
|
||||
#define IS_##(PLUGIN_ID.upper)_PLUGIN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TYPE_##(PLUGIN_ID.upper)_PLUGIN))
|
||||
#define IS_##(PLUGIN_ID.upper)_PLUGIN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TYPE_##(PLUGIN_ID.upper)_PLUGIN))
|
||||
#define ##(PLUGIN_ID.upper)_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TYPE_##(PLUGIN_ID.upper)_PLUGIN, ##(PLUGIN_ID.camel)PluginClass))
|
||||
|
||||
/* Private structure type */
|
||||
typedef struct _##(PLUGIN_ID.camel)PluginPrivate ##(PLUGIN_ID.camel)PluginPrivate;
|
||||
|
||||
/*
|
||||
* Main object structure
|
||||
*/
|
||||
typedef struct _##(PLUGIN_ID.camel)Plugin ##(PLUGIN_ID.camel)Plugin;
|
||||
|
||||
struct _##(PLUGIN_ID.camel)Plugin
|
||||
{
|
||||
XedPlugin parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
##(PLUGIN_ID.camel)PluginPrivate *priv;
|
||||
};
|
||||
|
||||
/*
|
||||
* Class definition
|
||||
*/
|
||||
typedef struct _##(PLUGIN_ID.camel)PluginClass ##(PLUGIN_ID.camel)PluginClass;
|
||||
|
||||
struct _##(PLUGIN_ID.camel)PluginClass
|
||||
{
|
||||
XedPluginClass parent_class;
|
||||
};
|
||||
|
||||
/*
|
||||
* Public methods
|
||||
*/
|
||||
GType ##(PLUGIN_ID.lower)_plugin_get_type (void) G_GNUC_CONST;
|
||||
#define ##(PLUGIN_ID.upper)_TYPE_PLUGIN (##(PLUGIN_ID.lower)_plugin_get_type ())
|
||||
G_DECLARE_FINAL_TYPE (##(PLUGIN_ID.camel)Plugin, ##(PLUGIN_ID.lower)_plugin, ##(PLUGIN_ID.upper), PLUGIN, PeasExtensionBase)
|
||||
|
||||
/* All the plugins must implement this function */
|
||||
G_MODULE_EXPORT GType register_xed_plugin (GTypeModule *module);
|
||||
G_MODULE_EXPORT void peas_register_types (PeasObjectModule *module);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
Reference in New Issue
Block a user