X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettabular.C;h=d21030ee98d11ebc7413c5f57dcac73490420171;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=728819408076f760de783b631a5b579fc352b7f0;hpb=d719688df38b73e915ea36c8357a3c57376c4ef7;p=lyx.git diff --git a/src/insets/insettabular.C b/src/insets/insettabular.C index 7288194080..d21030ee98 100644 --- a/src/insets/insettabular.C +++ b/src/insets/insettabular.C @@ -48,6 +48,8 @@ #include //#include + +using std::vector; using std::ostream; using std::ifstream; using std::max; @@ -138,6 +140,7 @@ InsetTabular::InsetTabular(Buffer const & buf, int rows, int columns) // for now make it always display as display() inset // just for test!!! the_locking_inset = 0; + old_locking_inset = 0; locked = false; oldcell = -1; actrow = actcell = 0; @@ -145,6 +148,8 @@ InsetTabular::InsetTabular(Buffer const & buf, int rows, int columns) need_update = INIT; in_update = false; in_reset_pos = false; + inset_x = 0; + inset_y = 0; } @@ -154,6 +159,7 @@ InsetTabular::InsetTabular(InsetTabular const & tab, Buffer const & buf, { tabular.reset(new LyXTabular(this, *(tab.tabular), same_id)); the_locking_inset = 0; + old_locking_inset = 0; locked = false; oldcell = -1; actrow = actcell = 0; @@ -161,6 +167,8 @@ InsetTabular::InsetTabular(InsetTabular const & tab, Buffer const & buf, need_update = INIT; in_update = false; in_reset_pos = false; + inset_x = 0; + inset_y = 0; } @@ -366,16 +374,18 @@ void InsetTabular::draw(BufferView * bv, LyXFont const & font, int baseline, // Here we use rectangular backgroundColor patches to clean up // within a cell around the cell's red inset box. As follows: // - // +---+ +---+ - // | | | | The rectangles are A, B and C + // +--------------------+ + // | C | The rectangles are A, B and C // | A |------------| B | below, origin top left (tx, ty), // | | inset box | | dimensions w(idth), h(eight). // +---+------------+---+ x grows rightward, y downward // | D | // +--------------------+ // +#if 0 // clear only if we didn't have a change if (bv->text->status() != LyXText::CHANGED_IN_DRAW) { +#endif // clear before the inset int tx, ty, w, h; tx = nx + 1; @@ -401,7 +411,16 @@ void InsetTabular::draw(BufferView * bv, LyXFont const & font, int baseline, h = tabular->GetDescentOfRow(i) - the_locking_inset->descent(bv, font) - 1; pain.fillRectangle(tx, ty, w, h, backgroundColor()); + // clear above the inset + tx = nx + 1; + ty = baseline - tabular->GetAscentOfRow(i) + 1; + w = tabular->GetWidthOfColumn(cell) - + tabular->GetAdditionalWidth(cell) - 1; + h = tabular->GetAscentOfRow(i) - the_locking_inset->ascent(bv, font); + pain.fillRectangle(tx, ty, w, h, backgroundColor()); +#if 0 } +#endif } x -= ADD_TO_TABULAR_WIDTH; x += width(bv, font); @@ -601,9 +620,11 @@ void InsetTabular::updateLocal(BufferView * bv, UpdateCodes what, } if (need_update < what) // only set this if it has greater update need_update = what; +#if 0 // maybe this should not be done! if ((what == INIT) && hasSelection()) { clearSelection(); } +#endif // Dirty Cast! (Lgb) if (need_update != NONE) { bv->updateInset(const_cast(this), mark_dirty); @@ -639,9 +660,7 @@ bool InsetTabular::lockInsetInInset(BufferView * bv, UpdatableInset * inset) } if (in->getInsetFromID(id)) { actcell = i; - the_locking_inset = in; - locked = true; - resetPos(bv); + in->edit(bv); return the_locking_inset->lockInsetInInset(bv, inset); } } @@ -1063,6 +1082,10 @@ InsetTabular::localDispatch(BufferView * bv, kb_action action, case LFUN_HOMESEL: case LFUN_END: case LFUN_ENDSEL: + case LFUN_BEGINNINGBUF: + case LFUN_BEGINNINGBUFSEL: + case LFUN_ENDBUF: + case LFUN_ENDBUFSEL: break; case LFUN_LAYOUT_TABULAR: bv->owner()->getDialogs()->showTabular(this); @@ -1101,7 +1124,7 @@ InsetTabular::localDispatch(BufferView * bv, kb_action action, while (p < len && ((p = clip.find_first_of("\t\n", p)) != string::npos)) { - switch(clip[p]) { + switch (clip[p]) { case '\t': ++cols; break; @@ -1125,7 +1148,7 @@ InsetTabular::localDispatch(BufferView * bv, kb_action action, (p = clip.find_first_of("\t\n", p)) != string::npos) { if (p >= len) break; - switch(clip[p]) { + switch (clip[p]) { case '\t': paste_tabular->GetCellInset(cell)->setText(clip.substr(op, p-op)); ++cols; @@ -1216,7 +1239,12 @@ int InsetTabular::ascii(Buffer const * buf, ostream & os, int ll) const int InsetTabular::linuxdoc(Buffer const * buf, ostream & os) const { - return tabular->ascii(buf,os, (int)parOwner()->params().depth(), false, 0); + os << "ascii(buf,os, + (int)parOwner()->params().depth(), + false, 0); + os << "]]>"; + return ret; } @@ -2099,37 +2127,18 @@ int InsetTabular::getMaxWidthOfCell(BufferView * bv, int cell) const if (len.zero()) return -1; -#ifdef WITH_WARNINGS -#warning Remove use of VSpace as soon as LyXLength::inPixels exists (JMarc) -#endif - return VSpace(len).inPixels(bv); + return len.inPixels(latexTextWidth(bv), bv->text->defaultHeight()); } int InsetTabular::getMaxWidth(BufferView * bv, UpdatableInset const * inset) const { - int cell = tabular->cur_cell; - if (tabular->GetCellInset(cell) != inset) { - cell = actcell; - if (tabular->GetCellInset(cell) != inset) { - - lyxerr[Debug::INSETTEXT] << "Actcell not equal to actual cell!\n"; - cell = -1; - } - } - - int const n = tabular->GetNumberOfCells(); + int cell = tabular->GetCellFromInset(inset, actcell); if (cell == -1) { - for (cell = 0; cell < n; ++cell) { - if (tabular->GetCellInset(cell) == inset) - break; - } - } - - if (cell >= n) { - lyxerr << "Own inset not found, shouldn't really happen!\n"; + lyxerr << "Own inset not found, shouldn't really happen!" + << endl; return -1; } @@ -2223,10 +2232,11 @@ FuncStatus InsetTabular::getStatus(string const & what) const break; } } - if (action == LyXTabular::LAST_ACTION) + if (action == LyXTabular::LAST_ACTION) { status.clear(); return status.unknown(true); - + } + string const argument = frontStrip(what.substr(tabularFeature[i].feature.length())); int sel_row_start; @@ -2354,7 +2364,7 @@ FuncStatus InsetTabular::getStatus(string const & what) const } -std::vector const InsetTabular::getLabelList() const +vector const InsetTabular::getLabelList() const { return tabular->getLabelList(); } @@ -2470,7 +2480,7 @@ bool InsetTabular::cutSelection() } -bool InsetTabular::isRightToLeft(BufferView *bv ) +bool InsetTabular::isRightToLeft(BufferView * bv) { return bv->getParentLanguage(this)->RightToLeft(); } @@ -2646,7 +2656,7 @@ void InsetTabular::toggleSelection(BufferView * bv, bool kill_selection) bool InsetTabular::searchForward(BufferView * bv, string const & str, - bool const & cs, bool const & mw) + bool cs, bool mw) { nodraw(true); if (the_locking_inset) { @@ -2674,7 +2684,7 @@ bool InsetTabular::searchForward(BufferView * bv, string const & str, bool InsetTabular::searchBackward(BufferView * bv, string const & str, - bool const & cs, bool const & mw) + bool cs, bool mw) { nodraw(true); if (the_locking_inset) { @@ -2711,30 +2721,11 @@ bool InsetTabular::insetAllowed(Inset::Code code) const bool InsetTabular::forceDefaultParagraphs(Inset const * in) const { - int const n = tabular->GetNumberOfCells(); - static int last = 0; + const int cell = tabular->GetCellFromInset(in, actcell); - // maybe some speedup - if ((last < n) && tabular->GetCellInset(last) == in) { - if (tabular->GetPWidth(last+1).zero()) - return true; - return false; - } - if ((++last < n) && tabular->GetCellInset(last) == in) { - if (tabular->GetPWidth(last).zero()) - return true; - return false; - } + if (cell != -1) + return tabular->GetPWidth(cell).zero(); - for(int i=0; i < n; ++i) { - if (tabular->GetCellInset(i) == in) { - last = i; - if (tabular->GetPWidth(i).zero()) - return true; - return false; - } - } - last = 0; // well we didn't obviously find it so maybe our owner knows more if (owner()) return owner()->forceDefaultParagraphs(in);