]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiBranch.h
* a configuration value for the mouse wheel scrolling speed:
[lyx.git] / src / frontends / qt4 / GuiBranch.h
index b0a78638c69f1c7ec767c1fb2abacfaa43f40d26..e33e151a73c7ec221ffbf4d7a6e3b80744e38e09 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 Angus Leeming
+ * \author Martin Vermeer
  * \author Jürgen Spitzmüller
  *
  * Full author contact details are available in file CREDITS.
 #define GUIBRANCH_H
 
 #include "GuiDialog.h"
-#include "ControlBranch.h"
 #include "ui_BranchUi.h"
+#include "insets/InsetBranch.h"
+
 
 namespace lyx {
 namespace frontend {
 
-class GuiBranchDialog : public GuiDialog, public Ui::BranchUi
+class GuiBranch : public GuiDialog, public Ui::BranchUi
 {
        Q_OBJECT
 
 public:
-       GuiBranchDialog(LyXView & lv);
+       GuiBranch(GuiView & lv);
 
 private Q_SLOTS:
        void change_adaptor();
@@ -32,14 +35,22 @@ private Q_SLOTS:
 private:
        ///
        void closeEvent(QCloseEvent * e);
-       /// parent controller
-       ControlBranch & controller();
        ///  Apply changes
        void applyView();
        /// Update dialog before showing it
        void updateContents();
-};
+       ///
+       bool initialiseParams(std::string const & data);
+       ///
+       void clearParams();
+       ///
+       void dispatchParams();
+       ///
+       bool isBufferDependent() const { return true; }
 
+       ///
+       InsetBranchParams params_;
+};
 
 } // namespace frontend
 } // namespace lyx