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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
|
/*
* $Id: gwyselectiongraph1darea.c 20678 2017-12-18 18:26:55Z yeti-dn $
* Copyright (C) 2006-2015 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 <libgwyddion/gwymacros.h>
#include <libgwyddion/gwyserializable.h>
#include <libprocess/gwyprocessenums.h>
#include <libprocess/gwyprocesstypes.h>
#include <libgwydgets/gwyselectiongraph1darea.h>
#define GWY_SELECTION_GRAPH_1DAREA_TYPE_NAME "GwySelectionGraph1DArea"
enum {
OBJECT_SIZE = 2
};
enum {
PROP_0,
PROP_ORIENTATION
};
typedef struct {
GwyOrientation orientation;
} GwySelectionGraph1DAreaPriv;
static void gwy_selection_graph_1darea_serializable_init(GwySerializableIface *iface);
static void gwy_selection_graph_1darea_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec);
static void gwy_selection_graph_1darea_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec);
static gboolean gwy_selection_graph_1darea_crop_object (GwySelection *selection,
gint i,
gpointer user_data);
static void gwy_selection_graph_1darea_crop (GwySelection *selection,
gdouble xmin,
gdouble ymin,
gdouble xmax,
gdouble ymax);
static void gwy_selection_graph_1darea_move (GwySelection *selection,
gdouble vx,
gdouble vy);
static GByteArray* gwy_selection_graph_1darea_serialize (GObject *serializable,
GByteArray *buffer);
static GObject* gwy_selection_graph_1darea_deserialize (const guchar *buffer,
gsize size,
gsize *position);
static GObject* gwy_selection_graph_1darea_duplicate (GObject *object);
static void gwy_selection_graph_1darea_clone (GObject *source,
GObject *copy);
static void gwy_selection_graph_1darea_set_orientation (GwySelectionGraph1DArea *selection,
GwyOrientation orientation);
static GwySerializableIface *gwy_selection_graph_1darea_serializable_parent_iface;
G_DEFINE_TYPE_EXTENDED
(GwySelectionGraph1DArea, gwy_selection_graph_1darea, GWY_TYPE_SELECTION, 0,
GWY_IMPLEMENT_SERIALIZABLE(gwy_selection_graph_1darea_serializable_init))
static void
gwy_selection_graph_1darea_class_init(GwySelectionGraph1DAreaClass *klass)
{
GwySelectionClass *sel_class = GWY_SELECTION_CLASS(klass);
GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
gobject_class->set_property = gwy_selection_graph_1darea_set_property;
gobject_class->get_property = gwy_selection_graph_1darea_get_property;
sel_class->object_size = OBJECT_SIZE;
sel_class->crop = gwy_selection_graph_1darea_crop;
sel_class->move = gwy_selection_graph_1darea_move;
g_type_class_add_private(klass, sizeof(GwySelectionGraph1DAreaPriv));
/**
* GwySelectionGraph1DArea:orientation:
*
* The :orientation property represents the orientation of the selected
* area.
*
* The orientation is %GWY_ORIENTATION_HORIZONTAL for selections along the
* @x-axis, and %GWY_ORIENTATION_VERTICAL for selections along the
* @y-axis.
*
* Since: 2.43
**/
g_object_class_install_property
(gobject_class,
PROP_ORIENTATION,
g_param_spec_enum("orientation",
"Orientation",
"Orientation of selected areas",
GWY_TYPE_ORIENTATION,
GWY_ORIENTATION_HORIZONTAL,
G_PARAM_READABLE | G_PARAM_WRITABLE));
}
static void
gwy_selection_graph_1darea_serializable_init(GwySerializableIface *iface)
{
gwy_selection_graph_1darea_serializable_parent_iface
= g_type_interface_peek_parent(iface);
iface->serialize = gwy_selection_graph_1darea_serialize;
iface->deserialize = gwy_selection_graph_1darea_deserialize;
iface->duplicate = gwy_selection_graph_1darea_duplicate;
iface->clone = gwy_selection_graph_1darea_clone;
}
static void
gwy_selection_graph_1darea_init(GwySelectionGraph1DArea *selection)
{
GwySelectionGraph1DAreaPriv *priv;
priv = G_TYPE_INSTANCE_GET_PRIVATE(selection,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
/* Set max. number of objects to one */
g_array_set_size(GWY_SELECTION(selection)->objects, OBJECT_SIZE);
priv->orientation = GWY_ORIENTATION_HORIZONTAL;
}
static void
gwy_selection_graph_1darea_set_property(GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
GwySelectionGraph1DArea *selection = GWY_SELECTION_GRAPH_1DAREA(object);
switch (prop_id) {
case PROP_ORIENTATION:
gwy_selection_graph_1darea_set_orientation(selection,
g_value_get_enum(value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;
}
}
static void
gwy_selection_graph_1darea_get_property(GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
GwySelectionGraph1DArea *selection = GWY_SELECTION_GRAPH_1DAREA(object);
GwySelectionGraph1DAreaPriv *priv;
priv = G_TYPE_INSTANCE_GET_PRIVATE(selection,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
switch (prop_id) {
case PROP_ORIENTATION:
g_value_set_enum(value, priv->orientation);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;
}
}
static gboolean
gwy_selection_graph_1darea_crop_object(GwySelection *selection,
gint i,
gpointer user_data)
{
const gdouble *minmax = (const gdouble*)user_data;
GwySelectionGraph1DAreaPriv *priv;
gdouble xy[OBJECT_SIZE];
priv = G_TYPE_INSTANCE_GET_PRIVATE(selection,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
gwy_selection_get_object(selection, i, xy);
if (priv->orientation == GWY_ORIENTATION_VERTICAL) {
return (xy[0] >= minmax[0] && xy[0] <= minmax[2]
&& xy[1] >= minmax[0] && xy[1] <= minmax[2]);
}
else {
return (xy[0] >= minmax[1] && xy[0] <= minmax[3]
&& xy[1] >= minmax[1] && xy[1] <= minmax[3]);
}
}
static void
gwy_selection_graph_1darea_crop(GwySelection *selection,
gdouble xmin,
gdouble ymin,
gdouble xmax,
gdouble ymax)
{
gdouble minmax[4] = { xmin, ymin, xmax, ymax };
gwy_selection_filter(selection, gwy_selection_graph_1darea_crop_object,
minmax);
}
static void
gwy_selection_graph_1darea_move(GwySelection *selection,
gdouble vx,
gdouble vy)
{
GwySelectionGraph1DAreaPriv *priv;
gdouble *data = (gdouble*)selection->objects->data;
guint i, n = selection->objects->len/OBJECT_SIZE;
priv = G_TYPE_INSTANCE_GET_PRIVATE(selection,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
if (priv->orientation == GWY_ORIENTATION_VERTICAL) {
for (i = 0; i < n; i++) {
data[OBJECT_SIZE*i + 0] += vy;
data[OBJECT_SIZE*i + 1] += vy;
}
}
else {
for (i = 0; i < n; i++) {
data[OBJECT_SIZE*i + 0] += vx;
data[OBJECT_SIZE*i + 1] += vx;
}
}
}
static GByteArray*
gwy_selection_graph_1darea_serialize(GObject *serializable,
GByteArray *buffer)
{
GwySelection *selection;
GwySelectionGraph1DAreaPriv *priv;
g_return_val_if_fail(GWY_IS_SELECTION_GRAPH_1DAREA(serializable), NULL);
selection = GWY_SELECTION(serializable);
priv = G_TYPE_INSTANCE_GET_PRIVATE(selection,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
{
guint32 len = selection->n * OBJECT_SIZE;
guint32 max = selection->objects->len/OBJECT_SIZE;
guint32 orientation = priv->orientation;
gpointer pdata = len ? &selection->objects->data : NULL;
GwySerializeSpec spec[] = {
{ 'i', "max", &max, NULL, },
{ 'i', "orientation", &orientation, NULL, },
{ 'D', "data", pdata, &len, },
};
return gwy_serialize_pack_object_struct(buffer,
GWY_SELECTION_GRAPH_1DAREA_TYPE_NAME,
G_N_ELEMENTS(spec), spec);
}
}
static GObject*
gwy_selection_graph_1darea_deserialize(const guchar *buffer,
gsize size,
gsize *position)
{
gdouble *data = NULL;
guint32 len = 0, max = 0, orientation = GWY_ORIENTATION_HORIZONTAL;
GwySerializeSpec spec[] = {
{ 'i', "max", &max, NULL },
{ 'i', "orientation", &orientation, NULL, },
{ 'D', "data", &data, &len, },
};
GwySelection *selection;
GwySelectionGraph1DAreaPriv *priv;
g_return_val_if_fail(buffer, NULL);
if (!gwy_serialize_unpack_object_struct(buffer, size, position,
GWY_SELECTION_GRAPH_1DAREA_TYPE_NAME,
G_N_ELEMENTS(spec), spec)) {
g_free(data);
return NULL;
}
selection = g_object_new(GWY_TYPE_SELECTION_GRAPH_1DAREA, NULL);
priv = G_TYPE_INSTANCE_GET_PRIVATE(selection,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
priv->orientation = orientation;
g_array_set_size(selection->objects, 0);
if (data && len) {
if (len % OBJECT_SIZE)
g_warning("Selection data size not multiple of object size. "
"Ignoring it.");
else {
g_array_append_vals(selection->objects, data, len);
selection->n = len/OBJECT_SIZE;
}
g_free(data);
}
if (max > selection->n)
g_array_set_size(selection->objects, max*OBJECT_SIZE);
return (GObject*)selection;
}
static GObject*
gwy_selection_graph_1darea_duplicate(GObject *object)
{
GObject *copy;
GwySelectionGraph1DAreaPriv *priv, *copypriv;
copy = gwy_selection_graph_1darea_serializable_parent_iface->duplicate(object);
priv = G_TYPE_INSTANCE_GET_PRIVATE(object,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
copypriv = G_TYPE_INSTANCE_GET_PRIVATE(copy,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
copypriv->orientation = priv->orientation;
return copy;
}
static void
gwy_selection_graph_1darea_clone(GObject *source,
GObject *copy)
{
GwySelectionGraph1DAreaPriv *srcpriv, *copypriv;
srcpriv = G_TYPE_INSTANCE_GET_PRIVATE(source,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
copypriv = G_TYPE_INSTANCE_GET_PRIVATE(copy,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
copypriv->orientation = srcpriv->orientation;
/* Must do this at the end, it emits a signal. */
gwy_selection_graph_1darea_serializable_parent_iface->clone(source, copy);
}
static void
gwy_selection_graph_1darea_set_orientation(GwySelectionGraph1DArea *selection,
GwyOrientation orientation)
{
GwySelectionGraph1DAreaPriv *priv;
g_return_if_fail(orientation == GWY_ORIENTATION_HORIZONTAL
|| orientation == GWY_ORIENTATION_VERTICAL);
priv = G_TYPE_INSTANCE_GET_PRIVATE(selection,
GWY_TYPE_SELECTION_GRAPH_1DAREA,
GwySelectionGraph1DAreaPriv);
if (orientation == priv->orientation)
return;
gwy_selection_clear(GWY_SELECTION(selection));
priv->orientation = orientation;
g_object_notify(G_OBJECT(selection), "orientation");
}
/**
* gwy_selection_graph_1darea_new:
*
* Creates a new 1darea-wise graph selection.
*
* Returns: A new selection object.
*
* Since: 2.1
**/
GwySelection*
gwy_selection_graph_1darea_new(void)
{
return (GwySelection*)g_object_new(GWY_TYPE_SELECTION_GRAPH_1DAREA, NULL);
}
/************************** Documentation ****************************/
/**
* SECTION:gwyselectiongraph1darea
* @title: GwySelectionGraph1DArea
* @short_description: Graph region selection
*
* #GwySelectionGraph1DArea is used to represent horizontal or vertical graph
* region selections in graphs. Selection data consists of coordinate pairs
* (from, to).
*
* If you obtain the selection from a graph widget it has the "orientation"
* property set for information. The orientation should be kept intact in this
* case as changing it is not meaningful. The graph keeps two distinct
* horizontal and vertical selection objects.
**/
/* vim: set cin et ts=4 sw=4 cino=>1s,e0,n0,f0,{0,}0,^0,\:1s,=0,g1s,h0,t0,+1s,c3,(0,u0 : */
|