Blame view

Modif/epsilon-master/poincare/src/expression_layout_cursor.cpp 13.1 KB
6663b6c9   adorian   projet complet av...
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
  #include <poincare/expression_layout_cursor.h>
  #include <poincare/expression_layout.h>
  #include <poincare/expression_layout_array.h>
  #include <poincare_layouts.h> //TODO: finer include?
  #include <ion/charset.h>
  #include <assert.h>
  
  namespace Poincare {
  
  static inline KDCoordinate max(KDCoordinate x, KDCoordinate y) { return (x>y ? x : y); }
  
  KDCoordinate ExpressionLayoutCursor::cursorHeight() {
    KDCoordinate height = pointedLayoutHeight();
    return height == 0 ? k_cursorHeight : height;
  }
  
  KDCoordinate ExpressionLayoutCursor::baseline() {
    if (pointedLayoutHeight() == 0) {
      return k_cursorHeight / 2;
    }
    KDCoordinate pointedLayoutBaseline = m_pointedExpressionLayout->baseline();
    ExpressionLayout * equivalentPointedLayout = m_pointedExpressionLayout->equivalentCursor(*this).pointedExpressionLayout();
    if (m_pointedExpressionLayout->hasChild(equivalentPointedLayout)) {
      return equivalentPointedLayout->baseline();
    } else if (m_pointedExpressionLayout->hasSibling(equivalentPointedLayout)) {
      return max(pointedLayoutBaseline, equivalentPointedLayout->baseline());
    }
    return pointedLayoutBaseline;
  }
  
  bool ExpressionLayoutCursor::isEquivalentTo(ExpressionLayoutCursor cursor) {
    assert(isDefined());
    assert(cursor.isDefined());
    return middleLeftPoint() == cursor.middleLeftPoint();
  }
  
  KDPoint ExpressionLayoutCursor::middleLeftPoint() {
    KDPoint layoutOrigin = m_pointedExpressionLayout->absoluteOrigin();
    KDCoordinate x = layoutOrigin.x() + (m_position == Position::Left ? 0 : m_pointedExpressionLayout->size().width());
    KDCoordinate y = layoutOrigin.y() + m_pointedExpressionLayout->baseline() - k_cursorHeight/2;
    return KDPoint(x, y);
  }
  
  ExpressionLayoutCursor ExpressionLayoutCursor::cursorOnLeft(bool * shouldRecomputeLayout) {
    return m_pointedExpressionLayout->cursorLeftOf(*this, shouldRecomputeLayout);
  }
  
  ExpressionLayoutCursor ExpressionLayoutCursor::cursorOnRight(bool * shouldRecomputeLayout) {
    return m_pointedExpressionLayout->cursorRightOf(*this, shouldRecomputeLayout);
  }
  
  ExpressionLayoutCursor ExpressionLayoutCursor::cursorAbove(bool * shouldRecomputeLayout) {
    return m_pointedExpressionLayout->cursorAbove(*this, shouldRecomputeLayout);
  }
  
  ExpressionLayoutCursor ExpressionLayoutCursor::cursorUnder(bool * shouldRecomputeLayout) {
    return m_pointedExpressionLayout->cursorUnder(*this, shouldRecomputeLayout);
  }
  
  void ExpressionLayoutCursor::addLayoutAndMoveCursor(ExpressionLayout * layout) {
    bool layoutWillBeMerged = layout->isHorizontal();
    pointedExpressionLayout()->addSiblingAndMoveCursor(this, layout);
    if (!layoutWillBeMerged) {
      layout->collapseSiblingsAndMoveCursor(this);
    }
  }
  
  void ExpressionLayoutCursor::addEmptyExponentialLayout() {
    CharLayout * child1 = new CharLayout(Ion::Charset::Exponential);
    VerticalOffsetLayout * offsetLayout = new VerticalOffsetLayout(new EmptyLayout(), VerticalOffsetLayout::Type::Superscript, false);
    HorizontalLayout * newChild = new HorizontalLayout(child1, offsetLayout, false);
    pointedExpressionLayout()->addSibling(this, newChild);
    setPointedExpressionLayout(offsetLayout->editableChild(0));
    setPosition(ExpressionLayoutCursor::Position::Right);
  }
  
  void ExpressionLayoutCursor::addFractionLayoutAndCollapseSiblings() {
    // Add a new FractionLayout
    HorizontalLayout * child1 = new HorizontalLayout(new EmptyLayout(), false);
    HorizontalLayout * child2 = new HorizontalLayout(new EmptyLayout(), false);
    FractionLayout * newChild = new FractionLayout(child1, child2, false);
    pointedExpressionLayout()->addSibling(this, newChild);
    newChild->collapseSiblingsAndMoveCursor(this);
  }
  
  void ExpressionLayoutCursor::addEmptyMatrixLayout(int numberOfRows, int numberOfColumns) {
    assert(numberOfRows > 0);
    assert(numberOfColumns > 0);
    ExpressionLayout * children[(numberOfRows+1)*(numberOfColumns+1)];
    for (int i = 0; i < numberOfRows + 1; i++) {
      for (int j = 0; j < numberOfColumns + 1; j++) {
        if (i < numberOfRows && j < numberOfColumns) {
          children[i*(numberOfColumns+1)+j] = new EmptyLayout(EmptyLayout::Color::Yellow);
        } else {
          children[i*(numberOfColumns+1)+j] = new EmptyLayout(EmptyLayout::Color::Grey);
        }
      }
    }
    ExpressionLayout * matrixLayout = new MatrixLayout(const_cast<const ExpressionLayout * const *>(const_cast<ExpressionLayout * const *>(children)), numberOfRows+1, numberOfColumns+1, false);
    m_pointedExpressionLayout->addSibling(this, matrixLayout);
    setPointedExpressionLayout(matrixLayout->editableChild(0));
    setPosition(ExpressionLayoutCursor::Position::Right);
  }
  
  void ExpressionLayoutCursor::addEmptyPowerLayout() {
    VerticalOffsetLayout * offsetLayout = new VerticalOffsetLayout(new EmptyLayout(), VerticalOffsetLayout::Type::Superscript, false);
    // If there is already a base
    if (baseForNewPowerLayout()) {
      m_pointedExpressionLayout->addSibling(this, offsetLayout);
      setPointedExpressionLayout(offsetLayout->editableChild(0));
      setPosition(ExpressionLayoutCursor::Position::Right);
      return;
    }
    // Else, add an empty base
    EmptyLayout * child1 = new EmptyLayout();
    HorizontalLayout * newChild = new HorizontalLayout(child1, offsetLayout, false);
    m_pointedExpressionLayout->addSibling(this, newChild);
    setPointedExpressionLayout(child1);
    setPosition(ExpressionLayoutCursor::Position::Right);
  }
  
  void ExpressionLayoutCursor::addEmptySquareRootLayout() {
    HorizontalLayout * child1 = new HorizontalLayout(new EmptyLayout(), false);
    NthRootLayout * newChild = new NthRootLayout(child1, false);
    m_pointedExpressionLayout->addSibling(this, newChild);
    newChild->collapseSiblingsAndMoveCursor(this);
  }
  
  void ExpressionLayoutCursor::addEmptySquarePowerLayout() {
    CharLayout * indiceLayout = new CharLayout('2');
    VerticalOffsetLayout * offsetLayout = new VerticalOffsetLayout(indiceLayout, VerticalOffsetLayout::Type::Superscript, false);
    // If there is already a base
    if (baseForNewPowerLayout()) {
      m_pointedExpressionLayout->addSibling(this, offsetLayout);
      setPointedExpressionLayout(offsetLayout);
      setPosition(ExpressionLayoutCursor::Position::Right);
      return;
    }
    // Else, add an empty base
    EmptyLayout * child1 = new EmptyLayout();
    HorizontalLayout * newChild = new HorizontalLayout(child1, offsetLayout, false);
    m_pointedExpressionLayout->addSibling(this, newChild);
    setPointedExpressionLayout(child1);
    setPosition(ExpressionLayoutCursor::Position::Right);
  }
  
  void ExpressionLayoutCursor::addEmptyTenPowerLayout() {
    HorizontalLayout * newSibling = new HorizontalLayout();
    EmptyLayout * powerLayout = new EmptyLayout();
    ExpressionLayout * childLayouts[] = {
      new CharLayout(Ion::Charset::MiddleDot),
      new CharLayout('1'),
      new CharLayout('0'),
      new VerticalOffsetLayout(powerLayout, VerticalOffsetLayout::Type::Superscript, false)};
    newSibling->addChildrenAtIndex(childLayouts, 4, 0, false);
    m_pointedExpressionLayout->addSibling(this, newSibling);
    setPointedExpressionLayout(powerLayout);
    setPosition(ExpressionLayoutCursor::Position::Right);
  }
  
  void ExpressionLayoutCursor::addXNTCharLayout() {
    CharLayout * newChild = new CharLayout(m_pointedExpressionLayout->XNTChar());
    m_pointedExpressionLayout->addSibling(this, newChild);
    setPointedExpressionLayout(newChild);
    setPosition(ExpressionLayoutCursor::Position::Right);
  }
  
  void ExpressionLayoutCursor::insertText(const char * text) {
    int textLength = strlen(text);
    if (textLength <= 0) {
      return;
    }
    ExpressionLayout * newChild = nullptr;
    ExpressionLayout * pointedChild = nullptr;
    bool specialUnderScore = false;
    for (int i = 0; i < textLength; i++) {
      if (text[i] == Ion::Charset::Empty) {
        continue;
      }
      if (text[i] == Ion::Charset::MultiplicationSign) {
        newChild = new CharLayout(Ion::Charset::MiddleDot);
      } else if (text[i] == '(') {
        newChild = new LeftParenthesisLayout();
        if (pointedChild == nullptr) {
          pointedChild = newChild;
        }
      } else if (text[i] == ')') {
        newChild = new RightParenthesisLayout();
      } else if (text[i] == '_') {
        specialUnderScore = ((i < textLength) && (text[i+1] == '{')) ? true : false;
        if (!specialUnderScore) {
           newChild = new CharLayout('_');
        } else {
          continue;
        }
      } else if (text[i] == '{' && specialUnderScore) {
        newChild = new CharLayout('(');
      } else if (text[i] == '}' && specialUnderScore) {
        newChild = new CharLayout(')');
        specialUnderScore = false;
      }
      /* We never insert text with brackets for now. Removing this code saves the
       * binary file 2K. */
  #if 0
      else if (text[i] == '[') {
        newChild = new LeftSquareBracketLayout();
      } else if (text[i] == ']') {
        newChild = new RightSquareBracketLayout();
      }
  #endif
      else {
        newChild = new CharLayout(text[i]);
      }
      m_pointedExpressionLayout->addSibling(this, newChild);
      m_pointedExpressionLayout = newChild;
      m_position = Position::Right;
    }
    if (pointedChild != nullptr) {
      m_pointedExpressionLayout = pointedChild;
    }
  }
  
  void ExpressionLayoutCursor::performBackspace() {
    m_pointedExpressionLayout->deleteBeforeCursor(this);
  }
  
  bool ExpressionLayoutCursor::showEmptyLayoutIfNeeded() {
    return privateShowHideEmptyLayoutIfNeeded(true);
  }
  
  bool ExpressionLayoutCursor::hideEmptyLayoutIfNeeded() {
    return privateShowHideEmptyLayoutIfNeeded(false);
  }
  
  void ExpressionLayoutCursor::clearLayout() {
    ExpressionLayout * rootLayout = m_pointedExpressionLayout->editableRoot();
    assert(rootLayout->isHorizontal());
    static_cast<HorizontalLayout *>(rootLayout)->removeAndDeleteChildren();
    m_pointedExpressionLayout = rootLayout;
  }
  
  bool ExpressionLayoutCursor::privateShowHideEmptyLayoutIfNeeded(bool show) {
    /* Find Empty layouts adjacent to the cursor: Check the pointed layout and the
     * equivalent cursor positions */
  
    ExpressionLayout * adjacentEmptyLayout = nullptr;
    // Check the pointed layout
    if (m_pointedExpressionLayout->isEmpty()) {
      adjacentEmptyLayout = m_pointedExpressionLayout;
    } else {
      // Check the equivalent cursor position
      ExpressionLayout * equivalentPointedLayout = m_pointedExpressionLayout->equivalentCursor(*this).pointedExpressionLayout();
      if (equivalentPointedLayout != nullptr && equivalentPointedLayout->isEmpty()) {
        adjacentEmptyLayout = equivalentPointedLayout;
      }
    }
  
    if (adjacentEmptyLayout == nullptr) {
      return false;
    }
    /* An EmptyLayout or HorizontalLayout with one child only, and this child is
     * an EmptyLayout. */
    if (adjacentEmptyLayout->isHorizontal()) {
      static_cast<EmptyLayout *>(adjacentEmptyLayout->editableChild(0))->setVisible(show);
    } else {
      static_cast<EmptyLayout *>(adjacentEmptyLayout)->setVisible(show);
    }
    return true;
  }
  
  bool ExpressionLayoutCursor::baseForNewPowerLayout() {
    /* Returns true if the layout on the left of the pointed layout is suitable to
     * be the base of a new power layout: the base layout should be anything but
     * an horizontal layout with no child. */
    if (m_position == Position::Right) {
      if (m_pointedExpressionLayout->isHorizontal() && m_pointedExpressionLayout->numberOfChildren() == 0) {
        return false;
      } else {
        return true;
      }
    } else {
      assert(m_position == Position::Left);
      if (m_pointedExpressionLayout->isHorizontal()) {
        return false;
      }
      if (m_pointedExpressionLayout->isEmpty()) {
        /* If the cursor is on the right of an EmptyLayout, move it to its right,
         * make sure it is yellow, and this EmptyLayout will be the base of the
         * new power layout. */
        m_position = Position::Right;
        if (static_cast<EmptyLayout *>(m_pointedExpressionLayout)->color() == EmptyLayout::Color::Grey) {
          static_cast<EmptyLayout *>(m_pointedExpressionLayout)->setColor(EmptyLayout::Color::Yellow);
          int indexInParent = m_pointedExpressionLayout->parent()->indexOfChild(m_pointedExpressionLayout);
          assert(indexInParent >= 0);
          static_cast<MatrixLayout *>(m_pointedExpressionLayout->editableParent())->newRowOrColumnAtIndex(indexInParent);
        }
        return true;
      }
      ExpressionLayoutCursor equivalentLayoutCursor = m_pointedExpressionLayout->equivalentCursor(*this);
      if (equivalentLayoutCursor.pointedExpressionLayout() == nullptr
          || ( equivalentLayoutCursor.pointedExpressionLayout()->isHorizontal()
            && equivalentLayoutCursor.position() == Position::Left))
      {
        return false;
      }
      return true;
    }
  }
  
  KDCoordinate ExpressionLayoutCursor::pointedLayoutHeight() {
    ExpressionLayout * equivalentPointedLayout = m_pointedExpressionLayout->equivalentCursor(*this).pointedExpressionLayout();
    if (m_pointedExpressionLayout->hasChild(equivalentPointedLayout)) {
      return equivalentPointedLayout->size().height();
    }
    KDCoordinate pointedLayoutHeight = m_pointedExpressionLayout->size().height();
    if (m_pointedExpressionLayout->hasSibling(equivalentPointedLayout)) {
      KDCoordinate equivalentLayoutHeight = equivalentPointedLayout->size().height();
      KDCoordinate pointedLayoutBaseline = m_pointedExpressionLayout->baseline();
      KDCoordinate equivalentLayoutBaseline = equivalentPointedLayout->baseline();
      return max(pointedLayoutBaseline, equivalentLayoutBaseline)
        + max(pointedLayoutHeight - pointedLayoutBaseline, equivalentLayoutHeight - equivalentLayoutBaseline);
    }
    return pointedLayoutHeight;
  }
  
  }