aboutsummaryrefslogtreecommitdiff
path: root/dw/textblock_iterator.cc
blob: 6cc8c81bc74a65dda6cc700cde6cd131ddb9800c (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
/*
 * Dillo Widget
 *
 * Copyright 2005-2007, 2012-2013 Sebastian Geerken <sgeerken@dillo.org>
 *
 * (Parts of this file were originally part of textblock.cc.)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "textblock.hh"
#include "../lout/msg.h"
#include "../lout/misc.hh"

#include <stdio.h>
#include <math.h>

using namespace lout;

namespace dw {

Textblock::TextblockIterator::TextblockIterator (Textblock *textblock,
                                                 core::Content::Type mask,
                                                 bool atEnd):
   core::Iterator (textblock, mask, atEnd)
{
   if (atEnd) {
      if (textblock->outOfFlowMgr) {
         oofm = true;
         index = textblock->outOfFlowMgr->getNumWidgets();
      } else {
         oofm = false;
         index = textblock->words->size();
      }
   } else {
      oofm = false;
      index = -1;
   }

   content.type = atEnd ? core::Content::END : core::Content::START;
}

Textblock::TextblockIterator::TextblockIterator (Textblock *textblock,
                                                 core::Content::Type mask,
                                                 bool oofm, int index):
   core::Iterator (textblock, mask, false)
{
   this->oofm = oofm;
   this->index = index;

   // TODO To be completely exact, oofm should be considered here.
   if (index < 0)
      content.type = core::Content::START;
   else if (index >= textblock->words->size())
      content.type = core::Content::END;
   else
      content = textblock->words->getRef(index)->content;
}

object::Object *Textblock::TextblockIterator::clone()
{
   return
      new TextblockIterator ((Textblock*)getWidget(), getMask(), oofm, index);
}

int Textblock::TextblockIterator::compareTo(object::Comparable *other)
{
   TextblockIterator *otherTI = (TextblockIterator*)other;

   if (oofm && !otherTI->oofm)
      return +1;
   else if (!oofm && otherTI->oofm)
      return -1;
   else
      return index - otherTI->index;
}

bool Textblock::TextblockIterator::next ()
{
   Textblock *textblock = (Textblock*)getWidget();

   if (content.type == core::Content::END)
      return false;

   short type;

   do {
      index++;

      if (oofm) {
         // Iterating over OOFM.
         if (index >= textblock->outOfFlowMgr->getNumWidgets()) {
            // End of OOFM list reached.
            content.type = core::Content::END;
            return false;
         }
         type = core::Content::WIDGET_OOF_CONT;
      } else {
         // Iterating over words list.
         if (index < textblock->words->size ())
            // Still words left.
            type = textblock->words->getRef(index)->content.type;
         else {
            // End of words list reached.
            if (textblock->outOfFlowMgr) {
               oofm = true;
               index = 0;
               if (textblock->outOfFlowMgr->getNumWidgets() > 0)
                  // Start with OOFM widgets.
                  type = core::Content::WIDGET_OOF_CONT;
               else {
                  // No OOFM widgets (number is 0).
                  content.type = core::Content::END;
                  return false;
               }
            } else {
               // No OOFM widgets (no OOFM agt all).
               content.type = core::Content::END;
               return false;
            }
         }
      }
   } while ((type & getMask()) == 0);

   if (oofm) {
      content.type = core::Content::WIDGET_OOF_CONT;
      content.widget = textblock->outOfFlowMgr->getWidget (index);
   } else
      content = textblock->words->getRef(index)->content;

   return true;
}

bool Textblock::TextblockIterator::prev ()
{
   Textblock *textblock = (Textblock*)getWidget();

   if (content.type == core::Content::START)
      return false;

   short type;

   do {
      index--;

      if (oofm) {
         // Iterating over OOFM.
         if (index >= 0)
            // Still widgets left.
            type = core::Content::WIDGET_OOF_CONT;
         else {
            // Beginning of OOFM list reached. Continue with words.
            oofm = false;
            index = textblock->words->size() - 1;
            if (index < 0) {
               // There are no words. (Actually, this case should not
               // happen: When there are OOF widgets, ther must be OOF
               // references, or widgets in flow, which contain
               // references.
               content.type = core::Content::END;
               return false;
            }
            type = textblock->words->getRef(index)->content.type;
         }
      } else {
         // Iterating over words list.
         if (index < 0) {
            // Beginning of words list reached.
            content.type = core::Content::START;
            return false;
         }
         type = textblock->words->getRef(index)->content.type;
      }
   } while ((type & getMask()) == 0);

   if (oofm) {
      content.type = core::Content::WIDGET_OOF_CONT;
      content.type = false;
      content.widget = textblock->outOfFlowMgr->getWidget (index);
   } else
      content = textblock->words->getRef(index)->content;

   return true;
}

void Textblock::TextblockIterator::highlight (int start, int end,
                                              core::HighlightLayer layer)
{
   if (!oofm) {
      Textblock *textblock = (Textblock*)getWidget();
      int index1 = index, index2 = index;

      int oldStartIndex = textblock->hlStart[layer].index;
      int oldStartChar = textblock->hlStart[layer].nChar;
      int oldEndIndex = textblock->hlEnd[layer].index;
      int oldEndChar = textblock->hlEnd[layer].nChar;

      if (textblock->hlStart[layer].index > textblock->hlEnd[layer].index) {
         /* nothing is highlighted */
         textblock->hlStart[layer].index = index;
         textblock->hlEnd[layer].index = index;
      }

      if (textblock->hlStart[layer].index >= index) {
         index2 = textblock->hlStart[layer].index;
         textblock->hlStart[layer].index = index;
         textblock->hlStart[layer].nChar = start;
      }

      if (textblock->hlEnd[layer].index <= index) {
         index2 = textblock->hlEnd[layer].index;
         textblock->hlEnd[layer].index = index;
         textblock->hlEnd[layer].nChar = end;
      }

      if (oldStartIndex != textblock->hlStart[layer].index ||
          oldStartChar != textblock->hlStart[layer].nChar ||
          oldEndIndex != textblock->hlEnd[layer].index ||
          oldEndChar != textblock->hlEnd[layer].nChar)
         textblock->queueDrawRange (index1, index2);
   }

   // TODO What about OOF widgets?
}

void Textblock::TextblockIterator::unhighlight (int direction,
                                                core::HighlightLayer layer)
{
   if (!oofm) {
      Textblock *textblock = (Textblock*)getWidget();
      int index1 = index, index2 = index;

      if (textblock->hlStart[layer].index > textblock->hlEnd[layer].index)
         return;

      int oldStartIndex = textblock->hlStart[layer].index;
      int oldStartChar = textblock->hlStart[layer].nChar;
      int oldEndIndex = textblock->hlEnd[layer].index;
      int oldEndChar = textblock->hlEnd[layer].nChar;

      if (direction == 0) {
         index1 = textblock->hlStart[layer].index;
         index2 = textblock->hlEnd[layer].index;
         textblock->hlStart[layer].index = 1;
         textblock->hlEnd[layer].index = 0;
      } else if (direction > 0 && textblock->hlStart[layer].index <= index) {
         index1 = textblock->hlStart[layer].index;
         textblock->hlStart[layer].index = index + 1;
         textblock->hlStart[layer].nChar = 0;
      } else if (direction < 0 && textblock->hlEnd[layer].index >= index) {
         index1 = textblock->hlEnd[layer].index;
         textblock->hlEnd[layer].index = index - 1;
         textblock->hlEnd[layer].nChar = INT_MAX;
      }

      if (oldStartIndex != textblock->hlStart[layer].index ||
          oldStartChar != textblock->hlStart[layer].nChar ||
          oldEndIndex != textblock->hlEnd[layer].index ||
          oldEndChar != textblock->hlEnd[layer].nChar)
         textblock->queueDrawRange (index1, index2);
   }

   // TODO What about OOF widgets?
}

void Textblock::TextblockIterator::getAllocation (int start, int end,
                                                  core::Allocation *allocation)
{
   Textblock *textblock = (Textblock*)getWidget();

   if (oofm) {
      // TODO Consider start and end?
      *allocation =
         *(textblock->outOfFlowMgr->getWidget(index)->getAllocation());
   } else {
      int lineIndex = textblock->findLineOfWord (index);
      Line *line = textblock->lines->getRef (lineIndex);
      Word *word = textblock->words->getRef (index);

      allocation->x =
         textblock->allocation.x + line->textOffset;

      for (int i = line->firstWord; i < index; i++) {
         Word *w = textblock->words->getRef(i);
         allocation->x += w->size.width + w->effSpace;
      }
      if (start > 0 && word->content.type == core::Content::TEXT) {
         allocation->x += textblock->textWidth (word->content.text, 0, start,
                                                word->style,
                                                word->flags & Word::WORD_START,
                                                (word->flags & Word::WORD_END)
                                                && word->content.text[start]
                                                == 0);
      }
      allocation->y = textblock->lineYOffsetCanvas (line) + line->borderAscent -
         word->size.ascent;

      allocation->width = word->size.width;
      if (word->content.type == core::Content::TEXT) {
         int wordEnd = strlen(word->content.text);

         if (start > 0 || end < wordEnd) {
            end = misc::min(end, wordEnd); /* end could be INT_MAX */
            allocation->width =
               textblock->textWidth (word->content.text, start, end - start,
                                     word->style,
                                     (word->flags & Word::WORD_START)
                                     && start == 0,
                                     (word->flags & Word::WORD_END)
                                     && word->content.text[end] == 0);
         }
      }
      allocation->ascent = word->size.ascent;
      allocation->descent = word->size.descent;
   }
}

void Textblock::TextblockIterator::print ()
{
   Iterator::print ();
   printf (", oofm = %s, index = %d", oofm ? "true" : "false", index);

}

} // namespace dw