summaryrefslogtreecommitdiffstats
path: root/src/seltrans-handles.h
blob: 9811b13caefabf7436ef2236f1eeaa5ad8c71b65 (plain)
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
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef SEEN_SP_SELTRANS_HANDLES_H
#define SEEN_SP_SELTRANS_HANDLES_H

/*
 * Seltrans knots
 *
 * Authors:
 *   Lauris Kaplinski <lauris@kaplinski.com>
 *
 * Copyright (C) 1999-2002 authors
 *
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#include <2geom/forward.h>
#include <gdk/gdk.h>

#include "enums.h"
#include "verbs.h"

typedef unsigned int guint32;

namespace Inkscape {
    class SelTrans;
}

// Colours are RRGGBBAA:      FILL,       OVER&DRAG,  STROKE,     OVER&DRAG
guint32 const DEF_COLOR[] = { 0x000000ff, 0x00ff6600, 0x000000ff, 0x000000ff };
guint32 const CEN_COLOR[] = { 0x00000000, 0x00000000, 0x000000ff, 0xff0000b0 };

enum SPSelTransType {
    HANDLE_STRETCH,
    HANDLE_SCALE,
    HANDLE_SKEW,
    HANDLE_ROTATE,
    HANDLE_CENTER,
    HANDLE_ALIGN,
    HANDLE_CENTER_ALIGN
};

// Which handle does what in the alignment (clicking)
const int AlignVerb[18] = {
    // Left Click
    SP_VERB_ALIGN_VERTICAL_TOP,
    SP_VERB_ALIGN_HORIZONTAL_RIGHT,
    SP_VERB_ALIGN_VERTICAL_BOTTOM,
    SP_VERB_ALIGN_HORIZONTAL_LEFT,
    SP_VERB_ALIGN_VERTICAL_CENTER,
    SP_VERB_ALIGN_BOTH_TOP_LEFT,
    SP_VERB_ALIGN_BOTH_TOP_RIGHT,
    SP_VERB_ALIGN_BOTH_BOTTOM_RIGHT,
    SP_VERB_ALIGN_BOTH_BOTTOM_LEFT,
    // Shift Click
    SP_VERB_ALIGN_VERTICAL_BOTTOM_TO_ANCHOR,
    SP_VERB_ALIGN_HORIZONTAL_LEFT_TO_ANCHOR,
    SP_VERB_ALIGN_VERTICAL_TOP_TO_ANCHOR,
    SP_VERB_ALIGN_HORIZONTAL_RIGHT_TO_ANCHOR,
    SP_VERB_ALIGN_HORIZONTAL_CENTER,
    SP_VERB_ALIGN_BOTH_BOTTOM_RIGHT_TO_ANCHOR,
    SP_VERB_ALIGN_BOTH_BOTTOM_LEFT_TO_ANCHOR,
    SP_VERB_ALIGN_BOTH_TOP_LEFT_TO_ANCHOR,
    SP_VERB_ALIGN_BOTH_TOP_RIGHT_TO_ANCHOR,
};
// Ofset from the index in the handle list to the index in the verb list.
const int AlignHandleToVerb = -13;
// Offset for moving from Left click to Shift Click
const int AlignShiftVerb = 9;

struct SPSelTransTypeInfo {
        guint32 const *color;
        char const *tip;
};
// One per handle type in order
extern SPSelTransTypeInfo const handtypes[7];

struct SPSelTransHandle;

struct SPSelTransHandle {
        SPSelTransType type;
	SPAnchorType anchor;
	GdkCursorType cursor;
	unsigned int control;
	gdouble x, y;
};
// These are 4 * each handle type + 1 for center
int const NUMHANDS = 26;
extern SPSelTransHandle const hands[NUMHANDS];

#endif // SEEN_SP_SELTRANS_HANDLES_H

/*
  Local Variables:
  mode:c++
  c-file-style:"stroustrup"
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
  indent-tabs-mode:nil
  fill-column:99
  End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :