aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmldesigner/designercore/model/nodeanchors.cpp
blob: f80e8eabc1836cf2f110c5fcd6c88b9dba4c91c0 (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
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
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** No Commercial Usage
**
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file.  Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights.  These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
**
**************************************************************************/

//#include "nodeanchors.h"
//
//#include <model.h>
//#include <modelnode.h>
//
//#include "internalnode_p.h"
//#include "internalnodeanchors.h"
//#include "internalnodestate.h"
//#include "invalidargumentexception.h"
//
//using namespace QmlDesigner::Internal;
//
//namespace QmlDesigner {
//
///*!
//\class QmlDesigner::NodeAnchors
//\ingroup CoreModel
//\brief NodeAnchors is a value holder for an anchor
//*/
//
//NodeAnchors::NodeAnchors(const NodeState &nodeState):
//        m_internalNode(nodeState.m_internalNode),
//        m_internalNodeState(nodeState.m_internalNodeState),
//        m_model(nodeState.m_model)
//{
//}
//
//NodeAnchors::~NodeAnchors()
//{
//}
//
//NodeAnchors::NodeAnchors(const NodeAnchors &other)
//    :m_internalNode(other.m_internalNode),
//    m_model(other.m_model)
//{
//
//}
//
//NodeAnchors::NodeAnchors(const Internal::InternalNodeStatePointer &internalNodeState, Model *model):
//        m_internalNode(internalNodeState->modelNode()),
//        m_internalNodeState(internalNodeState),
//        m_model(model)
//{
//}
//
//NodeAnchors &NodeAnchors::operator=(const NodeAnchors &other)
//{
//    m_internalNode = other.m_internalNode;
//    m_internalNodeState = other.m_internalNodeState;
//    m_model = other.m_model;
//
//    return *this;
//}
//
//ModelNode NodeAnchors::modelNode() const
//{
//    return ModelNode(m_internalNode, m_model.data());
//}
//
//bool NodeAnchors::isValid() const
//{
//    return m_internalNode->isValid()
//            && m_internalNodeState->isValid() &&
//            m_model;
//}
//
//NodeState NodeAnchors::nodeState() const
//{
//    return NodeState(m_internalNodeState, m_internalNode, m_model.data());
//}
//
//void NodeAnchors::setAnchor(AnchorLine::Type sourceAnchorLineType,
//                const ModelNode &targetModelNode,
//                AnchorLine::Type targetAnchorLineType)
//{
//    Q_ASSERT(m_internalNode->isValid());
//    Q_ASSERT(m_internalNodeState->isValid());
//    Q_ASSERT(modelNode().isValid());
//
//    m_model->setAnchor(AnchorLine(nodeState(), sourceAnchorLineType),
//                       AnchorLine(targetModelNode.baseNodeState(), targetAnchorLineType));
//}
//
//bool NodeAnchors::canAnchor(AnchorLine::Type sourceAnchorLineType,
//                            const ModelNode & targetModelNode,
//                            AnchorLine::Type targetAnchorLineType) const
//{
//    if (modelNode() == targetModelNode)
//        return false;
//
//    return InternalNodeAnchors(m_internalNodeState).canAnchor(sourceAnchorLineType, targetModelNode.baseNodeState().internalNodeState(), targetAnchorLineType);
//}
//
//bool NodeAnchors::canAnchor(const ModelNode & targetModelNode) const
//{
//    if (modelNode() == targetModelNode)
//        return false;
//
//    if (possibleAnchorLines(AnchorLine::Left, targetModelNode) != AnchorLine::NoAnchor)
//        return true;
//    else if (possibleAnchorLines(AnchorLine::Top, targetModelNode) != AnchorLine::NoAnchor)
//        return true;
//    else if (possibleAnchorLines(AnchorLine::Right, targetModelNode) != AnchorLine::NoAnchor)
//        return true;
//    else if (possibleAnchorLines(AnchorLine::Bottom, targetModelNode) != AnchorLine::NoAnchor)
//        return true;
//    else if (possibleAnchorLines(AnchorLine::HorizontalCenter, targetModelNode) != AnchorLine::NoAnchor)
//        return true;
//    else
//        return possibleAnchorLines(AnchorLine::VerticalCenter, targetModelNode) != AnchorLine::NoAnchor;
//}
//
//AnchorLine::Type NodeAnchors::possibleAnchorLines(AnchorLine::Type sourceAnchorLineType,
//                                                  const ModelNode & targetModelNode) const
//{
//    if (modelNode() == targetModelNode)
//        return AnchorLine::NoAnchor;
//
//    int anchorTypes = AnchorLine::NoAnchor;
//    const InternalNodeAnchors anchors(m_internalNodeState);
//
//    if (sourceAnchorLineType & AnchorLine::HorizontalMask) {
//        if (anchors.canAnchor(sourceAnchorLineType, targetModelNode.baseNodeState().internalNodeState(), AnchorLine::Left))
//            anchorTypes |= AnchorLine::Left;
//        if (anchors.canAnchor(sourceAnchorLineType, targetModelNode.baseNodeState().internalNodeState(), AnchorLine::Right))
//            anchorTypes |= AnchorLine::Right;
//        if (anchors.canAnchor(sourceAnchorLineType, targetModelNode.baseNodeState().internalNodeState(), AnchorLine::HorizontalCenter))
//            anchorTypes |= AnchorLine::HorizontalCenter;
//    } else if (sourceAnchorLineType & AnchorLine::VerticalMask) {
//        if (anchors.canAnchor(sourceAnchorLineType, targetModelNode.baseNodeState().internalNodeState(), AnchorLine::Top))
//            anchorTypes |= AnchorLine::Top;
//        if (anchors.canAnchor(sourceAnchorLineType, targetModelNode.baseNodeState().internalNodeState(), AnchorLine::Bottom))
//            anchorTypes |= AnchorLine::Bottom;
//        if (anchors.canAnchor(sourceAnchorLineType, targetModelNode.baseNodeState().internalNodeState(), AnchorLine::VerticalCenter))
//            anchorTypes |= AnchorLine::VerticalCenter;
//    }
//
//    return (AnchorLine::Type) anchorTypes;
//}
//
//AnchorLine NodeAnchors::localAnchor(AnchorLine::Type anchorLineType) const
//{
//    return InternalNodeAnchors(m_internalNodeState).anchor(anchorLineType);
//}
//
//AnchorLine NodeAnchors::anchor(AnchorLine::Type anchorLineType) const
//{
//    Internal::InternalNodeState::Pointer statePointer(m_internalNodeState);
//    AnchorLine anchorLine = InternalNodeAnchors(statePointer).anchor(anchorLineType);
//
//    while (!anchorLine.isValid() && statePointer->hasParentState()) {
//        statePointer = statePointer->parentState();
//        anchorLine = InternalNodeAnchors(statePointer).anchor(anchorLineType);
//    }
//
//    return anchorLine;
//}
//
//bool NodeAnchors::hasAnchor(AnchorLine::Type sourceAnchorLineType) const
//{
//    Internal::InternalNodeState::Pointer statePointer(m_internalNodeState);
//    InternalNodeAnchors internalNodeAnchors(statePointer);
//    while (!internalNodeAnchors.hasAnchor(sourceAnchorLineType) &&
//          statePointer->hasParentState()) {
//        statePointer = statePointer->parentState();
//        internalNodeAnchors = InternalNodeAnchors(statePointer);
//    }
//
//    return internalNodeAnchors.hasAnchor(sourceAnchorLineType);
//}
//
//void NodeAnchors::removeAnchor(AnchorLine::Type sourceAnchorLineType)
//{
//    if (hasLocalAnchor(sourceAnchorLineType))
//        m_model->removeAnchor(AnchorLine(nodeState(), sourceAnchorLineType));
//}
//
//void NodeAnchors::removeMargins()
//{
//    removeMargin(AnchorLine::Left);
//    removeMargin(AnchorLine::Right);
//    removeMargin(AnchorLine::Top);
//    removeMargin(AnchorLine::Bottom);
//    removeMargin(AnchorLine::HorizontalCenter);
//    removeMargin(AnchorLine::VerticalCenter);
//    removeMargin(AnchorLine::Baseline);
//}
//
//void NodeAnchors::removeAnchors()
//{
//    removeAnchor(AnchorLine::Left);
//    removeAnchor(AnchorLine::Right);
//    removeAnchor(AnchorLine::Top);
//    removeAnchor(AnchorLine::Bottom);
//    removeAnchor(AnchorLine::HorizontalCenter);
//    removeAnchor(AnchorLine::VerticalCenter);
//    removeAnchor(AnchorLine::Baseline);
//}
//
//bool NodeAnchors::hasLocalAnchor(AnchorLine::Type sourceAnchorLineType) const
//{
//    return InternalNodeAnchors(m_internalNodeState).hasAnchor(sourceAnchorLineType);
//}
//
//bool NodeAnchors::hasLocalAnchors() const
//{
//    return hasLocalAnchor(AnchorLine::Top) ||
//           hasLocalAnchor(AnchorLine::Bottom) ||
//           hasLocalAnchor(AnchorLine::Left) ||
//           hasLocalAnchor(AnchorLine::Right) ||
//           hasLocalAnchor(AnchorLine::VerticalCenter) ||
//           hasLocalAnchor(AnchorLine::HorizontalCenter) ||
//           hasLocalAnchor(AnchorLine::Baseline);
//}
//
//bool NodeAnchors::hasAnchors() const
//{
//    return hasAnchor(AnchorLine::Top) ||
//           hasAnchor(AnchorLine::Bottom) ||
//           hasAnchor(AnchorLine::Left) ||
//           hasAnchor(AnchorLine::Right) ||
//           hasAnchor(AnchorLine::VerticalCenter) ||
//           hasAnchor(AnchorLine::HorizontalCenter) ||
//           hasAnchor(AnchorLine::Baseline);
//}
//
//void NodeAnchors::setMargin(AnchorLine::Type sourceAnchorLineType, double margin) const
//{
//    m_model->setAnchorMargin(AnchorLine(nodeState(), sourceAnchorLineType), margin);
//}
//
//bool NodeAnchors::hasMargin(AnchorLine::Type sourceAnchorLineType) const
//{
//    return InternalNodeAnchors(m_internalNodeState).hasMargin(sourceAnchorLineType);
//}
//
//double NodeAnchors::localMargin(AnchorLine::Type sourceAnchorLineType) const
//{
//    return InternalNodeAnchors(m_internalNodeState).margin(sourceAnchorLineType);
//}
//
//double NodeAnchors::margin(AnchorLine::Type sourceAnchorLineType) const
//{
//    Internal::InternalNodeState::Pointer statePointer(m_internalNodeState);
//    InternalNodeAnchors internalNodeAnchors(statePointer);
//    while (!internalNodeAnchors.hasMargin(sourceAnchorLineType) &&
//          statePointer->hasParentState()) {
//        statePointer = statePointer->parentState();
//        internalNodeAnchors = InternalNodeAnchors(statePointer);
//    }
//
//    return internalNodeAnchors.margin(sourceAnchorLineType);
//}
//
//void NodeAnchors::removeMargin(AnchorLine::Type sourceAnchorLineType)
//{
//    m_model->removeAnchorMargin(AnchorLine(nodeState(), sourceAnchorLineType));
//
//}
//
//QDebug operator<<(QDebug debug, const NodeAnchors &anchors)
//{
//    debug.nospace() << "NodeAnchors(";
//    if (anchors.isValid()) {
//        if (anchors.hasAnchor(AnchorLine::Top))
//            debug << "top";
//        if (anchors.hasMargin(AnchorLine::Top))
//            debug.nospace() << "(" << anchors.margin(AnchorLine::Top) << ")";
//        if (anchors.hasAnchor(AnchorLine::Bottom))
//            debug << "bottom";
//        if (anchors.hasMargin(AnchorLine::Bottom))
//            debug.nospace() << "(" << anchors.margin(AnchorLine::Bottom) << ")";
//        if (anchors.hasAnchor(AnchorLine::Left))
//            debug << "left";
//        if (anchors.hasMargin(AnchorLine::Left))
//            debug.nospace() << "(" << anchors.margin(AnchorLine::Left) << ")";
//        if (anchors.hasAnchor(AnchorLine::Right))
//            debug << "right";
//        if (anchors.hasMargin(AnchorLine::Right))
//            debug.nospace() << "(" << anchors.margin(AnchorLine::Right) << ")";
//        if (anchors.hasAnchor(AnchorLine::VerticalCenter))
//            debug << "verticalCenter";
//        if (anchors.hasMargin(AnchorLine::VerticalCenter))
//            debug.nospace() << "(" << anchors.margin(AnchorLine::VerticalCenter) << ")";
//        if (anchors.hasAnchor(AnchorLine::HorizontalCenter))
//            debug << "horizontalCenter";
//        if (anchors.hasMargin(AnchorLine::HorizontalCenter))
//            debug.nospace() << "(" << anchors.margin(AnchorLine::HorizontalCenter) << ")";
//        if (anchors.hasAnchor(AnchorLine::Baseline))
//            debug << "baseline";
//        if (anchors.hasMargin(AnchorLine::Baseline))
//            debug.nospace() << "(" << anchors.margin(AnchorLine::Baseline) << ")";
//    } else {
//        debug.nospace() << "invalid";
//    }
//
//    debug.nospace() << ")";
//
//    return debug.space();
//}
//
//QTextStream& operator<<(QTextStream &stream, const NodeAnchors &anchors)
//{
//    stream << "NodeAnchors(";
//    if (anchors.isValid()) {
//        if (anchors.hasAnchor(AnchorLine::Top))
//            stream << "top";
//        if (anchors.hasMargin(AnchorLine::Top))
//            stream << "(" << anchors.margin(AnchorLine::Top) << ")";
//        if (anchors.hasAnchor(AnchorLine::Bottom))
//            stream << "bottom";
//        if (anchors.hasMargin(AnchorLine::Bottom))
//            stream << "(" << anchors.margin(AnchorLine::Bottom) << ")";
//        if (anchors.hasAnchor(AnchorLine::Left))
//            stream << "left";
//        if (anchors.hasMargin(AnchorLine::Left))
//            stream << "(" << anchors.margin(AnchorLine::Left) << ")";
//        if (anchors.hasAnchor(AnchorLine::Right))
//            stream << "right";
//        if (anchors.hasMargin(AnchorLine::Right))
//            stream << "(" << anchors.margin(AnchorLine::Right) << ")";
//        if (anchors.hasAnchor(AnchorLine::VerticalCenter))
//            stream << "verticalCenter";
//        if (anchors.hasMargin(AnchorLine::VerticalCenter))
//            stream << "(" << anchors.margin(AnchorLine::VerticalCenter) << ")";
//        if (anchors.hasAnchor(AnchorLine::HorizontalCenter))
//            stream << "horizontalCenter";
//        if (anchors.hasMargin(AnchorLine::HorizontalCenter))
//            stream << "(" << anchors.margin(AnchorLine::HorizontalCenter) << ")";
//        if (anchors.hasAnchor(AnchorLine::Baseline))
//            stream << "baseline";
//        if (anchors.hasMargin(AnchorLine::Baseline))
//            stream << "(" << anchors.margin(AnchorLine::Baseline) << ")";
//    } else {
//        stream << "invalid";
//    }
//
//    stream << ")";
//
//    return stream;
//}
//
//
//} // namespace QmlDesigner