mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-20 11:48:30 -06:00
This will avoid a ninja-build from picking up a config.h generated by the autotools build (in the root build directory). Picking up the wrong config.h may lead to all kinds of subtle issues if the autotools run was done with different options than the cmake run.
108 lines
3.4 KiB
C
108 lines
3.4 KiB
C
/*
|
|
* gnc-plugin-example.c --
|
|
*
|
|
* 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 of
|
|
* the License, 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, contact:
|
|
*
|
|
* Free Software Foundation Voice: +1-617-542-5942
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org
|
|
*/
|
|
|
|
/**
|
|
* @internal
|
|
* @file gnc-plugin-example.c
|
|
* @brief Plugin registration of the example plugin
|
|
* @author Copyright (C) 2009 ?enter your name here? <your-email@example.com>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
#include "gnc-plugin-example.h"
|
|
|
|
/* This static indicates the debugging module that this .o belongs to. */
|
|
static QofLogModule log_module = G_LOG_DOMAIN;
|
|
|
|
static void gnc_plugin_example_class_init (GncPluginexampleClass *klass);
|
|
static void gnc_plugin_example_init (GncPluginexample *plugin);
|
|
static void gnc_plugin_example_finalize (GObject *object);
|
|
|
|
/* Command callbacks */
|
|
static void gnc_plugin_example_cmd_test (GtkAction *action, GncMainWindowActionData *data);
|
|
|
|
#define PLUGIN_ACTIONS_NAME "gnc-plugin-example-actions"
|
|
#define PLUGIN_UI_FILENAME "gnc-plugin-example-ui.xml"
|
|
|
|
static GtkActionEntry gnc_plugin_actions [] = {
|
|
/* Menu Items */
|
|
{ "exampleAction", NULL, N_("example description..."), NULL,
|
|
N_("example tooltip"),
|
|
G_CALLBACK(gnc_plugin_example_cmd_test) },
|
|
};
|
|
static guint gnc_plugin_n_actions = G_N_ELEMENTS(gnc_plugin_actions);
|
|
|
|
|
|
/************************************************************
|
|
* Object Implementation *
|
|
************************************************************/
|
|
|
|
G_DEFINE_TYPE(GncPluginexample, gnc_plugin_example, GNC_TYPE_PLUGIN)
|
|
|
|
GncPlugin *
|
|
gnc_plugin_example_new (void)
|
|
{
|
|
return GNC_PLUGIN (g_object_new (GNC_TYPE_PLUGIN_example, (gchar*) NULL));
|
|
}
|
|
|
|
static void
|
|
gnc_plugin_example_class_init (GncPluginexampleClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
GncPluginClass *plugin_class = GNC_PLUGIN_CLASS(klass);
|
|
|
|
object_class->finalize = gnc_plugin_example_finalize;
|
|
|
|
/* plugin info */
|
|
plugin_class->plugin_name = GNC_PLUGIN_example_NAME;
|
|
|
|
/* widget addition/removal */
|
|
plugin_class->actions_name = PLUGIN_ACTIONS_NAME;
|
|
plugin_class->actions = gnc_plugin_actions;
|
|
plugin_class->n_actions = gnc_plugin_n_actions;
|
|
plugin_class->ui_filename = PLUGIN_UI_FILENAME;
|
|
}
|
|
|
|
static void
|
|
gnc_plugin_example_init (GncPluginexample *plugin)
|
|
{
|
|
}
|
|
|
|
static void
|
|
gnc_plugin_example_finalize (GObject *object)
|
|
{
|
|
}
|
|
|
|
/************************************************************
|
|
* Command Callbacks *
|
|
************************************************************/
|
|
|
|
static void
|
|
gnc_plugin_example_cmd_test (GtkAction *action, GncMainWindowActionData *data)
|
|
{
|
|
ENTER ("action %p, main window data %p", action, data);
|
|
g_message ("example");
|
|
LEAVE (" ");
|
|
}
|