gradient-drag.h revision a45fd54bff019fff6991b5c964fc43c2f3098cda
#ifndef __GRADIENT_DRAG_H__
#define __GRADIENT_DRAG_H__
/*
* On-canvas gradient dragging
*
* Authors:
* bulia byak <bulia@users.sf.net>
* Johan Engelen <j.b.c.engelen@ewi.utwente.nl>
*
* Copyright (C) 2007 Johan Engelen
* Copyright (C) 2005 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <vector>
#include <forward.h>
#include <knot-enums.h>
struct SPItem;
struct SPKnot;
}
/**
This class represents a single draggable point of a gradient. It remembers the item
which has the gradient, whether it's fill or stroke, the point type (from the
GrPointType enum), and the point number (needed if more than 2 stops are present).
*/
struct GrDraggable {
~GrDraggable();
bool fill_or_stroke;
return ((item == other->item) && (point_type == other->point_type) && (point_i == other->point_i) && (fill_or_stroke == other->fill_or_stroke));
}
};
/**
This class holds together a visible on-canvas knot and a list of draggables that need to
be moved when the knot moves. Normally there's one draggable in the list, but there may
be more when draggers are snapped together.
*/
struct GrDragger {
~GrDragger();
// position of the knot, desktop coords
// position of the knot before it began to drag; updated when released
/** Connection to \a knot's "moved" signal, for blocking it (unused?). */
void updateKnotShape();
void updateTip();
void select();
void deselect();
bool isSelected();
void moveThisToDraggable (SPItem *item, gint point_type, gint point_i, bool fill_or_stroke, bool write_repr);
void moveOtherToDraggable (SPItem *item, gint point_type, gint point_i, bool fill_or_stroke, bool write_repr);
void updateDependencies (bool write_repr);
};
/**
This is the root class of the gradient dragging machinery. It holds lists of GrDraggers
and of lines (simple canvas items). It also remembers one of the draggers as selected.
*/
public: // FIXME: make more of this private!
~GrDrag();
guint singleSelectedDraggerNumDraggables() {return (selected? g_slist_length(((GrDragger *) selected->data)->draggables) : 0);}
guint singleSelectedDraggerSingleDraggableType() {return (selected? ((GrDraggable *) ((GrDragger *) selected->data)->draggables->data)->point_type : 0);}
// especially the selection must be private, fix gradient-context to remove direct access to it
void deselectAll();
void selectAll();
void deleteSelected (bool just_one = false);
bool copy ();
bool keep_selection;
void grabKnot (SPItem *item, gint point_type, gint point_i, bool fill_or_stroke, gint x, gint y, guint32 etime);
bool local_change;
// lists of edges of selection bboxes, to snap draggers to
void updateDraggers ();
void updateLines ();
void updateLevels ();
void selected_move_nowrite (double x, double y, bool scale_radial);
void selected_move_screen (double x, double y);
GrDragger *select_next ();
GrDragger *select_prev ();
void selected_reverse_vector ();
void deselect_all();
};
#endif