File: line_type.cc

package info (click to toggle)
kig 4%3A25.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,712 kB
  • sloc: cpp: 41,465; xml: 863; python: 486; perl: 23; sh: 17; makefile: 3
file content (326 lines) | stat: -rw-r--r-- 9,139 bytes parent folder | download
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
// SPDX-FileCopyrightText: 2002 Dominique Devriese <devriese@kde.org>

// SPDX-License-Identifier: GPL-2.0-or-later

#include "line_type.h"

#include "bogus_imp.h"
#include "line_imp.h"
#include "object_holder.h"
#include "other_imp.h"
#include "point_imp.h"

#include "../kig/kig_commands.h"
#include "../kig/kig_part.h"
#include "../kig/kig_view.h"
#include "../misc/calcpaths.h"
#include "../misc/common.h"

#include <QStringList>

static const ArgsParser::spec argsspecSegmentAB[] = {
    {PointImp::stype(), kli18n("Construct a segment starting at this point"), kli18n("Select the start point of the new segment..."), true},
    {PointImp::stype(), kli18n("Construct a segment ending at this point"), kli18n("Select the end point of the new segment..."), true}};

KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(SegmentABType)

SegmentABType::SegmentABType()
    : ObjectABType("SegmentAB", argsspecSegmentAB, 2)
{
}

SegmentABType::~SegmentABType()
{
}

const SegmentABType *SegmentABType::instance()
{
    static const SegmentABType s;
    return &s;
}

ObjectImp *SegmentABType::calcx(const Coordinate &a, const Coordinate &b) const
{
    return new SegmentImp(a, b);
}

static const KLazyLocalizedString constructlineabstat = kli18n("Construct a line through this point");

static const ArgsParser::spec argsspecLineAB[] = {
    {PointImp::stype(), constructlineabstat, kli18n("Select a point for the line to go through..."), true},
    {PointImp::stype(), constructlineabstat, kli18n("Select another point for the line to go through..."), true}};

KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(LineABType)

LineABType::LineABType()
    : ObjectABType("LineAB", argsspecLineAB, 2)
{
}

LineABType::~LineABType()
{
}

const LineABType *LineABType::instance()
{
    static const LineABType s;
    return &s;
}

ObjectImp *LineABType::calcx(const Coordinate &a, const Coordinate &b) const
{
    return new LineImp(a, b);
}

static const KLazyLocalizedString constructhalflinestartingstat = kli18n("Construct a half-line starting at this point");

static const ArgsParser::spec argsspecRayAB[] = {
    {PointImp::stype(), constructhalflinestartingstat, kli18n("Select the start point of the new half-line..."), true},
    {PointImp::stype(), kli18n("Construct a half-line through this point"), kli18n("Select a point for the half-line to go through..."), true}};

KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(RayABType)

RayABType::RayABType()
    : ObjectABType("RayAB", argsspecRayAB, 2)
{
}

RayABType::~RayABType()
{
}

const RayABType *RayABType::instance()
{
    static const RayABType s;
    return &s;
}

ObjectImp *RayABType::calcx(const Coordinate &a, const Coordinate &b) const
{
    return new RayImp(a, b);
}

static const ArgsParser::spec argspecSegmentAxisABType[] = {
    {SegmentImp::stype(), kli18n("Construct the axis of this segment"), kli18n("Select the segment of which you want to draw the axis..."), true}};

KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(SegmentAxisType);

SegmentAxisType::SegmentAxisType()
    : ArgsParserObjectType("Segment Axis", argspecSegmentAxisABType, 1)
{
}

SegmentAxisType::~SegmentAxisType()
{
}

const SegmentAxisType *SegmentAxisType::instance()
{
    static const SegmentAxisType s;
    return &s;
}

ObjectImp *SegmentAxisType::calc(const Args &args, const KigDocument &) const
{
    if (!margsparser.checkArgs(args))
        return new InvalidImp;

    const SegmentImp *l = static_cast<const SegmentImp *>(args[0]);
    const Coordinate a = l->data().a;
    const Coordinate b = l->data().b;
    const Coordinate mp = (a + b) / 2;
    const Coordinate dir(b - a);
    const Coordinate perpPoint = calcPointOnPerpend(dir, mp);
    return new LineImp(mp, perpPoint);
}

const ObjectImpType *SegmentAxisType::resultId() const
{
    return LineImp::stype();
}

LinePerpendLPType *LinePerpendLPType::instance()
{
    static LinePerpendLPType l;
    return &l;
}

ObjectImp *LinePerpendLPType::calc(const LineData &a, const Coordinate &b) const
{
    Coordinate p = calcPointOnPerpend(a, b);
    return new LineImp(b, p);
}

static const ArgsParser::spec argsspecLineParallel[] = {
    {AbstractLineImp::stype(), kli18n("Construct a line parallel to this line"), kli18n("Select a line parallel to the new line..."), false},
    {PointImp::stype(), kli18n("Construct the parallel line through this point"), kli18n("Select a point for the new line to go through..."), true}};

KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(LineParallelLPType)

LineParallelLPType::LineParallelLPType()
    : ObjectLPType("LineParallel", argsspecLineParallel, 2)
{
}

LineParallelLPType::~LineParallelLPType()
{
}

LineParallelLPType *LineParallelLPType::instance()
{
    static LineParallelLPType l;
    return &l;
}

ObjectImp *LineParallelLPType::calc(const LineData &a, const Coordinate &b) const
{
    Coordinate r = calcPointOnParallel(a, b);
    return new LineImp(r, b);
}

static const ArgsParser::spec argsspecLinePerpend[] = {
    {AbstractLineImp::stype(), kli18n("Construct a line perpendicular to this line"), kli18n("Select a line perpendicular to the new line..."), false},
    {PointImp::stype(), kli18n("Construct a perpendicular line through this point"), kli18n("Select a point for the new line to go through..."), true}};

KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(LinePerpendLPType)

LinePerpendLPType::LinePerpendLPType()
    : ObjectLPType("LinePerpend", argsspecLinePerpend, 2)
{
}

LinePerpendLPType::~LinePerpendLPType()
{
}

const ObjectImpType *SegmentABType::resultId() const
{
    return SegmentImp::stype();
}

const ObjectImpType *LineABType::resultId() const
{
    return LineImp::stype();
}

const ObjectImpType *RayABType::resultId() const
{
    return RayImp::stype();
}

const ObjectImpType *LinePerpendLPType::resultId() const
{
    return LineImp::stype();
}

const ObjectImpType *LineParallelLPType::resultId() const
{
    return LineImp::stype();
}

QStringList SegmentABType::specialActions() const
{
    QStringList ret;
    ret << i18n("Set &Length...");
    return ret;
}

void SegmentABType::executeAction(int i, ObjectHolder &, ObjectTypeCalcer &c, KigPart &d, KigWidget &w, NormalMode &) const
{
    assert(i == 0);
    // pretend to use this var..
    (void)i;

    std::vector<ObjectCalcer *> parents = c.parents();
    assert(margsparser.checkArgs(parents));

    Coordinate a = static_cast<const PointImp *>(parents[0]->imp())->coordinate();
    Coordinate b = static_cast<const PointImp *>(parents[1]->imp())->coordinate();

    bool ok = true;
    double length = getDoubleFromUser(i18n("Set Segment Length"), i18n("Choose the new length: "), (b - a).length(), &w, &ok, -2147483647, 2147483647, 3);
    if (!ok)
        return;

    Coordinate nb = a + (b - a).normalize(length);

    MonitorDataObjects mon(getAllParents(parents));
    parents[1]->move(nb, d.document());
    KigCommand *cd = new KigCommand(d, i18n("Resize Segment"));
    mon.finish(cd);
    d.history()->push(cd);
}

static const ArgsParser::spec argsspecLineByVector[] = {
    {VectorImp::stype(), kli18n("Construct a line by this vector"), kli18n("Select a vector in the direction of the new line..."), true},
    {PointImp::stype(), constructlineabstat, kli18n("Select a point for the new line to go through..."), true}};

KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(LineByVectorType)

LineByVectorType::LineByVectorType()
    : ArgsParserObjectType("LineByVector", argsspecLineByVector, 2)
{
}

LineByVectorType::~LineByVectorType()
{
}

const LineByVectorType *LineByVectorType::instance()
{
    static const LineByVectorType s;
    return &s;
}

ObjectImp *LineByVectorType::calc(const Args &args, const KigDocument &) const
{
    if (!margsparser.checkArgs(args))
        return new InvalidImp;

    const VectorImp &a = *static_cast<const VectorImp *>(args[0]);
    const PointImp &b = *static_cast<const PointImp *>(args[1]);

    return new LineImp(b.coordinate(), b.coordinate() + a.dir());
}

const ObjectImpType *LineByVectorType::resultId() const
{
    return LineImp::stype();
}

static const ArgsParser::spec argsspecHalflineByVector[] = {
    {VectorImp::stype(), kli18n("Construct a half-line by this vector"), kli18n("Select a vector in the direction of the new half-line..."), true},
    {PointImp::stype(), constructhalflinestartingstat, kli18n("Select the start point of the new half-line..."), true}};

KIG_INSTANTIATE_OBJECT_TYPE_INSTANCE(HalflineByVectorType)

HalflineByVectorType::HalflineByVectorType()
    : ArgsParserObjectType("HalflineByVector", argsspecHalflineByVector, 2)
{
}

HalflineByVectorType::~HalflineByVectorType()
{
}

const HalflineByVectorType *HalflineByVectorType::instance()
{
    static const HalflineByVectorType s;
    return &s;
}

ObjectImp *HalflineByVectorType::calc(const Args &args, const KigDocument &) const
{
    if (!margsparser.checkArgs(args))
        return new InvalidImp;

    const VectorImp &a = *static_cast<const VectorImp *>(args[0]);
    const PointImp &b = *static_cast<const PointImp *>(args[1]);

    return new RayImp(b.coordinate(), b.coordinate() + a.dir());
}

const ObjectImpType *HalflineByVectorType::resultId() const
{
    return RayImp::stype();
}