]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcommand.C
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetcommand.C
index 5e6430cb8e7f1744094a59408be098e50321a64e..ff815add1f2b39e8a2fa6849190332b0cdc559c5 100644 (file)
 #include "BufferView.h"
 #include "dispatchresult.h"
 #include "funcrequest.h"
+#include "FuncStatus.h"
 #include "lyxlex.h"
 #include "metricsinfo.h"
 
-#include "support/std_sstream.h"
+#include <sstream>
 
 
 using std::string;
@@ -30,9 +31,9 @@ using std::ostringstream;
 
 InsetCommand::InsetCommand(InsetCommandParams const & p,
                           string const & mailer_name)
-       : p_(p.getCmdName(), p.getContents(), p.getOptions()),
+       : p_(p.getCmdName(), p.getContents(), p.getOptions(), p.getSecOptions()),
          mailer_name_(mailer_name),
-         set_label_(false)
+         updateButtonLabel_(true)
 {}
 
 
@@ -45,8 +46,8 @@ InsetCommand::~InsetCommand()
 
 void InsetCommand::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       if (!set_label_) {
-               set_label_ = true;
+       if (updateButtonLabel_) {
+               updateButtonLabel_ = false;
                button_.update(getScreenLabel(*mi.base.bv->buffer()),
                               editable() != NOT_EDITABLE);
        }
@@ -65,7 +66,7 @@ void InsetCommand::draw(PainterInfo & pi, int x, int y) const
 void InsetCommand::setParams(InsetCommandParams const & p)
 {
        p_ = p;
-       set_label_ = false;
+       updateButtonLabel_ = true;
 }
 
 
@@ -98,18 +99,20 @@ int InsetCommand::docbook(Buffer const &, ostream &,
 }
 
 
-void InsetCommand::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
+void InsetCommand::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
        switch (cmd.action) {
+       case LFUN_INSET_REFRESH:
+               updateButtonLabel_ = true;
+               break;
+
        case LFUN_INSET_MODIFY: {
                InsetCommandParams p;
                InsetCommandMailer::string2params(mailer_name_, cmd.argument, p);
-               if (p.getCmdName().empty()) {   
-                       cur.notdispatched();
-               } else {
+               if (p.getCmdName().empty())
+                       cur.noUpdate();
+               else
                        setParams(p);
-                       cur.bv().update();
-               }
                break;
        }
 
@@ -125,13 +128,34 @@ void InsetCommand::priv_dispatch(LCursor & cur, FuncRequest const & cmd)
        }
 
        default:
-               InsetOld::priv_dispatch(cur, cmd);
+               InsetBase::doDispatch(cur, cmd);
                break;
        }
 
 }
 
 
+bool InsetCommand::getStatus(LCursor & cur, FuncRequest const & cmd,
+       FuncStatus & status) const
+{
+       switch (cmd.action) {
+       // suppress these
+       case LFUN_INSET_ERT:
+               status.enabled(false);
+               return true;
+       // we handle these
+       case LFUN_INSET_REFRESH:
+       case LFUN_INSET_MODIFY:
+       case LFUN_INSET_DIALOG_UPDATE:
+       case LFUN_INSET_DIALOG_SHOW:
+               status.enabled(true);
+               return true;
+       default:
+               return InsetBase::getStatus(cur, cmd, status);
+       }
+}
+
+
 InsetCommandMailer::InsetCommandMailer(string const & name,
                                       InsetCommand & inset)
        : name_(name), inset_(inset)