X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInset.cpp;h=cce0f327feb49aa1b9fbe56790e24ba918f31689;hb=6da7ee1be170629aa6647aa8b2d6cf66ea928a9b;hp=c615b78ab9d2665db88ab298c6554aeed6914c71;hpb=5d235f5251b4ba05f0492ac6aaf995ed94aa6a16;p=lyx.git diff --git a/src/insets/Inset.cpp b/src/insets/Inset.cpp index c615b78ab9..cce0f327fe 100644 --- a/src/insets/Inset.cpp +++ b/src/insets/Inset.cpp @@ -60,6 +60,11 @@ public: static InsetName insetnames[INSET_CODE_SIZE]; +// This list should be kept in sync with the list of dialogs in +// src/frontends/qt4/GuiView.cpp, I.e., if a dialog goes with an +// inset, the dialog should have the same name as the inset. +// Changes should be also recorded in LFUN_DIALOG_SHOW doxygen +// docs in LyXAction.cpp. static void build_translator() { static bool passed = false; @@ -80,7 +85,7 @@ static void build_translator() insetnames[NOMENCL_CODE] = InsetName("nomenclature"); insetnames[INCLUDE_CODE] = InsetName("include"); insetnames[GRAPHICS_CODE] = InsetName("graphics"); - insetnames[BIBITEM_CODE] = InsetName("bibitem"); + insetnames[BIBITEM_CODE] = InsetName("bibitem", _("Bibliography Entry")); insetnames[BIBTEX_CODE] = InsetName("bibtex"); insetnames[TEXT_CODE] = InsetName("text"); insetnames[ERT_CODE] = InsetName("ert", _("TeX Code")); @@ -89,6 +94,9 @@ static void build_translator() insetnames[FLOAT_CODE] = InsetName("float", _("Float")); insetnames[WRAP_CODE] = InsetName("wrap"); insetnames[SPECIALCHAR_CODE] = InsetName("specialchar"); + insetnames[IPA_CODE] = InsetName("ipa"); + insetnames[IPACHAR_CODE] = InsetName("ipachar"); + insetnames[IPADECO_CODE] = InsetName("ipadeco"); insetnames[TABULAR_CODE] = InsetName("tabular", _("Table")); insetnames[EXTERNAL_CODE] = InsetName("external"); insetnames[CAPTION_CODE] = InsetName("caption"); @@ -97,7 +105,7 @@ static void build_translator() insetnames[FLOAT_LIST_CODE] = InsetName("floatlist"); insetnames[INDEX_PRINT_CODE] = InsetName("index_print"); insetnames[NOMENCL_PRINT_CODE] = InsetName("nomencl_print"); - insetnames[OPTARG_CODE] = InsetName("optarg"); + insetnames[ARG_CODE] = InsetName("optarg"); insetnames[NEWLINE_CODE] = InsetName("newline"); insetnames[LINE_CODE] = InsetName("line"); insetnames[BRANCH_CODE] = InsetName("branch", _("Branch")); @@ -110,6 +118,7 @@ static void build_translator() insetnames[INFO_CODE] = InsetName("info", _("Info")); insetnames[COLLAPSABLE_CODE] = InsetName("collapsable"); insetnames[NEWPAGE_CODE] = InsetName("newpage"); + insetnames[SCRIPT_CODE] = InsetName("script"); insetnames[CELL_CODE] = InsetName("tablecell"); insetnames[MATH_AMSARRAY_CODE] = InsetName("mathamsarray"); insetnames[MATH_ARRAY_CODE] = InsetName("matharray"); @@ -117,6 +126,8 @@ static void build_translator() insetnames[MATH_BOLDSYMBOL_CODE] = InsetName("mathboldsymbol"); insetnames[MATH_BOX_CODE] = InsetName("mathbox"); insetnames[MATH_BRACE_CODE] = InsetName("mathbrace"); + insetnames[MATH_CANCEL_CODE] = InsetName("mathcancel"); + insetnames[MATH_CANCELTO_CODE] = InsetName("mathcancelto"); insetnames[MATH_CASES_CODE] = InsetName("mathcases"); insetnames[MATH_CHAR_CODE] = InsetName("mathchar"); insetnames[MATH_COLOR_CODE] = InsetName("mathcolor"); @@ -163,6 +174,7 @@ static void build_translator() insetnames[MATH_XARROW_CODE] = InsetName("mathxarrow"); insetnames[MATH_XYARROW_CODE] = InsetName("mathxyarrow"); insetnames[MATH_XYMATRIX_CODE] = InsetName("mathxymatrix"); + insetnames[MATH_DIAGRAM_CODE] = InsetName("mathdiagram"); insetnames[MATH_MACRO_CODE] = InsetName("mathmacro"); passed = true; @@ -179,12 +191,11 @@ Buffer & Inset::buffer() { if (!buffer_) { odocstringstream s; - lyxerr << "Inset: " << this - << " LyX Code: " << lyxCode() - << " name: " << insetName(lyxCode()) - << std::endl; - s << "LyX Code: " << lyxCode() << " name: " << name(); - LASSERT(false, /**/); + string const iname = insetName(lyxCode()); + LYXERR0("Inset: " << this << " LyX Code: " << lyxCode() + << " name: " << iname); + s << "LyX Code: " << lyxCode() << " name: " << iname; + LATTEST(false); throw ExceptionMessage(BufferException, from_ascii("Inset::buffer_ member not initialized!"), s.str()); } @@ -198,13 +209,20 @@ Buffer const & Inset::buffer() const } -bool Inset::isBufferValid() const +bool Inset::isBufferLoaded() const { return buffer_ && theBufferList().isLoaded(buffer_); } -docstring Inset::name() const +bool Inset::isBufferValid() const +{ + return buffer_ + && (isBufferLoaded() || buffer_->isClone()); +} + + +docstring Inset::layoutName() const { return from_ascii("unknown"); } @@ -221,15 +239,16 @@ bool Inset::allowEmpty() const return getLayout().isKeepEmpty(); } + bool Inset::forceLTR() const { return getLayout().forceLTR(); } -void Inset::initView() + +bool Inset::isInToc() const { - if (isLabeled()) - buffer().updateLabels(); + return getLayout().isInToc(); } @@ -239,9 +258,20 @@ docstring Inset::toolTip(BufferView const &, int, int) const } -docstring Inset::contextMenu(BufferView const &, int, int) const +void Inset::forOutliner(docstring &, size_t) const { - return docstring(); +} + + +string Inset::contextMenu(BufferView const &, int, int) const +{ + return contextMenuName(); +} + + +string Inset::contextMenuName() const +{ + return string(); } @@ -280,10 +310,11 @@ void Inset::dispatch(Cursor & cur, FuncRequest & cmd) { if (buffer_ == 0) { lyxerr << "Unassigned buffer_ member in Inset::dispatch()" << std::endl; - lyxerr << "LyX Code: " << lyxCode() << " name: " << insetName(lyxCode()) << std::endl; + lyxerr << "LyX Code: " << lyxCode() << " name: " + << insetName(lyxCode()) << std::endl; } else if (cur.buffer() != buffer_) lyxerr << "cur.buffer() != buffer_ in Inset::dispatch()" << std::endl; - cur.updateFlags(Update::Force | Update::FitCursor); + cur.screenUpdateFlags(Update::Force | Update::FitCursor); cur.dispatched(); doDispatch(cur, cmd); } @@ -296,6 +327,7 @@ bool Inset::showInsetDialog(BufferView * bv) const case ERT_CODE: case FLOAT_CODE: case BOX_CODE: + case BIBITEM_CODE: case BRANCH_CODE: case INFO_CODE: case MATH_SPACE_CODE: @@ -313,12 +345,12 @@ bool Inset::showInsetDialog(BufferView * bv) const void Inset::doDispatch(Cursor & cur, FuncRequest &cmd) { - switch (cmd.action) { + switch (cmd.action()) { case LFUN_MOUSE_RELEASE: // if the derived inset did not explicitly handle mouse_release, // we assume we request the settings dialog if (!cur.selection() && cmd.button() == mouse_button::button1 - && hasSettings()) { + && clickable(cmd.x(), cmd.y()) && hasSettings()) { FuncRequest tmpcmd(LFUN_INSET_SETTINGS); dispatch(cur, tmpcmd); } @@ -333,7 +365,7 @@ void Inset::doDispatch(Cursor & cur, FuncRequest &cmd) break; default: - cur.noUpdate(); + cur.noScreenUpdate(); cur.undispatched(); break; } @@ -351,11 +383,16 @@ bool Inset::getStatus(Cursor &, FuncRequest const & cmd, // Dialogs::checkStatus() ensures that the dialog is deactivated if // LFUN_INSET_APPLY is disabled. - switch (cmd.action) { + switch (cmd.action()) { case LFUN_INSET_MODIFY: // Allow modification of our data. // This needs to be handled in the doDispatch method of our // instantiatable children. + // FIXME: Why don't we let the insets determine whether this + // should be enabled or not ? Now we need this check for + // the tabular features. (vfr) + if (cmd.getArg(0) == "tabular") + return false; flag.setEnabled(true); return true; @@ -372,10 +409,19 @@ bool Inset::getStatus(Cursor &, FuncRequest const & cmd, flag.setEnabled(enable); return true; } else { - flag.setEnabled(false); return false; } + case LFUN_IN_MATHMACROTEMPLATE: + // By default we're not in a MathMacroTemplate inset + flag.setEnabled(false); + return true; + + case LFUN_IN_IPA: + // By default we're not in an IPA inset + flag.setEnabled(false); + return true; + default: break; } @@ -482,7 +528,7 @@ void Inset::metricsMarkers2(Dimension & dim, int framesize) const void Inset::drawMarkers(PainterInfo & pi, int x, int y) const { - ColorCode pen_color = mouseHovered() || editing(pi.base.bv)? + ColorCode pen_color = mouseHovered(pi.base.bv) || editing(pi.base.bv)? Color_mathframe : Color_mathcorners; Dimension const dim = dimension(*pi.base.bv); @@ -499,7 +545,7 @@ void Inset::drawMarkers(PainterInfo & pi, int x, int y) const void Inset::drawMarkers2(PainterInfo & pi, int x, int y) const { - ColorCode pen_color = mouseHovered() || editing(pi.base.bv)? + ColorCode pen_color = mouseHovered(pi.base.bv) || editing(pi.base.bv)? Color_mathframe : Color_mathcorners; drawMarkers(pi, x, y); @@ -542,7 +588,7 @@ InsetLayout const & Inset::getLayout() const { if (!buffer_) return DocumentClass::plainInsetLayout(); - return buffer().params().documentClass().insetLayout(name()); + return buffer().params().documentClass().insetLayout(layoutName()); } @@ -586,10 +632,22 @@ void Inset::setDimCache(MetricsInfo const & mi, Dimension const & dim) const Buffer const * Inset::updateFrontend() const { + //FIXME (Abdel 03/12/10): see bugs #6814 and #6949 + // If the Buffer is null and we end up here this is most probably because we + // are in the CutAndPaste stack. See InsetGraphics, RenderGraphics and + // RenderPreview. + if (!buffer_) + return 0; return theApp() ? theApp()->updateInset(this) : 0; } +bool Inset::resetFontEdit() const +{ + return getLayout().resetsFont() || !inheritFont(); +} + + docstring Inset::completionPrefix(Cursor const &) const { return docstring();