1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
/*
* $Id: volumeops.c 26421 2024-06-28 11:19:22Z yeti-dn $
* Copyright (C) 2003 David Necas (Yeti), Petr Klapetek.
* E-mail: yeti@gwyddion.net, klapetek@gwyddion.net.
*
* 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, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include <gtk/gtk.h>
#include <libgwyddion/gwymacros.h>
#include <libprocess/brick.h>
#include <libgwydgets/gwystock.h>
#include <libgwymodule/gwymodule-volume.h>
#include <app/gwyapp.h>
#define VOLUMEOPS_RUN_MODES (GWY_RUN_IMMEDIATE)
static gboolean module_register(void);
static void extract_preview(GwyContainer *data,
GwyRunType run);
static GwyModuleInfo module_info = {
GWY_MODULE_ABI_VERSION,
&module_register,
N_("Inverts value in volume data"),
"Yeti <yeti@gwyddion.net>",
"1.1",
"David Nečas (Yeti)",
"2017",
};
GWY_MODULE_QUERY2(module_info, volumeops)
static gboolean
module_register(void)
{
gwy_volume_func_register("extract_preview",
(GwyVolumeFunc)&extract_preview,
N_("/_Basic Operations/Extract _Preview"),
NULL,
VOLUMEOPS_RUN_MODES,
GWY_MENU_FLAG_VOLUME,
N_("Extract volume data preview to an image"));
return TRUE;
}
static void
extract_preview(GwyContainer *data, GwyRunType run)
{
GwyDataField *dfield = NULL;
GQuark quark;
gint id, newid;
gchar *title;
g_return_if_fail(run & VOLUMEOPS_RUN_MODES);
gwy_app_data_browser_get_current(GWY_APP_BRICK_ID, &id, 0);
quark = gwy_app_get_brick_preview_key_for_id(id);
dfield = gwy_data_field_duplicate(gwy_container_get_object(data, quark));
title = gwy_app_get_brick_title(data, id);
g_return_if_fail(GWY_IS_DATA_FIELD(dfield));
newid = gwy_app_data_browser_add_data_field(dfield, data, TRUE);
g_object_unref(dfield);
quark = gwy_app_get_data_title_key_for_id(newid);
gwy_container_set_string(data, quark, (guchar*)title);
gwy_app_channel_log_add(data, -1, newid, "volume::extract_preview", NULL);
}
/* vim: set cin columns=120 tw=118 et ts=4 sw=4 cino=>1s,e0,n0,f0,{0,}0,^0,\:1s,=0,g1s,h0,t0,+1s,c3,(0,u0 : */
|