]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlTabularCreate.h
Add a buffer_path arg to InsetGraphicsMailer's params2string, string2params.
[lyx.git] / src / frontends / controllers / ControlTabularCreate.h
index 7f9ee592de8bbb6f3561c8f0a163b61662c62d3d..ad15d77c924f19ea7515df21bac0e22f85966024 100644 (file)
@@ -1,45 +1,41 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *           Copyright 2001 The LyX Team.
+// -*- C++ -*-
+/**
+ * \file ControlTabularCreate.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *======================================================
+ * \author unknown
  *
- * \file ControlTabularCreate.h
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef CONTROLTABULARCREATE_H
 #define CONTROLTABULARCREATE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
+#include "Dialog.h"
 #include <utility>
-#include "ControlDialogs.h"
 
 /** A controller for the TabularCreate Dialog.
  */
-class ControlTabularCreate : public ControlDialog<ControlConnectBD> {
+class ControlTabularCreate : public Dialog::Controller {
 public:
-       /// 
-       ControlTabularCreate(LyXView &, Dialogs &);
-       typedef std::pair<unsigned int, unsigned int> rowsCols;
+       ///
+       ControlTabularCreate(Dialog &);
+       ///
+       virtual bool initialiseParams(string const & data);
+       /// clean-up on hide.
+       virtual void clearParams();
+       ///
+       virtual void dispatchParams();
+       ///
+       virtual bool isBufferDependent() const { return true; }
 
        ///
-       rowsCols & params();
+       typedef std::pair<unsigned int, unsigned int> rowsCols;
+       ///
+       rowsCols & params() { return params_; }
 
 private:
-       /// Apply from dialog
-       virtual void apply();
-
-       /// set the params before show or update
-       virtual void setParams();
-    
        /// rows, cols params
        rowsCols params_;
 };