]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiInclude.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiInclude.h
index dbed834854893a5ef1f705ed3869b27fca066dd9..e5ef7b668907c2d2cf870d01137ca0175939ce30 100644 (file)
@@ -4,6 +4,8 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
+ * \author Alejandro Aguilar Sierra
+ * \author Angus Leeming
  * \author John Levon
  *
  * Full author contact details are available in file CREDITS.
 #ifndef GUIINCLUDE_H
 #define GUIINCLUDE_H
 
-#include "GuiDialogView.h"
-#include "ControlInclude.h"
+#include "GuiDialog.h"
 #include "ui_IncludeUi.h"
 
-#include <QDialog>
+#include "insets/InsetCommandParams.h"
+
 
 namespace lyx {
 namespace frontend {
 
-class GuiInclude;
-
-class GuiIncludeDialog : public QDialog, public Ui::IncludeUi {
+class GuiInclude : public GuiDialog, public Ui::IncludeUi
+{
        Q_OBJECT
-public:
-       GuiIncludeDialog(GuiInclude * form);
 
-       void updateLists();
+public:
+       GuiInclude(GuiView & lv);
 
-       virtual void showView();
-       /// validate listings parameters and return an error message, if any
-       docstring validate_listings_params();
-protected Q_SLOTS:
-       virtual void change_adaptor();
-       virtual void editClicked();
-       virtual void browseClicked();
-       virtual void typeChanged(int v);
+private Q_SLOTS:
+       void change_adaptor();
+       /// edit the child document, .lyx file will be opened in lyx
+       /// other formats will be edited by external applications.
+       void edit();
+       /// browse for a file
+       void browse();
+       ///
+       void typeChanged(int v);
        /// AFAIK, QValidator only works for QLineEdit so
        /// I have to validate listingsED (QTextEdit) manually.
        /// This function displays a hint or error message returned by
        /// validate_listings_params
-       void set_listings_msg();
-protected:
-       virtual void closeEvent(QCloseEvent * e);
-private:
-       GuiInclude * form_;
-};
+       void setListingsMsg();
 
+private:
+       ///
+       bool initialiseParams(std::string const & data);
+       ///
+       void paramsToDialog(InsetCommandParams const & params_);
+       /// clean-up on hide.
+       void clearParams() { params_.clear(); }
+       /// clean-up on hide.
+       void dispatchParams();
+       ///
+       bool isBufferDependent() const { return true; }
 
-class GuiInclude : public GuiView<GuiIncludeDialog>
-{
-public:
        ///
-       friend class GuiIncludeDialog;
+       enum Type {
+               ///
+               INPUT,
+               ///
+               VERBATIM,
+               ///
+               INCLUDE,
+               ///
+               LISTINGS,
+       };
        ///
-       GuiInclude(GuiDialog &);
-       /// parent controller
-       ControlInclude & controller()
-       { return static_cast<ControlInclude &>(this->getController()); }
-       /// parent controller
-       ControlInclude const & controller() const
-       { return static_cast<ControlInclude const &>(this->getController()); }
-protected:
-       virtual bool isValid();
-private:
+       void updateLists();
+       /// validate listings parameters and return an error message, if any
+       docstring validate_listings_params();
+       ///
+       bool isValid();
        /// Apply changes
-       virtual void applyView();
+       void applyView();
        /// update
-       virtual void update_contents();
-       /// build the dialog
-       virtual void build_dialog();
+       void updateContents() {}
+       /// Browse for a file
+       QString browse(QString const &, Type) const;
 
-       /// edit the child document, .lyx file will be opened in lyx
-       /// other formats will be edited by external applications.
-       void edit();
-
-       /// browse for a file
-       void browse();
+private:
+       ///
+       InsetCommandParams params_;
 };
 
 } // namespace frontend