]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBranch.cpp
Restore XHTML output for InsetListings.
[lyx.git] / src / insets / InsetBranch.cpp
index 67ef02f193f4511d8662bf814d9182591d1b3690..24cc7c92361aaffb32dae951703a92f2b9e7b2b1 100644 (file)
 
 #include "Buffer.h"
 #include "BufferParams.h"
+#include "BufferView.h"
 #include "BranchList.h"
+#include "ColorSet.h"
+#include "Counters.h"
 #include "Cursor.h"
 #include "DispatchResult.h"
 #include "FuncRequest.h"
 #include "FuncStatus.h"
-#include "gettext.h"
-#include "Color.h"
 #include "Lexer.h"
-#include "Paragraph.h"
 #include "OutputParams.h"
+#include "output_xhtml.h"
+#include "TextClass.h"
+#include "TocBackend.h"
 
-#include <sstream>
-
-
-namespace lyx {
+#include "support/debug.h"
+#include "support/gettext.h"
+#include "support/lstrings.h"
 
-using std::string;
-using std::auto_ptr;
-using std::istringstream;
-using std::ostream;
-using std::ostringstream;
+#include "frontends/Application.h"
 
+#include <sstream>
 
-void InsetBranch::init()
-{
-       setButtonLabel();
-}
+using namespace std;
 
 
-InsetBranch::InsetBranch(BufferParams const & bp,
-                        InsetBranchParams const & params)
-       : InsetCollapsable(bp), params_(params)
-{
-       init();
-}
-
+namespace lyx {
 
-InsetBranch::InsetBranch(InsetBranch const & in)
-       : InsetCollapsable(in), params_(in.params_)
-{
-       init();
-}
+InsetBranch::InsetBranch(Buffer * buf, InsetBranchParams const & params)
+       : InsetCollapsable(buf, InsetText::DefaultLayout), params_(params)
+{}
 
 
 InsetBranch::~InsetBranch()
 {
-       InsetBranchMailer(*this).hideDialog();
+       hideDialogs("branch", this);
 }
 
 
-auto_ptr<Inset> InsetBranch::doClone() const
+void InsetBranch::write(ostream & os) const
 {
-       return auto_ptr<Inset>(new InsetBranch(*this));
-}
-
-
-docstring const InsetBranch::editMessage() const
-{
-       return _("Opened Branch Inset");
+       params_.write(os);
+       InsetCollapsable::write(os);
 }
 
 
-void InsetBranch::write(Buffer const & buf, ostream & os) const
+void InsetBranch::read(Lexer & lex)
 {
-       params_.write(os);
-       InsetCollapsable::write(buf, os);
+       params_.read(lex);
+       InsetCollapsable::read(lex);
 }
 
 
-void InsetBranch::read(Buffer const & buf, Lexer & lex)
+docstring InsetBranch::toolTip(BufferView const & bv, int x, int y) const
 {
-       params_.read(lex);
-       InsetCollapsable::read(buf, lex);
-       setButtonLabel();
+       docstring const status = isBranchSelected() ? 
+               _("active") : _("non-active");
+       docstring const heading = 
+               support::bformat(_("Branch (%1$s): %2$s"), status, params_.branch);
+       docstring const contents = InsetCollapsable::toolTip(bv, x, y);
+       if (isOpen(bv) || contents.empty())
+               return heading;
+       else
+               return heading + from_ascii("\n") + contents;
 }
 
 
-void InsetBranch::setButtonLabel()
+docstring const InsetBranch::buttonLabel(BufferView const & bv) const
 {
-       Font font(Font::ALL_SANE);
-       font.decSize();
-       font.decSize();
-
        docstring s = _("Branch: ") + params_.branch;
+       Buffer const & realbuffer = *buffer().masterBuffer();
+       BranchList const & branchlist = realbuffer.params().branchlist();
+       if (!branchlist.find(params_.branch)
+           && buffer().params().branchlist().find(params_.branch))
+               s = _("Branch (child only): ") + params_.branch;
+       else if (!branchlist.find(params_.branch))
+               s = _("Branch (undefined): ") + params_.branch;
        if (!params_.branch.empty()) {
                // FIXME UNICODE
-               Color_color c = lcolor.getFromLyXName(to_utf8(params_.branch));
-               if (c == Color::none) {
+               ColorCode c = lcolor.getFromLyXName(to_utf8(params_.branch));
+               if (c == Color_none)
                        s = _("Undef: ") + s;
-               }
        }
-       font.setColor(Color::foreground);
-       setLabel(isOpen() ? s : getNewLabel(s) );
-       setLabelFont(font);
+       s = char_type(isBranchSelected() ? 0x2714 : 0x2716) + s;
+       if (decoration() == InsetLayout::CLASSIC)
+               return isOpen(bv) ? s : getNewLabel(s);
+       else
+               return params_.branch + ": " + getNewLabel(s);
 }
 
 
-Color_color InsetBranch::backgroundColor() const
+ColorCode InsetBranch::backgroundColor() const
 {
-       if (!params_.branch.empty()) {
-               // FIXME UNICODE
-               Color_color c = lcolor.getFromLyXName(to_utf8(params_.branch));
-               if (c == Color::none) {
-                       c = Color::error;
-               }
-               return c;
-       } else
+       if (params_.branch.empty())
                return Inset::backgroundColor();
+       // FIXME UNICODE
+       ColorCode c = lcolor.getFromLyXName(to_utf8(params_.branch));
+       if (c == Color_none)
+               c = Color_error;
+       return c;
 }
 
 
 bool InsetBranch::showInsetDialog(BufferView * bv) const
 {
-       InsetBranchMailer(const_cast<InsetBranch &>(*this)).showDialog(bv);
+       bv->showDialog("branch", params2string(params()),
+                       const_cast<InsetBranch *>(this));
        return true;
 }
 
@@ -137,46 +129,34 @@ void InsetBranch::doDispatch(Cursor & cur, FuncRequest & cmd)
        switch (cmd.action) {
        case LFUN_INSET_MODIFY: {
                InsetBranchParams params;
-               InsetBranchMailer::string2params(to_utf8(cmd.argument()), params);
+               InsetBranch::string2params(to_utf8(cmd.argument()), params);
                params_.branch = params.branch;
-               setButtonLabel();
                break;
        }
 
-       case LFUN_MOUSE_PRESS:
-               if (cmd.button() != mouse_button::button3)
-                       InsetCollapsable::doDispatch(cur, cmd);
-               else
-                       cur.undispatched();
-               break;
-
        case LFUN_INSET_DIALOG_UPDATE:
-               InsetBranchMailer(*this).updateDialog(&cur.bv());
+               cur.bv().updateDialog("branch", params2string(params()));
                break;
 
-       case LFUN_MOUSE_RELEASE:
-               if (cmd.button() == mouse_button::button3 && hitButton(cmd))
-                       InsetBranchMailer(*this).showDialog(&cur.bv());
-               else
-                       InsetCollapsable::doDispatch(cur, cmd);
+       case LFUN_BRANCH_ACTIVATE:
+       case LFUN_BRANCH_DEACTIVATE: {
+               // FIXME: I do not like this cast, but have no other idea...
+               Buffer const * buf = buffer().masterBuffer();
+               BranchList const & branchlist = buf->params().branchlist();
+               Branch * our_branch = const_cast<Branch *>(branchlist.find(params_.branch));
+               if (!our_branch) {
+                       // child only?
+                       our_branch = buffer().params().branchlist().find(params_.branch);
+                       if (!our_branch)
+                               break;
+               }
+               our_branch->setSelected(cmd.action == LFUN_BRANCH_ACTIVATE);
                break;
-
+       }
 
        case LFUN_INSET_TOGGLE:
-               if (cmd.argument() == "assign") {
-                       // The branch inset uses "assign".
-                       if (isBranchSelected(cur.buffer())) {
-                               if (status() != Open)
-                                       setStatus(cur, Open);
-                               else
-                                       cur.undispatched();
-                       } else {
-                               if (status() != Collapsed)
-                                       setStatus(cur, Collapsed);
-                               else
-                                       cur.undispatched();
-                       }
-               }
+               if (cmd.argument() == "assign")
+                       setStatus(cur, isBranchSelected() ? Open : Collapsed);
                else
                        InsetCollapsable::doDispatch(cur, cmd);
                break;
@@ -194,23 +174,23 @@ bool InsetBranch::getStatus(Cursor & cur, FuncRequest const & cmd,
        switch (cmd.action) {
        case LFUN_INSET_MODIFY:
        case LFUN_INSET_DIALOG_UPDATE:
-               flag.enabled(true);
+               flag.setEnabled(true);
                break;
 
-       case LFUN_INSET_TOGGLE:
-               if (cmd.argument() == "open" || cmd.argument() == "close" ||
-                   cmd.argument() == "toggle")
-                       flag.enabled(true);
-               else if (cmd.argument() == "assign"
-                          || cmd.argument().empty()) {
-                       if (isBranchSelected(cur.buffer()))
-                               flag.enabled(status() != Open);
-                       else
-                               flag.enabled(status() != Collapsed);
-               } else
-                       flag.enabled(true);
+       case LFUN_BRANCH_ACTIVATE:
+               flag.setEnabled(!isBranchSelected());
+               break;
+
+       case LFUN_BRANCH_DEACTIVATE:
+               flag.setEnabled(isBranchSelected());
                break;
 
+       case LFUN_INSET_TOGGLE:
+               if (cmd.argument() == "assign")
+                       flag.setEnabled(true);
+               else
+                       return InsetCollapsable::getStatus(cur, cmd, flag);     
+
        default:
                return InsetCollapsable::getStatus(cur, cmd, flag);
        }
@@ -218,110 +198,118 @@ bool InsetBranch::getStatus(Cursor & cur, FuncRequest const & cmd,
 }
 
 
-bool InsetBranch::isBranchSelected(Buffer const & buffer) const
+bool InsetBranch::isBranchSelected() const
 {
-       Buffer const & realbuffer = *buffer.getMasterBuffer();
+       Buffer const & realbuffer = *buffer().masterBuffer();
        BranchList const & branchlist = realbuffer.params().branchlist();
-       BranchList::const_iterator const end = branchlist.end();
-       BranchList::const_iterator it =
-               std::find_if(branchlist.begin(), end,
-                            BranchNamesEqual(params_.branch));
-       if (it == end)
-               return false;
-       return it->getSelected();
+       Branch const * ourBranch = branchlist.find(params_.branch);
+
+       if (!ourBranch) {
+               // this branch is defined in child only
+               ourBranch = buffer().params().branchlist().find(params_.branch);
+               if (!ourBranch)
+                       return false;
+       }
+       return ourBranch->isSelected();
 }
 
 
-int InsetBranch::latex(Buffer const & buf, odocstream & os,
-                      OutputParams const & runparams) const
+int InsetBranch::latex(odocstream & os, OutputParams const & runparams) const
 {
-       return isBranchSelected(buf) ?
-               InsetText::latex(buf, os, runparams) : 0;
+       return isBranchSelected() ?  InsetText::latex(os, runparams) : 0;
 }
 
 
-int InsetBranch::plaintext(Buffer const & buf, odocstream & os,
+int InsetBranch::plaintext(odocstream & os,
                           OutputParams const & runparams) const
 {
-       if (!isBranchSelected(buf))
+       if (!isBranchSelected())
                return 0;
 
-       os << '[' << buf.B_("branch") << ' ' << params_.branch << ":\n";
-       InsetText::plaintext(buf, os, runparams);
+       os << '[' << buffer().B_("branch") << ' ' << params_.branch << ":\n";
+       InsetText::plaintext(os, runparams);
        os << "\n]";
 
        return PLAINTEXT_NEWLINE + 1; // one char on a separate line
 }
 
 
-int InsetBranch::docbook(Buffer const & buf, odocstream & os,
+int InsetBranch::docbook(odocstream & os,
                         OutputParams const & runparams) const
 {
-       return isBranchSelected(buf) ?
-               InsetText::docbook(buf, os, runparams) : 0;
+       return isBranchSelected() ?  InsetText::docbook(os, runparams) : 0;
 }
 
 
-void InsetBranch::textString(Buffer const & buf, odocstream & os) const
+docstring InsetBranch::xhtml(XHTMLStream & xs, OutputParams const & rp) const
 {
-       if (isBranchSelected(buf))
-               os << paragraphs().begin()->asString(buf, true);
+       if (isBranchSelected())
+                return InsetText::xhtml(xs, rp);
+       return docstring();
 }
 
 
-void InsetBranch::validate(LaTeXFeatures & features) const
+void InsetBranch::tocString(odocstream & os) const
 {
-       InsetText::validate(features);
+       if (isBranchSelected())
+               InsetCollapsable::tocString(os);
 }
 
 
+void InsetBranch::validate(LaTeXFeatures & features) const
+{
+       if (isBranchSelected())
+               InsetCollapsable::validate(features);
+}
 
-string const InsetBranchMailer::name_("branch");
 
-InsetBranchMailer::InsetBranchMailer(InsetBranch & inset)
-       : inset_(inset)
-{}
+docstring InsetBranch::contextMenu(BufferView const &, int, int) const
+{
+       return from_ascii("context-branch");
+}
 
 
-string const InsetBranchMailer::inset2string(Buffer const &) const
+bool InsetBranch::isMacroScope() const 
 {
-       return params2string(inset_.params());
+       // Its own scope if not selected by buffer
+       return !isBranchSelected();
 }
 
 
-string const InsetBranchMailer::params2string(InsetBranchParams const & params)
+string InsetBranch::params2string(InsetBranchParams const & params)
 {
        ostringstream data;
-       data << name_ << ' ';
+       data << "branch" << ' ';
        params.write(data);
        return data.str();
 }
 
 
-void InsetBranchMailer::string2params(string const & in,
-                                     InsetBranchParams & params)
+void InsetBranch::string2params(string const & in, InsetBranchParams & params)
 {
        params = InsetBranchParams();
        if (in.empty())
                return;
 
        istringstream data(in);
-       Lexer lex(0,0);
+       Lexer lex;
        lex.setStream(data);
+       lex.setContext("InsetBranch::string2params");
+       lex >> "branch" >> "Branch";
+       params.read(lex);
+}
 
-       string name;
-       lex >> name;
-       if (name != name_)
-               return print_mailer_error("InsetBranchMailer", in, 1, name_);
-
-       // This is part of the inset proper that is usually swallowed
-       // by Text::readInset
-       string id;
-       lex >> id;
-       if (!lex || id != "Branch")
-               return print_mailer_error("InsetBranchMailer", in, 2, "Branch");
 
-       params.read(lex);
+void InsetBranch::addToToc(DocIterator const & cpit)
+{
+       DocIterator pit = cpit;
+       pit.push_back(CursorSlice(*this));
+
+       Toc & toc = buffer().tocBackend().toc("branch");
+       docstring const str = params_.branch + ": " + text().getPar(0).asString();
+       toc.push_back(TocItem(pit, 0, str));
+       // Proceed with the rest of the inset.
+       InsetCollapsable::addToToc(cpit);
 }
 
 
@@ -333,7 +321,8 @@ void InsetBranchParams::write(ostream & os) const
 
 void InsetBranchParams::read(Lexer & lex)
 {
-       lex >> branch;
+       lex.eatLine();
+       branch = lex.getDocString();
 }
 
 } // namespace lyx