]> git.lyx.org Git - lyx.git/blob - src/mathed/math_gridinset.C
Tweaking of the math panel dialogs from Martin...
[lyx.git] / src / mathed / math_gridinset.C
1 #ifdef __GNUG__
2 #pragma implementation
3 #endif
4
5 #include "math_gridinset.h"
6 #include "math_mathmlstream.h"
7 #include "math_streamstr.h"
8 #include "lyxfont.h"
9 #include "Painter.h"
10 #include "debug.h"
11
12
13 using std::swap;
14 using std::max;
15 using std::min;
16 using std::vector;
17
18
19 namespace {
20
21 string verboseHLine(int n)
22 {
23         string res;
24         for (int i = 0; i < n; ++i)
25                 res += "\\hline";
26         return res + ' ';
27 }
28
29 }
30
31
32 ////////////////////////////////////////////////////////////// 
33
34
35 MathGridInset::RowInfo::RowInfo()
36         : lines_(0), skip_(0)
37 {}
38
39
40
41 int MathGridInset::RowInfo::skipPixels() const
42 {
43 #ifdef WITH_WARNINGS
44 #warning fix this once the interface to LyXLength has improved
45 #endif
46         return int(crskip_.value());
47 }
48
49
50
51 ////////////////////////////////////////////////////////////// 
52
53
54 MathGridInset::ColInfo::ColInfo()
55         : align_('c'), leftline_(false), rightline_(false), lines_(0)
56 {}
57
58
59 ////////////////////////////////////////////////////////////// 
60
61
62 MathGridInset::MathGridInset(char v, string const & h)
63         : MathNestInset(guessColumns(h)), rowinfo_(2), colinfo_(guessColumns(h) + 1)
64 {
65         setDefaults();
66         valign(v);
67         halign(h);
68 }
69
70
71 MathGridInset::MathGridInset(col_type m, row_type n)
72         : MathNestInset(m * n), rowinfo_(n + 1), colinfo_(m + 1), v_align_('c')
73 {
74         setDefaults();
75 }
76
77
78 MathGridInset::MathGridInset(col_type m, row_type n, char v, string const & h)
79         : MathNestInset(m * n), rowinfo_(n + 1), colinfo_(m + 1), v_align_(v)
80 {
81         setDefaults();
82         valign(v);
83         halign(h);
84 }
85
86
87 MathInset * MathGridInset::clone() const
88 {
89         return new MathGridInset(*this);
90 }
91
92
93 MathInset::idx_type MathGridInset::index(row_type row, col_type col) const
94 {
95         return col + ncols() * row;
96 }
97
98
99 void MathGridInset::setDefaults()
100 {
101         if (ncols() <= 0)
102                 lyxerr << "positive number of columns expected\n";
103         if (nrows() <= 0)
104                 lyxerr << "positive number of rows expected\n";
105         for (col_type col = 0; col < ncols(); ++col) {
106                 colinfo_[col].align_ = defaultColAlign(col);
107                 colinfo_[col].skip_  = defaultColSpace(col);
108         }
109 }
110
111
112 void MathGridInset::halign(string const & hh)
113 {
114         col_type col = 0;
115         for (string::const_iterator it = hh.begin(); it != hh.end(); ++it) {
116                 char c = *it;
117                 if (c == '|') {
118                         colinfo_[col].lines_++;
119                 } else if (c == 'c' || c == 'l' || c == 'r') {
120                         colinfo_[col].align_ = c;
121                         ++col;
122                         colinfo_[col].lines_ = 0;
123                 } else {
124                         lyxerr << "unkown column separator: '" << c << "'\n";
125                 }
126         }
127                         
128 /*
129         col_type n = hh.size();
130         if (n > ncols())
131                 n = ncols();
132         for (col_type col = 0; col < n; ++col)
133                 colinfo_[col].align_ = hh[col];
134 */
135 }
136
137
138 MathGridInset::col_type MathGridInset::guessColumns(string const & hh) const
139 {
140         col_type col = 0;
141         for (string::const_iterator it = hh.begin(); it != hh.end(); ++it)
142                 if (*it == 'c' || *it == 'l' || *it == 'r')
143                         ++col;
144         return col;
145 }
146
147
148 void MathGridInset::halign(char h, col_type col)
149 {
150         colinfo_[col].align_ = h;
151 }
152
153
154 char MathGridInset::halign(col_type col) const
155 {
156         return colinfo_[col].align_;
157 }
158
159
160 string MathGridInset::halign() const
161 {
162         string res;
163         for (col_type col = 0; col < ncols(); ++col) {
164                 res += string(colinfo_[col].lines_, '|');
165                 res += colinfo_[col].align_;
166         } 
167         return res + string(colinfo_[ncols()].lines_, '|');
168 }
169
170
171 void MathGridInset::valign(char c)
172 {
173         v_align_ = c;
174 }
175
176
177 char MathGridInset::valign() const
178 {
179         return v_align_;
180 }
181
182
183 MathGridInset::col_type MathGridInset::ncols() const
184 {
185         return colinfo_.size() - 1;
186 }
187
188
189 MathGridInset::row_type MathGridInset::nrows() const
190 {
191         return rowinfo_.size() - 1;
192 }
193
194
195 MathGridInset::col_type MathGridInset::col(idx_type idx) const
196 {
197         return idx % ncols();
198 }
199
200
201 MathGridInset::row_type MathGridInset::row(idx_type idx) const
202 {
203         return idx / ncols();
204 }
205
206
207 void MathGridInset::vcrskip(LyXLength const & crskip, row_type row)
208 {
209         rowinfo_[row].crskip_ = crskip;
210 }
211
212
213 LyXLength MathGridInset::vcrskip(row_type row) const
214 {
215         return rowinfo_[row].crskip_;
216 }
217
218
219 void MathGridInset::metrics(MathMetricsInfo const & mi) const
220 {
221         // let the cells adjust themselves
222         MathNestInset::metrics(mi);
223
224         // compute absolute sizes of vertical structure
225         for (row_type row = 0; row < nrows(); ++row) {
226                 int asc  = 0;
227                 int desc = 0;
228                 for (col_type col = 0; col < ncols(); ++col) {
229                         MathXArray const & c = xcell(index(row, col));
230                         asc  = max(asc,  c.ascent());
231                         desc = max(desc, c.descent());
232                 }
233                 rowinfo_[row].ascent_  = asc;
234                 rowinfo_[row].descent_ = desc;
235         }
236         rowinfo_[0].ascent_       += hlinesep() * rowinfo_[0].lines_;
237         rowinfo_[nrows()].ascent_  = 0;
238         rowinfo_[nrows()].descent_ = 0;
239
240         // compute vertical offsets
241         rowinfo_[0].offset_ = 0;
242         for (row_type row = 1; row <= nrows(); ++row) {
243                 rowinfo_[row].offset_  =        
244                         rowinfo_[row - 1].offset_  +
245                         rowinfo_[row - 1].descent_ +
246                         rowinfo_[row - 1].skipPixels() +
247                         rowsep() +
248                         rowinfo_[row].lines_ * hlinesep() +
249                         rowinfo_[row].ascent_;
250         }
251
252         // adjust vertical offset
253         int h = 0;
254         switch (v_align_) {
255                 case 't':
256                         h = 0;
257                         break;
258                 case 'b':
259                         h = rowinfo_[nrows() - 1].offset_;
260                         break;
261                 default:
262                         h = rowinfo_[nrows() - 1].offset_ / 2;
263         }
264         for (row_type row = 0; row <= nrows(); ++row)
265                 rowinfo_[row].offset_ -= h;
266         
267
268         // compute absolute sizes of horizontal structure
269         for (col_type col = 0; col < ncols(); ++col) {
270                 int wid = 0;
271                 for (row_type row = 0; row < nrows(); ++row) 
272                         wid = max(wid, xcell(index(row, col)).width());
273                 colinfo_[col].width_ = wid;
274         }
275         colinfo_[ncols()].width_  = 0;
276
277         // compute horizontal offsets
278         colinfo_[0].offset_ = border();
279         for (col_type col = 1; col <= ncols(); ++col) {
280                 colinfo_[col].offset_ =
281                         colinfo_[col - 1].offset_ +
282                         colinfo_[col - 1].width_ + 
283                         colinfo_[col - 1].skip_ +
284                         colsep() + 
285                         colinfo_[col].lines_ * vlinesep();
286         }
287
288
289         width_   =   colinfo_[ncols() - 1].offset_      
290                        + colinfo_[ncols() - 1].width_
291                  + vlinesep() * colinfo_[ncols()].lines_
292                        + border();
293
294         ascent_  = - rowinfo_[0].offset_          
295                        + rowinfo_[0].ascent_
296                  + hlinesep() * rowinfo_[0].lines_
297                        + border();
298
299         descent_ =   rowinfo_[nrows() - 1].offset_
300                        + rowinfo_[nrows() - 1].descent_
301                  + hlinesep() * rowinfo_[nrows()].lines_
302                        + border();
303
304
305 /*      
306         // Increase ws_[i] for 'R' columns (except the first one)
307         for (int i = 1; i < nc_; ++i)
308                 if (align_[i] == 'R')
309                         ws_[i] += 10 * df_width;
310         // Increase ws_[i] for 'C' column
311         if (align_[0] == 'C')
312                 if (ws_[0] < 7 * workwidth / 8)
313                         ws_[0] = 7 * workwidth / 8;
314         
315         // Adjust local tabs
316         width = colsep();
317         for (cxrow = row_.begin(); cxrow; ++cxrow) {   
318                 int rg = COLSEP;
319                 int lf = 0;
320                 for (int i = 0; i < nc_; ++i) {
321                         bool isvoid = false;
322                         if (cxrow->getTab(i) <= 0) {
323                                 cxrow->setTab(i, df_width);
324                                 isvoid = true;
325                         }
326                         switch (align_[i]) {
327                         case 'l':
328                                 lf = 0;
329                                 break;
330                         case 'c':
331                                 lf = (ws_[i] - cxrow->getTab(i))/2; 
332                                 break;
333                         case 'r':
334                         case 'R':
335                                 lf = ws_[i] - cxrow->getTab(i);
336                                 break;
337                         case 'C':
338                                 if (cxrow == row_.begin())
339                                         lf = 0;
340                                 else if (cxrow.is_last())
341                                         lf = ws_[i] - cxrow->getTab(i);
342                                 else
343                                         lf = (ws_[i] - cxrow->getTab(i))/2; 
344                                 break;
345                         }
346                         int const ww = (isvoid) ? lf : lf + cxrow->getTab(i);
347                         cxrow->setTab(i, lf + rg);
348                         rg = ws_[i] - ww + colsep();
349                         if (cxrow == row_.begin())
350                                 width += ws_[i] + colsep();
351                 }
352                 cxrow->setBaseline(cxrow->getBaseline() - ascent);
353         }
354 */
355 }
356
357
358 void MathGridInset::draw(Painter & pain, int x, int y) const
359 {
360         for (idx_type idx = 0; idx < nargs(); ++idx)
361                 xcell(idx).draw(pain, x + cellXOffset(idx), y + cellYOffset(idx));
362
363         for (row_type row = 0; row <= nrows(); ++row)
364                 for (int i = 0; i < rowinfo_[row].lines_; ++i) {
365                         int yy = y + rowinfo_[row].offset_ - rowinfo_[row].ascent_
366                                 - i * hlinesep() - hlinesep()/2 - rowsep()/2;
367                         pain.line(x + 1, yy, x + width_ - 1, yy);
368                 }
369
370         for (col_type col = 0; col <= ncols(); ++col)
371                 for (int i = 0; i < colinfo_[col].lines_; ++i) {
372                         int xx = x + colinfo_[col].offset_
373                                 - i * vlinesep() - vlinesep()/2 - colsep()/2;
374                         pain.line(xx, y - ascent_ + 1, xx, y + descent_ - 1);
375                 }
376 }
377
378
379 string MathGridInset::eolString(row_type row) const
380 {
381         string eol;
382
383         if (!rowinfo_[row].crskip_.zero())
384                 eol += "[" + rowinfo_[row].crskip_.asLatexString() + "]";
385
386         // make sure an upcoming '[' does not break anything
387         if (row + 1 < nrows()) {
388                 MathArray const & c = cell(index(row + 1, 0));
389                 if (c.size() && c.front()->getChar() == '[')
390                         //eol += "[0pt]";
391                         eol += "{}";
392         }
393
394         // only add \\ if necessary
395         if (eol.empty() && row + 1 == nrows())
396                 return string();
397
398         return "\\\\" + eol + '\n';
399 }
400
401
402 string MathGridInset::eocString(col_type col) const
403 {
404         if (col + 1 == ncols())
405                 return string();
406         return " & ";
407 }
408
409
410 void MathGridInset::addRow(row_type row)
411 {
412         rowinfo_.insert(rowinfo_.begin() + row + 1, RowInfo());
413         cells_.insert(cells_.begin() + (row + 1) * ncols(), ncols(), MathXArray());
414 }
415
416
417 void MathGridInset::appendRow()
418 {
419         rowinfo_.push_back(RowInfo());
420         //cells_.insert(cells_.end(), ncols(), MathXArray());
421         for (col_type col = 0; col < ncols(); ++col)
422                 cells_.push_back(cells_type::value_type());
423 }
424
425
426 void MathGridInset::delRow(row_type row)
427 {
428         if (nrows() == 1)
429                 return;
430
431         cells_type::iterator it = cells_.begin() + row * ncols(); 
432         cells_.erase(it, it + ncols());
433
434         rowinfo_.erase(rowinfo_.begin() + row);
435 }
436
437
438 void MathGridInset::addCol(col_type newcol)
439 {
440         const col_type nc = ncols();
441         const row_type nr = nrows();
442         cells_type new_cells((nc + 1) * nr);
443         
444         for (row_type row = 0; row < nr; ++row)
445                 for (col_type col = 0; col < nc; ++col)
446                         new_cells[row * (nc + 1) + col + (col > newcol)]
447                                 = cells_[row * nc + col];
448         swap(cells_, new_cells);
449
450         ColInfo inf;
451         inf.skip_  = defaultColSpace(newcol);
452         inf.align_ = defaultColAlign(newcol);
453         colinfo_.insert(colinfo_.begin() + newcol, inf);
454 }
455
456
457 void MathGridInset::delCol(col_type col)
458 {
459         if (ncols() == 1)
460                 return;
461
462         cells_type tmpcells;
463         for (col_type i = 0; i < nargs(); ++i) 
464                 if (i % ncols() != col)
465                         tmpcells.push_back(cells_[i]);
466         swap(cells_, tmpcells);
467
468         colinfo_.erase(colinfo_.begin() + col);
469 }
470
471
472 int MathGridInset::cellXOffset(idx_type idx) const
473 {
474         col_type c = col(idx);
475         int x = colinfo_[c].offset_;
476         char align = colinfo_[c].align_;
477         if (align == 'r' || align == 'R')
478                 x += colinfo_[c].width_ - xcell(idx).width(); 
479         if (align == 'c' || align == 'C')
480                 x += (colinfo_[c].width_ - xcell(idx).width()) / 2; 
481         return x;
482 }
483
484
485 int MathGridInset::cellYOffset(idx_type idx) const
486 {
487         return rowinfo_[row(idx)].offset_;
488 }
489
490
491 bool MathGridInset::idxUp(idx_type & idx) const
492 {
493         if (idx < ncols())
494                 return false;
495         idx -= ncols();
496         return true;
497 }
498
499         
500 bool MathGridInset::idxDown(idx_type & idx) const
501 {
502         if (idx >= ncols() * (nrows() - 1))
503                 return false;
504         idx += ncols();
505         return true;
506 }
507         
508         
509 bool MathGridInset::idxLeft(idx_type & idx, pos_type & pos) const
510 {
511         // leave matrix if on the left hand edge
512         if (col(idx) == 0)
513                 return false;
514         --idx;
515         pos = cell(idx).size();
516         return true;
517 }
518         
519         
520 bool MathGridInset::idxRight(idx_type & idx, pos_type & pos) const
521 {
522         // leave matrix if on the right hand edge
523         if (col(idx) + 1 == ncols())
524                 return false;
525         ++idx;
526         pos = 0;
527         return true;
528 }
529
530
531 bool MathGridInset::idxFirst(idx_type & idx, pos_type & pos) const
532 {
533         switch (v_align_) {
534                 case 't':
535                         idx = 0;
536                         break;
537                 case 'b':
538                         idx = (nrows() - 1) * ncols();
539                         break;
540                 default: 
541                         idx = ((nrows() - 1) / 2) * ncols();
542         }
543         pos = 0;
544         return true;
545 }
546
547
548 bool MathGridInset::idxLast(idx_type & idx, pos_type & pos) const
549 {
550         switch (v_align_) {
551                 case 't':
552                         idx = ncols() - 1;
553                         break;
554                 case 'b':
555                         idx = nargs() - 1;
556                         break;
557                 default:
558                         idx = ((nrows() - 1) / 2 + 1) * ncols() - 1;
559         }
560         pos = cell(idx).size();
561         return true;
562 }
563
564
565 bool MathGridInset::idxHome(idx_type & idx, pos_type & pos) const
566 {
567         if (pos > 0) {
568                 pos = 0;
569                 return true;
570         }
571         if (col(idx) > 0) {
572                 idx -= idx % ncols();
573                 pos = 0;
574                 return true;
575         }
576         if (idx > 0) {
577                 idx = 0;
578                 pos = 0;
579                 return true;
580         }
581         return false;
582 }
583
584
585 bool MathGridInset::idxEnd(idx_type & idx, pos_type & pos) const
586 {
587         if (pos < cell(idx).size()) {
588                 pos = cell(idx).size();
589                 return true;
590         }
591         if (col(idx) < ncols() - 1) {
592                 idx = idx - idx % ncols() + ncols() - 1;
593                 pos = cell(idx).size();
594                 return true;
595         }
596         if (idx < nargs() - 1) {
597                 idx = nargs() - 1;
598                 pos = cell(idx).size();
599                 return true;
600         }
601         return false;
602 }
603
604
605 void MathGridInset::idxDelete(idx_type & idx, bool & popit, bool & deleteit)
606 {
607         popit    = false;
608         deleteit = false;
609
610         // nothing to do if we are in the last row of the inset
611         if (row(idx) + 1 == nrows())
612                 return;
613
614         // try to delete entire sequence of ncols() empty cells if possible
615         for (idx_type i = idx; i < idx + ncols(); ++i)
616                 if (cell(i).size())
617                         return;
618
619         // move cells if necessary
620         for (idx_type i = index(row(idx), 0); i < idx; ++i)
621                 cell(i).swap(cell(i + ncols()));
622                 
623         delRow(row(idx));
624
625         if (idx >= nargs())
626                 idx = nargs() - 1;
627
628         // undo effect of Ctrl-Tab (i.e. pull next cell)
629         //if (idx + 1 != nargs()) 
630         //      cell(idx).swap(cell(idx + 1));
631 }
632
633
634 MathGridInset::RowInfo const & MathGridInset::rowinfo(row_type row) const
635 {
636         return rowinfo_[row];
637 }
638
639
640 MathGridInset::RowInfo & MathGridInset::rowinfo(row_type row)
641 {
642         return rowinfo_[row];
643 }
644
645
646 vector<MathInset::idx_type>
647         MathGridInset::idxBetween(idx_type from, idx_type to) const
648 {
649         row_type r1 = min(row(from), row(to));
650         row_type r2 = max(row(from), row(to));
651         col_type c1 = min(col(from), col(to));
652         col_type c2 = max(col(from), col(to));
653         vector<idx_type> res;
654         for (row_type i = r1; i <= r2; ++i)
655                 for (col_type j = c1; j <= c2; ++j)
656                         res.push_back(index(i, j));
657         return res;
658 }
659
660
661
662 void MathGridInset::normalize(NormalStream & os) const
663 {
664         os << "[grid ";
665         for (row_type row = 0; row < nrows(); ++row) {
666                 os << "[row ";
667                 for (col_type col = 0; col < ncols(); ++col)
668                         os << "[cell " << cell(index(row, col)) << ']';
669                 os << ']';
670         }
671         os << ']';
672 }
673
674
675 void MathGridInset::mathmlize(MathMLStream & os) const
676 {
677         os << MTag("mtable");
678         for (row_type row = 0; row < nrows(); ++row) {
679                 os << MTag("mtr");
680                 for (col_type col = 0; col < ncols(); ++col) 
681                         os << cell(index(row, col));
682                 os << ETag("mtr");
683         }
684         os << ETag("mtable");
685 }
686
687
688 void MathGridInset::write(WriteStream & os) const
689 {
690         for (row_type row = 0; row < nrows(); ++row) {
691                 os << verboseHLine(rowinfo_[row].lines_);
692                 for (col_type col = 0; col < ncols(); ++col) 
693                         os << cell(index(row, col)) << eocString(col);
694                 os << eolString(row);
695         }
696         string const s = verboseHLine(rowinfo_[nrows()].lines_);
697         if (!s.empty() && s != " ")
698                 os << "\\\\" << s;
699 }
700
701
702 int MathGridInset::colsep() const
703 {
704         return 6;
705 }
706
707
708 int MathGridInset::rowsep() const
709 {
710         return 6;
711 }
712
713
714 int MathGridInset::hlinesep() const
715 {
716         return 3;
717 }
718
719
720 int MathGridInset::vlinesep() const
721 {
722         return 3;
723 }
724
725
726 int MathGridInset::border() const
727 {
728         return 2;
729 }