]> git.lyx.org Git - lyx.git/blobdiff - src/insets/Inset.cpp
* Inset: Prepare for an eventual merge of updateLabels() and addToToc()
[lyx.git] / src / insets / Inset.cpp
index c57add10452d6ca1f01623ce7ae318c755bb3a09..0cfb10cdd3e074dd2057529624b56f83a2b2a4e6 100644 (file)
 #include "Inset.h"
 
 #include "Buffer.h"
+#include "BufferParams.h"
 #include "BufferView.h"
-#include "Color.h"
 #include "CoordCache.h"
 #include "Cursor.h"
-#include "debug.h"
-#include "debug.h"
 #include "Dimension.h"
 #include "DispatchResult.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
-#include "gettext.h"
-#include "LyXText.h"
+#include "Text.h"
+#include "TextClass.h"
 #include "MetricsInfo.h"
 #include "MetricsInfo.h"
 
 #include "frontends/Painter.h"
+#include "frontends/Application.h"
 
-#include <boost/current_function.hpp>
+#include "support/convert.h"
+#include "support/debug.h"
+#include "support/gettext.h"
 
 #include <map>
-#include <typeinfo>
 
+using namespace std;
 
 namespace lyx {
 
+extern bool quitting;
+
 class InsetName {
 public:
-       InsetName(std::string const & n, Inset::Code c)
-               : name(n), code(c) {}
-       std::string name;
-       Inset::Code code;
+       InsetName(string const & n, InsetCode c) : name(n), code(c) {}
+       string name;
+       InsetCode code;
 };
 
 
-typedef std::map<std::string, Inset::Code> TranslatorMap;
+typedef map<string, InsetCode> TranslatorMap;
 
 
 static TranslatorMap const build_translator()
 {
        InsetName const insetnames[] = {
-               InsetName("toc", Inset::TOC_CODE),
-               InsetName("quote", Inset::QUOTE_CODE),
-               InsetName("ref", Inset::REF_CODE),
-               InsetName("url", Inset::URL_CODE),
-               InsetName("htmlurl", Inset::HTMLURL_CODE),
-               InsetName("separator", Inset::SEPARATOR_CODE),
-               InsetName("ending", Inset::ENDING_CODE),
-               InsetName("label", Inset::LABEL_CODE),
-               InsetName("note", Inset::NOTE_CODE),
-               InsetName("accent", Inset::ACCENT_CODE),
-               InsetName("math", Inset::MATH_CODE),
-               InsetName("index", Inset::INDEX_CODE),
-               InsetName("nomenclature", Inset::NOMENCL_CODE),
-               InsetName("include", Inset::INCLUDE_CODE),
-               InsetName("graphics", Inset::GRAPHICS_CODE),
-               InsetName("bibitem", Inset::BIBITEM_CODE),
-               InsetName("bibtex", Inset::BIBTEX_CODE),
-               InsetName("text", Inset::TEXT_CODE),
-               InsetName("ert", Inset::ERT_CODE),
-               InsetName("foot", Inset::FOOT_CODE),
-               InsetName("margin", Inset::MARGIN_CODE),
-               InsetName("float", Inset::FLOAT_CODE),
-               InsetName("wrap", Inset::WRAP_CODE),
-               InsetName("specialchar", Inset::SPECIALCHAR_CODE),
-               InsetName("tabular", Inset::TABULAR_CODE),
-               InsetName("external", Inset::EXTERNAL_CODE),
-               InsetName("caption", Inset::CAPTION_CODE),
-               InsetName("mathmacro", Inset::MATHMACRO_CODE),
-               InsetName("cite", Inset::CITE_CODE),
-               InsetName("float_list", Inset::FLOAT_LIST_CODE),
-               InsetName("index_print", Inset::INDEX_PRINT_CODE),
-               InsetName("nomencl_print", Inset::NOMENCL_PRINT_CODE),
-               InsetName("optarg", Inset::OPTARG_CODE),
-               InsetName("environment", Inset::ENVIRONMENT_CODE),
-               InsetName("hfill", Inset::HFILL_CODE),
-               InsetName("newline", Inset::NEWLINE_CODE),
-               InsetName("line", Inset::LINE_CODE),
-               InsetName("branch", Inset::BRANCH_CODE),
-               InsetName("box", Inset::BOX_CODE),
-               InsetName("charstyle", Inset::CHARSTYLE_CODE),
-               InsetName("vspace", Inset::VSPACE_CODE),
-               InsetName("mathmacroarg", Inset::MATHMACROARG_CODE),
+               InsetName("toc", TOC_CODE),
+               InsetName("quote", QUOTE_CODE),
+               InsetName("ref", REF_CODE),
+               InsetName("href", HYPERLINK_CODE),
+               InsetName("separator", SEPARATOR_CODE),
+               InsetName("ending", ENDING_CODE),
+               InsetName("label", LABEL_CODE),
+               InsetName("note", NOTE_CODE),
+               InsetName("accent", ACCENT_CODE),
+               InsetName("math", MATH_CODE),
+               InsetName("index", INDEX_CODE),
+               InsetName("nomenclature", NOMENCL_CODE),
+               InsetName("include", INCLUDE_CODE),
+               InsetName("graphics", GRAPHICS_CODE),
+               InsetName("bibitem", BIBITEM_CODE),
+               InsetName("bibtex", BIBTEX_CODE),
+               InsetName("text", TEXT_CODE),
+               InsetName("ert", ERT_CODE),
+               InsetName("foot", FOOT_CODE),
+               InsetName("margin", MARGIN_CODE),
+               InsetName("float", FLOAT_CODE),
+               InsetName("wrap", WRAP_CODE),
+               InsetName("specialchar", SPECIALCHAR_CODE),
+               InsetName("tabular", TABULAR_CODE),
+               InsetName("external", EXTERNAL_CODE),
+               InsetName("caption", CAPTION_CODE),
+               InsetName("mathmacro", MATHMACRO_CODE),
+               InsetName("citation", CITE_CODE),
+               InsetName("floatlist", FLOAT_LIST_CODE),
+               InsetName("index_print", INDEX_PRINT_CODE),
+               InsetName("nomencl_print", NOMENCL_PRINT_CODE),
+               InsetName("optarg", OPTARG_CODE),
+               InsetName("environment", ENVIRONMENT_CODE),
+               InsetName("hfill", HFILL_CODE),
+               InsetName("newline", NEWLINE_CODE),
+               InsetName("line", LINE_CODE),
+               InsetName("branch", BRANCH_CODE),
+               InsetName("box", BOX_CODE),
+               InsetName("flex", FLEX_CODE),
+               InsetName("vspace", VSPACE_CODE),
+               InsetName("mathmacroarg", MATHMACROARG_CODE),
+               InsetName("listings", LISTINGS_CODE),
+               InsetName("info", INFO_CODE),
+               InsetName("collapsable", COLLAPSABLE_CODE),
+               InsetName("newpage", NEWPAGE_CODE),
        };
 
-       std::size_t const insetnames_size =
+       size_t const insetnames_size =
                sizeof(insetnames) / sizeof(insetnames[0]);
 
-       std::map<std::string, Inset::Code> data;
-       for (std::size_t i = 0; i != insetnames_size; ++i) {
+       map<string, InsetCode> data;
+       for (size_t i = 0; i != insetnames_size; ++i) {
                InsetName const & var = insetnames[i];
                data[var.name] = var.code;
        }
@@ -114,32 +119,31 @@ static TranslatorMap const build_translator()
 }
 
 
-/// pretty arbitrary dimensions
-Inset::Inset()
-       : dim_(10, 10, 10), background_color_(Color::background)
-{}
+docstring Inset::name() const
+{
+       return from_ascii("unknown");
+}
 
 
-Inset::Inset(Inset const & inset)
-       : dim_(inset.dim_), background_color_(inset.background_color_)
-{}
+docstring Inset::toolTip(BufferView const &, int, int) const
+{
+       return docstring();
+}
 
 
-std::auto_ptr<Inset> Inset::clone() const
+docstring Inset::contextMenu(BufferView const &, int, int) const
 {
-       std::auto_ptr<Inset> b = doClone();
-       BOOST_ASSERT(typeid(*b) == typeid(*this));
-       return b;
+       return docstring();
 }
 
 
-docstring Inset::insetName() const 
+Dimension const Inset::dimension(BufferView const & bv) const
 {
-       return from_ascii("unknown");
+       return bv.coordCache().getInsets().dim(this);
 }
 
 
-Inset::Code Inset::translate(std::string const & name)
+InsetCode insetCode(string const & name)
 {
        static TranslatorMap const translator = build_translator();
 
@@ -148,6 +152,20 @@ Inset::Code Inset::translate(std::string const & name)
 }
 
 
+string insetName(InsetCode c) 
+{
+       static TranslatorMap const translator = build_translator();
+
+       TranslatorMap::const_iterator it =  translator.begin();
+       TranslatorMap::const_iterator end = translator.end();
+       for (; it != end; ++it) {
+               if (it->second == c)
+                       return it->first;
+       }
+       return string();
+}
+
+
 void Inset::dispatch(Cursor & cur, FuncRequest & cmd)
 {
        cur.updateFlags(Update::Force | Update::FitCursor);
@@ -195,18 +213,15 @@ bool Inset::getStatus(Cursor &, FuncRequest const & cmd,
 }
 
 
-void Inset::edit(Cursor &, bool)
+void Inset::edit(Cursor &, bool, EntryDirection)
 {
-       LYXERR(Debug::INSETS) << BOOST_CURRENT_FUNCTION
-                             << ": edit left/right" << std::endl;
+       LYXERR(Debug::INSETS, "edit left/right");
 }
 
 
 Inset * Inset::editXY(Cursor &, int x, int y)
 {
-       LYXERR(Debug::INSETS) << BOOST_CURRENT_FUNCTION
-                             << ": x=" << x << " y= " << y
-                             << std::endl;
+       LYXERR(Debug::INSETS, "x: " << x << " y: " << y);
        return this;
 }
 
@@ -214,11 +229,9 @@ Inset * Inset::editXY(Cursor &, int x, int y)
 Inset::idx_type Inset::index(row_type row, col_type col) const
 {
        if (row != 0)
-               lyxerr << BOOST_CURRENT_FUNCTION
-                      << ": illegal row: " << row << std::endl;
+               LYXERR0("illegal row: " << row);
        if (col != 0)
-               lyxerr << BOOST_CURRENT_FUNCTION
-                      << ": illegal col: " << col << std::endl;
+               LYXERR0("illegal col: " << col);
        return 0;
 }
 
@@ -269,7 +282,7 @@ docstring const Inset::editMessage() const
 void Inset::cursorPos(BufferView const & /*bv*/, CursorSlice const &,
                bool, int & x, int & y) const
 {
-       lyxerr << "Inset::cursorPos called directly" << std::endl;
+       LYXERR0("Inset::cursorPos called directly");
        x = 100;
        y = 100;
 }
@@ -278,7 +291,7 @@ void Inset::cursorPos(BufferView const & /*bv*/, CursorSlice const &,
 void Inset::metricsMarkers(Dimension & dim, int framesize) const
 {
        dim.wid += 2 * framesize;
-       dim.asc += framesize;
+       dim.des += framesize;
 }
 
 
@@ -292,11 +305,13 @@ void Inset::metricsMarkers2(Dimension & dim, int framesize) const
 
 void Inset::drawMarkers(PainterInfo & pi, int x, int y) const
 {
-       Color::color pen_color = editing(pi.base.bv)?
-               Color::mathframe : Color::background;
+       ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
+               Color_mathframe : Color_mathcorners;
 
-       int const t = x + width() - 1;
-       int const d = y + descent();
+       Dimension const dim = dimension(*pi.base.bv);
+
+       int const t = x + dim.width() - 1;
+       int const d = y + dim.descent();
        pi.pain.line(x, d - 3, x, d, pen_color);
        pi.pain.line(t, d - 3, t, d, pen_color);
        pi.pain.line(x, d, x + 3, d, pen_color);
@@ -307,12 +322,13 @@ void Inset::drawMarkers(PainterInfo & pi, int x, int y) const
 
 void Inset::drawMarkers2(PainterInfo & pi, int x, int y) const
 {
-       Color::color pen_color = editing(pi.base.bv)?
-               Color::mathframe : Color::background;
+       ColorCode pen_color = mouseHovered() || editing(pi.base.bv)?
+               Color_mathframe : Color_mathcorners;
 
        drawMarkers(pi, x, y);
-       int const t = x + width() - 1;
-       int const a = y - ascent();
+       Dimension const dim = dimension(*pi.base.bv);
+       int const t = x + dim.width() - 1;
+       int const a = y - dim.ascent();
        pi.pain.line(x, a + 3, x, a, pen_color);
        pi.pain.line(t, a + 3, t, a, pen_color);
        pi.pain.line(x, a, x + 3, a, pen_color);
@@ -321,7 +337,7 @@ void Inset::drawMarkers2(PainterInfo & pi, int x, int y) const
 }
 
 
-bool Inset::editing(BufferView * bv) const
+bool Inset::editing(BufferView const * bv) const
 {
        return bv->cursor().isInside(this);
 }
@@ -341,57 +357,47 @@ int Inset::yo(BufferView const & bv) const
 
 bool Inset::covers(BufferView const & bv, int x, int y) const
 {
-       //lyxerr << "Inset::covers, x: " << x << " y: " << y
-       //      << " xo: " << xo(bv) << " yo: " << yo()
-       //      << " x1: " << xo(bv) << " x2: " << xo() + width()
-       //      << " y1: " << yo(bv) - ascent() << " y2: " << yo() + descent()
-       //      << std::endl;
-       return bv.coordCache().getInsets().has(this)
-                       && x >= xo(bv)
-                       && x <= xo(bv) + width()
-                       && y >= yo(bv) - ascent()
-                       && y <= yo(bv) + descent();
+       return bv.coordCache().getInsets().covers(this, x, y);
 }
 
 
-void Inset::dump() const
+InsetLayout const & Inset::getLayout(BufferParams const & bp) const
 {
-       Buffer buf("foo", 1);
-       write(buf, lyxerr);
+       return bp.getTextClass().insetlayout(name());  
 }
 
 
-void Inset::setBackgroundColor(Color_color color)
+void Inset::dump() const
 {
-       background_color_ = color;
+       Buffer buf("foo", 1);
+       write(buf, lyxerr);
 }
 
 
-Color_color Inset::backgroundColor() const
+ColorCode Inset::backgroundColor() const
 {
-       return Color::color(background_color_);
+       return Color_background;
 }
 
 
 void Inset::setPosCache(PainterInfo const & pi, int x, int y) const
 {
-       //lyxerr << "Inset:: position cache to " << x << " " << y << std::endl;
+       //LYXERR("Inset: set position cache to " << x << " " << y);
        pi.base.bv->coordCache().insets().add(this, x, y);
 }
 
 
-/////////////////////////////////////////
-
-bool isEditableInset(Inset const * inset)
+void Inset::setDimCache(MetricsInfo const & mi, Dimension const & dim) const
 {
-       return inset && inset->editable();
+       mi.base.bv->coordCache().insets().add(this, dim);
 }
 
 
-bool isHighlyEditableInset(Inset const * inset)
+Buffer const * Inset::updateFrontend() const
 {
-       return inset && inset->editable() == Inset::HIGHLY_EDITABLE;
+       if (quitting)
+               return 0;
+       return theApp()->updateInset(this);
 }
 
-
 } // namespace lyx