]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetert.C
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetert.C
index d795fab06f9e3d54392c510815c40211c622c830..abfad1d8db307c54b4f4646e2f530009e9395461 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
  * ======================================================
- * 
+ *
  *           LyX, The Document Processor
- *      
+ *
  *          Copyright 1998 The LyX Team.
  *
  *======================================================*/
 #include "lyxfont.h"
 #include "language.h"
 #include "buffer.h"
-#include "lyx_gui_misc.h"
 #include "BufferView.h"
 #include "LyXView.h"
 #include "lyxtext.h"
 #include "debug.h"
 #include "lyxtextclasslist.h"
+#include "lyxrow.h"
 
 #include "insets/insettext.h"
 
 
 #include "support/LOstream.h"
 
+
 using std::ostream;
+using std::min;
+using std::endl;
+
 using lyx::pos_type;
 
 
@@ -47,8 +51,8 @@ void InsetERT::init()
 }
 
 
-InsetERT::InsetERT(bool collapsed)
-       : InsetCollapsable(collapsed)
+InsetERT::InsetERT(BufferParams const & bp, bool collapsed)
+       : InsetCollapsable(bp, collapsed)
 {
        if (collapsed)
                status_ = Collapsed;
@@ -71,20 +75,21 @@ Inset * InsetERT::clone(Buffer const &, bool same_id) const
 }
 
 
-InsetERT::InsetERT(string const & contents, bool collapsed)
-       : InsetCollapsable(collapsed)
+InsetERT::InsetERT(BufferParams const & bp,
+                  Language const * l, string const & contents, bool collapsed)
+       : InsetCollapsable(bp, collapsed)
 {
        if (collapsed)
                status_ = Collapsed;
        else
                status_ = Open;
-#ifndef INHERIT_LANG
-       LyXFont font(LyXFont::ALL_INHERIT, latex_language);
-#else 
-       LyXFont font(LyXFont::ALL_INHERIT);
-#endif
+
+       LyXFont font(LyXFont::ALL_INHERIT, l);
+#ifdef SET_HARD_FONT
        font.setFamily(LyXFont::TYPEWRITER_FAMILY);
        font.setColor(LColor::latex);
+#endif
+
        string::const_iterator cit = contents.begin();
        string::const_iterator end = contents.end();
        pos_type pos = 0;
@@ -112,7 +117,7 @@ void InsetERT::read(Buffer const * buf, LyXLex & lex)
                if (token == "status") {
                        lex.next();
                        string const tmp_token = lex.getString();
-                       
+
                        if (tmp_token == "Inlined") {
                                status(0, Inlined);
                        } else if (tmp_token == "Collapsed") {
@@ -121,11 +126,11 @@ void InsetERT::read(Buffer const * buf, LyXLex & lex)
                                // leave this as default!
                                status(0, Open);
                        }
-                       
+
                        token_found = true;
                } else {
                        lyxerr << "InsetERT::Read: Missing 'status'-tag!"
-                                  << std::endl;
+                                  << endl;
                        // take countermeasures
                        lex.pushToken(token);
                }
@@ -147,12 +152,12 @@ void InsetERT::read(Buffer const * buf, LyXLex & lex)
 #endif
        inset.read(buf, lex);
 
+#ifdef SET_HARD_FONT
 #ifndef INHERIT_LANG
        LyXFont font(LyXFont::ALL_INHERIT, latex_language);
-#else 
+#else
        LyXFont font(LyXFont::ALL_INHERIT);
 #endif
-
        font.setFamily(LyXFont::TYPEWRITER_FAMILY);
        font.setColor(LColor::latex);
        Paragraph * par = inset.paragraph();
@@ -163,6 +168,7 @@ void InsetERT::read(Buffer const * buf, LyXLex & lex)
                }
                par = par->next();
        }
+#endif
 
        if (!token_found) {
                if (collapsed_) {
@@ -175,12 +181,12 @@ void InsetERT::read(Buffer const * buf, LyXLex & lex)
 }
 
 
-void InsetERT::write(Buffer const * buf, ostream & os) const 
+void InsetERT::write(Buffer const * buf, ostream & os) const
 {
        string st;
 
-       switch(status_) {
-       case Open: 
+       switch (status_) {
+       case Open:
                st = "Open";
                break;
        case Collapsed:
@@ -195,8 +201,7 @@ void InsetERT::write(Buffer const * buf, ostream & os) const
           << "status "<< st << "\n";
 
        //inset.writeParagraphData(buf, os);
-       string const layout =
-               textclasslist.NameOfLayout(buf->params.textclass, 0);
+       string const layout(textclasslist[buf->params.textclass].defaultLayoutName());
        Paragraph * par = inset.paragraph();
        while (par) {
                os << "\n\\layout " << layout << "\n";
@@ -207,7 +212,7 @@ void InsetERT::write(Buffer const * buf, ostream & os) const
                        case Paragraph::META_INSET:
                        case Paragraph::META_HFILL:
                                lyxerr << "Element is not allowed in insertERT"
-                                      << std::endl;
+                                      << endl;
                        case Paragraph::META_NEWLINE:
                                os << "\n\\newline \n";
                                break;
@@ -224,7 +229,7 @@ void InsetERT::write(Buffer const * buf, ostream & os) const
 }
 
 
-string const InsetERT::editMessage() const 
+string const InsetERT::editMessage() const
 {
        return _("Opened ERT Inset");
 }
@@ -242,8 +247,8 @@ void InsetERT::setFont(BufferView *, LyXFont const &, bool, bool selectall)
        // fontchange and this messages is not needed
        if (!selectall)
                Alert::alert(_("Impossible Operation!"),
-                          _("Not permitted to change font-types inside ERT-insets!"),
-                          _("Sorry."));
+                          _("Not permitted to change font-types inside ERT-insets!"),
+                          _("Sorry."));
 }
 
 
@@ -258,7 +263,7 @@ void InsetERT::updateStatus(BufferView * bv, bool swap) const
        }
 }
 
+
 void InsetERT::edit(BufferView * bv, int x, int y, unsigned int button)
 {
        if (button == 3)
@@ -295,7 +300,7 @@ void InsetERT::edit(BufferView * bv, bool front)
 
 
 void InsetERT::insetButtonPress(BufferView * bv,
-                                        int x, int y, int button)
+                                       int x, int y, int button)
 {
        if (status_ == Inlined) {
                inset.insetButtonPress(bv, x, y, button);
@@ -311,15 +316,15 @@ bool InsetERT::insetButtonRelease(BufferView * bv, int x, int y, int button)
                showInsetDialog(bv);
                return true;
        }
+
        if (status_ != Inlined && (x >= 0)  && (x < button_length) &&
            (y >= button_top_y) &&  (y <= button_bottom_y)) {
                updateStatus(bv, true);
        } else {
                LyXFont font(LyXFont::ALL_SANE);
                int yy = ascent(bv, font) + y - inset.ascent(bv, font);
-               // inlined is special - the text appears above 
+
+               // inlined is special - the text appears above
                // button_bottom_y
                if (status_ == Inlined) {
                        inset.insetButtonRelease(bv, x, yy, button);
@@ -333,7 +338,7 @@ bool InsetERT::insetButtonRelease(BufferView * bv, int x, int y, int button)
 
 
 void InsetERT::insetMotionNotify(BufferView * bv,
-                                         int x, int y, int state)
+                                        int x, int y, int state)
 {
        if (status_ == Inlined) {
                inset.insetMotionNotify(bv, x, y, state);
@@ -343,7 +348,7 @@ void InsetERT::insetMotionNotify(BufferView * bv,
 }
 
 
-int InsetERT::latex(Buffer const *, std::ostream & os, bool /*fragile*/,
+int InsetERT::latex(Buffer const *, ostream & os, bool /*fragile*/,
                    bool /*free_spc*/) const
 {
        Paragraph * par = inset.paragraph();
@@ -368,19 +373,19 @@ int InsetERT::latex(Buffer const *, std::ostream & os, bool /*fragile*/,
                        lines += 2;
                }
        }
-       
+
        return lines;
 }
 
 
 int InsetERT::ascii(Buffer const *,
-                   std::ostream &, int /*linelen*/) const 
+                   ostream &, int /*linelen*/) const
 {
        return 0;
 }
 
 
-int InsetERT::linuxdoc(Buffer const *, std::ostream & os) const
+int InsetERT::linuxdoc(Buffer const *, ostream & os) const
 {
        Paragraph * par = inset.paragraph();
        int lines = 0;
@@ -404,12 +409,12 @@ int InsetERT::linuxdoc(Buffer const *, std::ostream & os) const
                        lines ++;
                }
        }
-       
+
        return lines;
 }
 
 
-int InsetERT::docbook(Buffer const *, std::ostream & os) const
+int InsetERT::docbook(Buffer const *, ostream & os) const
 {
        Paragraph * par = inset.paragraph();
        int lines = 0;
@@ -433,7 +438,7 @@ int InsetERT::docbook(Buffer const *, std::ostream & os) const
                        lines ++;
                }
        }
-       
+
        return lines;
 }
 
@@ -447,14 +452,14 @@ InsetERT::localDispatch(BufferView * bv, kb_action action, string const & arg)
                set_latex_font(bv);
        }
 
-       switch(action) {
+       switch (action) {
        case LFUN_LAYOUT:
-               bv->owner()->setLayout(inset.paragraph()->getLayout());
+               bv->owner()->setLayout(inset.paragraph()->layout());
                break;
        default:
                result = InsetCollapsable::localDispatch(bv, action, arg);
        }
-       switch(action) {
+       switch (action) {
        case LFUN_BREAKPARAGRAPH:
        case LFUN_BREAKPARAGRAPHKEEPLAYOUT:
        case LFUN_BACKSPACE:
@@ -465,7 +470,7 @@ InsetERT::localDispatch(BufferView * bv, kb_action action, string const & arg)
        case LFUN_CUT:
                set_latex_font(bv);
                break;
-       
+
        default:
                break;
        }
@@ -478,7 +483,7 @@ string const InsetERT::get_new_label() const
        string la;
        pos_type const max_length = 15;
        pos_type const p_siz = inset.paragraph()->size();
-       pos_type const n = std::min(max_length, p_siz);
+       pos_type const n = min(max_length, p_siz);
        int i = 0;
        int j = 0;
        for(; i < n && j < p_siz; ++j) {
@@ -507,16 +512,18 @@ void InsetERT::setButtonLabel() const
 }
 
 
-bool InsetERT::checkInsertChar(LyXFont & font)
+bool InsetERT::checkInsertChar(LyXFont & /* font */)
 {
+#ifdef SET_HARD_FONT
 #ifndef INHERIT_LANG
        LyXFont f(LyXFont::ALL_INHERIT, latex_language);
-#else 
+#else
        LyXFont f(LyXFont::ALL_INHERIT);
 #endif
        font = f;
        font.setFamily(LyXFont::TYPEWRITER_FAMILY);
        font.setColor(LColor::latex);
+#endif
        return true;
 }
 
@@ -548,8 +555,8 @@ int InsetERT::width(BufferView * bv, LyXFont const & font) const
 }
 
 
-void InsetERT::draw(BufferView * bv, LyXFont const & f, 
-                    int baseline, float & x, bool cleared) const
+void InsetERT::draw(BufferView * bv, LyXFont const & f,
+                   int baseline, float & x, bool cleared) const
 {
        Painter & pain = bv->painter();
 
@@ -570,9 +577,9 @@ void InsetERT::draw(BufferView * bv, LyXFont const & f,
                x += static_cast<float>(scroll());
 
        if (!cleared && (inset.need_update == InsetText::FULL ||
-                        inset.need_update == InsetText::INIT ||
-                        top_x != int(x) ||
-                        top_baseline != baseline))
+                        inset.need_update == InsetText::INIT ||
+                        top_x != int(x) ||
+                        top_baseline != baseline))
        {
                // we don't need anymore to clear here we just have to tell
                // the underlying LyXText that it should do the RowClear!
@@ -591,7 +598,7 @@ void InsetERT::draw(BufferView * bv, LyXFont const & f,
                inset.draw(bv, f, baseline, x, cleared);
        } else {
                draw_collapsed(pain, bl, old_x);
-               inset.draw(bv, f, 
+               inset.draw(bv, f,
                                   bl + descent_collapsed() + inset.ascent(bv, f),
                                   x, cleared);
        }
@@ -599,45 +606,47 @@ void InsetERT::draw(BufferView * bv, LyXFont const & f,
 }
 
 
-void InsetERT::set_latex_font(BufferView * bv)
+void InsetERT::set_latex_font(BufferView * /* bv */)
 {
+#ifdef SET_HARD_FONT
 #ifndef INHERIT_LANG
        LyXFont font(LyXFont::ALL_INHERIT, latex_language);
-#else 
+#else
        LyXFont font(LyXFont::ALL_INHERIT);
 #endif
 
        font.setFamily(LyXFont::TYPEWRITER_FAMILY);
        font.setColor(LColor::latex);
+
        inset.getLyXText(bv)->setFont(bv, font, false);
+#endif
 }
 
 
+// attention this function can be called with bv == 0
 void InsetERT::status(BufferView * bv, ERTStatus const st) const
 {
        if (st != status_) {
                status_ = st;
-               switch(st) {
+               need_update = FULL;
+               switch (st) {
                case Inlined:
-                       inset.setAutoBreakRows(false);
+                       if (bv)
+                               inset.setUpdateStatus(bv, InsetText::INIT);
                        break;
                case Open:
-                       inset.setAutoBreakRows(true);
                        collapsed_ = false;
-                       need_update = FULL;
                        setButtonLabel();
                        break;
                case Collapsed:
-                       inset.setAutoBreakRows(true);
                        collapsed_ = true;
-                       need_update = FULL;
                        setButtonLabel();
                        if (bv)
                                bv->unlockInset(const_cast<InsetERT *>(this));
                        break;
                }
                if (bv)
-                       bv->updateInset(const_cast<InsetText *>(&inset), false);
+                       bv->updateInset(const_cast<InsetERT *>(this), false);
        }
 }
 
@@ -659,14 +668,45 @@ void InsetERT::open(BufferView * bv)
 
 void InsetERT::close(BufferView * bv) const
 {
-       if (collapsed_)
+       if (status_ == Collapsed || status_ == Inlined)
                return;
+
        status(bv, Collapsed);
 }
 
 
-string const InsetERT::selectNextWordToSpellcheck(BufferView * bv,float &) const
+string const InsetERT::selectNextWordToSpellcheck(BufferView * bv,
+                                                 float &) const
 {
-        bv->unlockInset(const_cast<InsetERT *>(this));
+       bv->unlockInset(const_cast<InsetERT *>(this));
        return string();
 }
+
+
+void InsetERT::getDrawFont(LyXFont & font) const
+{
+#ifndef INHERIT_LANG
+       LyXFont f(LyXFont::ALL_INHERIT, latex_language);
+#else
+       LyXFont f(LyXFont::ALL_INHERIT);
+#endif
+       font = f;
+       font.setFamily(LyXFont::TYPEWRITER_FAMILY);
+       font.setColor(LColor::latex);
+}
+
+
+int InsetERT::getMaxWidth(BufferView * bv, UpdatableInset const * in) const
+{
+       int w = InsetCollapsable::getMaxWidth(bv, in);
+       if (status_ != Inlined || w < 0)
+               return w;
+       LyXText * text = inset.getLyXText(bv);
+       int rw = text->firstRow()->width();
+       if (!rw)
+               rw = w;
+       rw += 40;
+       if (!text->firstRow()->next() && rw < w)
+               return -1;
+       return w;
+}