]> git.lyx.org Git - lyx.git/blobdiff - src/text3.C
hopefully fix tex2lyx linking.
[lyx.git] / src / text3.C
index 221b297d9a9ca563199614e57b15435f28d3290f..9fb01eda4f153259b3307df1a09148b06d5424b3 100644 (file)
@@ -295,9 +295,9 @@ void LyXText::number(LCursor & cur)
 }
 
 
-bool LyXText::isRTL(Paragraph const & par) const
+bool LyXText::isRTL(Buffer const & buffer, Paragraph const & par) const
 {
-       return par.isRightToLeftPar(bv()->buffer()->params());
+       return par.isRightToLeftPar(buffer.params());
 }
 
 
@@ -305,6 +305,11 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
 {
        lyxerr[Debug::ACTION] << "LyXText::dispatch: cmd: " << cmd << endl;
 
+       // FIXME: We use the update flag to indicates wether a singlePar or a
+       // full screen update is needed. We reset it here but shall we restore it
+       // at the end?
+       cur.noUpdate();
+
        BOOST_ASSERT(cur.text() == this);
        BufferView * bv = &cur.bv();
        CursorSlice oldTopSlice = cur.top();
@@ -324,7 +329,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
 
        case LFUN_PARAGRAPH_MOVE_DOWN: {
                pit_type const pit = cur.pit();
-               recUndo(pit, pit + 1);
+               recUndo(cur, pit, pit + 1);
                finishUndo();
                std::swap(pars_[pit], pars_[pit + 1]);
 
@@ -339,7 +344,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
 
        case LFUN_PARAGRAPH_MOVE_UP: {
                pit_type const pit = cur.pit();
-               recUndo(pit - 1, pit);
+               recUndo(cur, pit - 1, pit);
                finishUndo();
                std::swap(pars_[pit], pars_[pit - 1]);
 
@@ -363,7 +368,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                // ensure that we have only one start_of_appendix in this document
                for (pit_type tmp = 0, end = pars_.size(); tmp != end; ++tmp) {
                        if (pars_[tmp].params().startOfAppendix()) {
-                               recUndo(tmp);
+                               recUndo(cur, tmp);
                                pars_[tmp].params().startOfAppendix(false);
                                break;
                        }
@@ -420,7 +425,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                //lyxerr << BOOST_CURRENT_FUNCTION
                //       << " LFUN_CHAR_FORWARD[SEL]:\n" << cur << endl;
                needsUpdate |= cur.selHandle(cmd.action == LFUN_CHAR_FORWARD_SELECT);
-               if (isRTL(cur.paragraph()))
+               if (isRTL(*cur.bv().buffer(), cur.paragraph()))
                        needsUpdate |= cursorLeft(cur);
                else
                        needsUpdate |= cursorRight(cur);
@@ -436,7 +441,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
        case LFUN_CHAR_BACKWARD_SELECT:
                //lyxerr << "handle LFUN_CHAR_BACKWARD[_SELECT]:\n" << cur << endl;
                needsUpdate |= cur.selHandle(cmd.action == LFUN_CHAR_BACKWARD_SELECT);
-               if (isRTL(cur.paragraph()))
+               if (isRTL(*cur.bv().buffer(), cur.paragraph()))
                        needsUpdate |= cursorRight(cur);
                else
                        needsUpdate |= cursorLeft(cur);
@@ -526,7 +531,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
        case LFUN_WORD_FORWARD:
        case LFUN_WORD_FORWARD_SELECT:
                needsUpdate |= cur.selHandle(cmd.action == LFUN_WORD_FORWARD_SELECT);
-               if (isRTL(cur.paragraph()))
+               if (isRTL(*cur.bv().buffer(), cur.paragraph()))
                        needsUpdate |= cursorLeftOneWord(cur);
                else
                        needsUpdate |= cursorRightOneWord(cur);
@@ -535,7 +540,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
        case LFUN_WORD_BACKWARD:
        case LFUN_WORD_BACKWARD_SELECT:
                needsUpdate |= cur.selHandle(cmd.action == LFUN_WORD_BACKWARD_SELECT);
-               if (isRTL(cur.paragraph()))
+               if (isRTL(*cur.bv().buffer(), cur.paragraph()))
                        needsUpdate |= cursorRightOneWord(cur);
                else
                        needsUpdate |= cursorLeftOneWord(cur);
@@ -748,7 +753,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                break;
 
        case LFUN_CHARS_TRANSPOSE:
-               recordUndo(cur);
+               charsTranspose(cur);
                break;
 
        case LFUN_PASTE:
@@ -778,8 +783,8 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
 
        case LFUN_SERVER_GET_XY:
                cur.message(from_utf8(
-                       convert<string>(cursorX(cur.top(), cur.boundary())) + ' '
-                         + convert<string>(cursorY(cur.top(), cur.boundary()))));
+                       convert<string>(cursorX(cur.buffer(), cur.top(), cur.boundary()))
+                       + ' ' + convert<string>(cursorY(cur.top(), cur.boundary()))));
                break;
 
        case LFUN_SERVER_SET_XY: {
@@ -809,24 +814,15 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                break;
 
        case LFUN_LAYOUT: {
-               lyxerr[Debug::INFO] << "LFUN_LAYOUT: (arg) "
-                 << to_utf8(cmd.argument()) << endl;
-
-               // This is not the good solution to the empty argument
-               // problem, but it will hopefully suffice for 1.2.0.
-               // The correct solution would be to augument the
-               // function list/array with information about what
-               // functions needs arguments and their type.
-               if (cmd.argument().empty()) {
-                       cur.errorMessage(_("LyX function 'layout' needs an argument."));
-                       break;
-               }
+               string layout = to_ascii(cmd.argument());
+               lyxerr[Debug::INFO] << "LFUN_LAYOUT: (arg) " << layout << endl;
 
                // Derive layout number from given argument (string)
                // and current buffer's textclass (number)
                LyXTextClass const & tclass = bv->buffer()->params().getLyXTextClass();
-               bool hasLayout = tclass.hasLayout(to_utf8(cmd.argument()));
-               string layout = to_utf8(cmd.argument());
+               if (layout.empty())
+                       layout = tclass.defaultLayoutName();
+               bool hasLayout = tclass.hasLayout(layout);
 
                // If the entry is obsolete, use the new one instead.
                if (hasLayout) {
@@ -893,6 +889,21 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                break;
        }
 
+       case LFUN_UNICODE_INSERT: {
+               if (cmd.argument().empty())
+                       break;
+               docstring hexstring = cmd.argument();
+               if (lyx::support::isHex(hexstring)) {
+                       char_type c = lyx::support::hexToInt(hexstring);
+                       if (c > 32 && c < 0x10ffff) {
+                               lyxerr << "Inserting c: " << c << endl;
+                               docstring s = docstring(1, c);
+                               lyx::dispatch(FuncRequest(LFUN_SELF_INSERT, s));
+                       }
+               }
+               break;
+       }
+               
        case LFUN_QUOTE_INSERT: {
                cap::replaceSelection(cur);
                Paragraph & par = cur.paragraph();
@@ -982,6 +993,11 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                                lyx::dispatch(FuncRequest(LFUN_PRIMARY_SELECTION_PASTE, "paragraph"));
                }
 
+               if (cmd.button() == mouse_button::button1) {
+                       needsUpdate = false;
+                       cur.noUpdate();
+               }
+
                break;
        }
 
@@ -1031,8 +1047,12 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                        break;
 
                // finish selection
-               if (cmd.button() == mouse_button::button1)
-                       theSelection().haveSelection(cur.selection());
+               if (cmd.button() == mouse_button::button1) {
+                       if (cur.selection())
+                               theSelection().haveSelection(cur.selection());
+                       needsUpdate = false;
+                       cur.noUpdate();
+               }
 
                bv->switchKeyMap();
                break;
@@ -1090,8 +1110,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                InsetCommandParams p("label");
                // Try to generate a valid label
                p["name"] = (cmd.argument().empty()) ?
-                       // FIXME UNICODE
-                       from_utf8(cur.getPossibleLabel()) :
+                       cur.getPossibleLabel() :
                        cmd.argument();
                string const data = InsetCommandMailer::params2string("label", p);
 
@@ -1145,7 +1164,8 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                cur.dispatch(FuncRequest(LFUN_LAYOUT, "Caption"));
                break;
 
-       case LFUN_INDEX_INSERT: {
+       case LFUN_INDEX_INSERT:
+       case LFUN_NOMENCL_INSERT: {
                InsetBase * inset = createInset(&cur.bv(), cmd);
                if (!inset)
                        break;
@@ -1154,11 +1174,17 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                cur.clearSelection();
                insertInset(cur, inset);
                inset->edit(cur, true);
+               // Show the dialog for the nomenclature entry, since the
+               // description entry still needs to be filled in.
+               if (cmd.action == LFUN_NOMENCL_INSERT)
+                       InsetCommandMailer("nomenclature",
+                               *reinterpret_cast<InsetCommand *>(inset)).showDialog(&cur.bv());
                cur.posRight();
                break;
        }
 
        case LFUN_INDEX_PRINT:
+       case LFUN_NOMENCL_PRINT:
        case LFUN_TOC_INSERT:
        case LFUN_HFILL_INSERT:
        case LFUN_LINE_INSERT:
@@ -1373,7 +1399,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                if (!cmd.argument().empty())
                        // FIXME: Are all these characters encoded in one byte in utf8?
                        bv->getIntl().getTransManager()
-                               .translateAndInsert(cmd.argument()[0], this);
+                               .translateAndInsert(cmd.argument()[0], this, cur);
                break;
 
        case LFUN_FLOAT_LIST: {
@@ -1390,7 +1416,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                        }
 
                        setLayout(cur, tclass.defaultLayoutName());
-                       setParagraph(cur, Spacing(), LYX_ALIGN_LAYOUT, string(), 0);
+                       setParagraph(cur, Spacing(), LYX_ALIGN_LAYOUT, docstring(), 0);
                        insertInset(cur, new InsetFloatList(to_utf8(cmd.argument())));
                        cur.posRight();
                } else {
@@ -1434,11 +1460,10 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                lex.setStream(is);
                ParagraphParameters params;
                params.read(lex);
-               // FIXME UNICODE
                setParagraph(cur,
                             params.spacing(),
                             params.align(),
-                            to_ascii(params.labelWidthString()),
+                            params.labelWidthString(),
                             params.noindent());
                cur.message(_("Paragraph layout set"));
                break;
@@ -1463,6 +1488,19 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
        }
 
        needsUpdate |= (cur.pos() != cur.lastpos()) && cur.selection();
+
+       // FIXME: The cursor flag is reset two lines below
+       // so we need to check here if some of the LFUN did touch that.
+       // for now only LyXText::erase() and LyXText::backspace() do that.
+       // The plan is to verify all the LFUNs and then to remove this
+       // singleParUpdate boolean altogether.
+       if (cur.result().update() & Update::Force) {
+               singleParUpdate = false;
+               needsUpdate = true;
+       }
+
+       // FIXME: the following code should go in favor of fine grained
+       // update flag treatment.
        if (singleParUpdate)
                // Inserting characters does not change par height
                if (cur.bottom().paragraph().dim().height()
@@ -1474,10 +1512,11 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
                        return;
                } else
                        needsUpdate = true;
+
        if (!needsUpdate
            && &oldTopSlice.inset() == &cur.inset()
            && oldTopSlice.idx() == cur.idx()
-           && !sel
+           && !sel // sel is a backup of cur.selection() at the biginning of the function.
            && !cur.selection())
                cur.noUpdate();
        else
@@ -1535,6 +1574,8 @@ bool LyXText::getStatus(LCursor & cur, FuncRequest const & cmd,
                        code = InsetBase::INCLUDE_CODE;
                else if (cmd.argument() == "index")
                        code = InsetBase::INDEX_CODE;
+               else if (cmd.argument() == "nomenclature")
+                       code = InsetBase::NOMENCL_CODE;
                else if (cmd.argument() == "label")
                        code = InsetBase::LABEL_CODE;
                else if (cmd.argument() == "note")
@@ -1617,6 +1658,12 @@ bool LyXText::getStatus(LCursor & cur, FuncRequest const & cmd,
        case LFUN_INDEX_PRINT:
                code = InsetBase::INDEX_PRINT_CODE;
                break;
+       case LFUN_NOMENCL_INSERT:
+               code = InsetBase::NOMENCL_CODE;
+               break;
+       case LFUN_NOMENCL_PRINT:
+               code = InsetBase::NOMENCL_PRINT_CODE;
+               break;
        case LFUN_TOC_INSERT:
                code = InsetBase::TOC_CODE;
                break;
@@ -1692,7 +1739,7 @@ bool LyXText::getStatus(LCursor & cur, FuncRequest const & cmd,
                break;
 
        case LFUN_INSET_DISSOLVE:
-               enable = !isMainText() && cur.inset().nargs() == 1;
+               enable = !isMainText(*cur.bv().buffer()) && cur.inset().nargs() == 1;
                break;
 
        case LFUN_CHANGE_ACCEPT:
@@ -1794,6 +1841,7 @@ bool LyXText::getStatus(LCursor & cur, FuncRequest const & cmd,
        case LFUN_BUFFER_BEGIN:
        case LFUN_BUFFER_BEGIN_SELECT:
        case LFUN_BUFFER_END_SELECT:
+       case LFUN_UNICODE_INSERT:
                // these are handled in our dispatch()
                enable = true;
                break;