]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormUrl.h
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / FormUrl.h
index c82f4f90254e78979b4e5ba2b5955aabdd7012c3..f5b278527f548f769525c517984e88cf7c41c606 100644 (file)
 // -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file FormUrl.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Angus Leeming
  *
- *           Copyright 2000 The LyX Team.
- *
- * ======================================================
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMURL_H
 #define FORMURL_H
 
-#include "DialogBase.h"
-#include "LString.h"
-
-#include "support/utility.hpp"
 
-class Dialogs;
-class LyXView;
-class InsetCommandParams;
-class InsetUrl;
-struct FD_form_url;
+#include "FormDialogView.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+class ControlCommand;
+struct FD_url;
 
-/** This class provides an XForms implementation of the FormUrl Dialog.
+/** This class provides an XForms implementation of the Url Dialog.
  */
-class FormUrl : public DialogBase, public noncopyable {
+class FormUrl : public FormController<ControlCommand, FormView<FD_url> > {
 public:
-       /**@name Constructors and Destructors */
-       //@{
-       ///
-       FormUrl(LyXView *, Dialogs *);
        ///
-       ~FormUrl();
-       //@}
-
-       /**@name Real per-instance Callback Methods */
-       //@{
-       static  int WMHideCB(FL_FORM *, void *);
-       static void OKCB(FL_OBJECT *, long);
-       static void CancelCB(FL_OBJECT *, long);
-       //@}
-
+       FormUrl(Dialog &);
 private:
-       /**@name Slot Methods */
-       //@{
-       /// Create the dialog if necessary, update it and display it.
-       void createInset( string const & );
-       /// 
-       void showInset( InsetUrl * );
-       /// 
-       void show();
-       /// Hide the dialog.
-       void hide();
-       ///
-       void update();
-       //@}
-
-       /**@name Dialog internal methods */
-       //@{
-       /// Apply from dialog
-       void apply();
+       /// Apply from dialog (modify or create inset)
+       virtual void apply();
        /// Build the dialog
-       void build();
-       ///
-       FD_form_url * build_url();
-       /// Explicitly free the dialog.
-       void free();
-       //@}
-
-       /**@name Private Data */
-       //@{
-       /// Real GUI implementation.
-       FD_form_url * dialog_;
-       /** Which LyXFunc do we use?
-           We could modify Dialogs to have a visible LyXFunc* instead and
-           save a couple of bytes per dialog.
-       */
-       LyXView * lv_;
-       /** Which Dialogs do we belong to?
-           Used so we can get at the signals we have to connect to.
-       */
-       Dialogs * d_;
-       /// Update connection.
-       Connection u_;
-       /// Hide connection.
-       Connection h_;
-       /// inset::hide connection.
-       Connection ih_;
-       ///
-       InsetUrl * inset_;
-       ///
-       bool dialogIsOpen;
-       ///
-       InsetCommandParams * params;
-       //@}
+       virtual void build();
+       /// Update dialog before showing it
+       virtual void update();
 };
 
-#endif
+#endif // FORMURL_H