]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormError.C
controller-view split of FormLog and FormVCLog.
[lyx.git] / src / frontends / xforms / FormError.C
index 9033ff487386cfde0dfef9c3a28e280be7218695..0a6b5b2d1a583f3e926ddb05de99f861742dd32a 100644 (file)
 #include "FormError.h"
 #include "form_error.h"
 #include "insets/inseterror.h"
+#include "support/LAssert.h"
 
-static int minh, minw;
+using SigC::slot;
 
-FormError::FormError( LyXView * lv, Dialogs * d )
-       : FormInset( lv, d, _("LaTeX Error") ),
-         dialog_(0), inset_(0), message_("")
+FormError::FormError(LyXView * lv, Dialogs * d)
+       : FormInset( lv, d, _("LaTeX Error")),
+         inset_(0)
 {
+       Assert(lv && d);
        // let the dialog be shown
        // This is a permanent connection so we won't bother
        // storing a copy because we won't be disconnecting.
@@ -33,15 +35,9 @@ FormError::FormError( LyXView * lv, Dialogs * d )
 }
 
 
-FormError::~FormError()
-{
-       delete dialog_;
-}
-
-
 FL_FORM * FormError::form() const
 {
-       if ( dialog_ ) return dialog_->form;
+       if (dialog_.get()) return dialog_->form;
        return 0;
 }
 
@@ -49,42 +45,37 @@ FL_FORM * FormError::form() const
 void FormError::disconnect()
 {
        inset_ = 0;
-       message_.empty();
+       message_.erase();
        FormInset::disconnect();
 }
 
 
-void FormError::showInset( InsetError * inset )
+void FormError::showInset(InsetError * inset)
 {
-       if (inset == 0) return;
+       if (inset == 0) return; // Is this _really_ allowed? (Lgb)
 
        // If connected to another inset, disconnect from it.
        if (inset_)
                ih_.disconnect();
 
-       inset_    = inset;
-       message_  = inset->getContents();
+       inset_ = inset;
+       message_ = inset->getContents();
+       ih_ = inset->hideDialog.connect(slot(this, &FormError::hide));
        show();
 }
 
 
-void FormError::update(bool switched)
+void FormError::update()
 {
-       if (switched) {
-               hide();
-               return;
-       }
-
-       fl_set_form_minsize(form(), minw, minh);
        fl_set_object_label(dialog_->message, message_.c_str());
 }
 
 
 void FormError::build()
 {
-       dialog_ = build_error();
+       dialog_.reset(build_error());
 
-       // XFORMS bug workaround
-       // Define the min/max dimensions. Actually applied in update()
-       minw = form()->w; minh = form()->h;
+        // Manage the cancel/close button
+       bc().setCancel(dialog_->button_cancel);
+       bc().refresh();
 }