]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbutton.h
fix #832
[lyx.git] / src / insets / insetbutton.h
index c6a6a12ffc990b19befb5b43635076cb9fa60fdf..a27485a17abf4491662a07595e1630f3712d2b37 100644 (file)
@@ -1,23 +1,23 @@
 // -*- C++ -*-
-/* This file is part of*
- * ====================================================== 
+/**
+ * \file insetbutton.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *      
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 2000 The LyX Team.
+ * \author Asger Alstrup Nielsen
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- * ====================================================== */
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_BUTTON_H
 #define INSET_BUTTON_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "lyxinset.h"
+#include "inset.h"
 #include "LString.h"
+#include <boost/weak_ptr.hpp>
 
 /** Used to provide an inset that looks like a button.
  */
@@ -30,12 +30,19 @@ public:
        ///
        int width(BufferView *, LyXFont const &) const;
        ///
-       void draw(BufferView *, LyXFont const &, int, float &, bool) const;
+       void draw(BufferView *, LyXFont const &, int, float &) const;
+       ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
 
 protected:
+       ///
+       virtual void cache(BufferView *) const;
+       ///
+       virtual BufferView * view() const;
        /// This should provide the text for the button
-       virtual string const getScreenLabel() const = 0;
+       virtual string const getScreenLabel(Buffer const *) const = 0;
+private:
+       mutable boost::weak_ptr<BufferView> view_;
 };
 
 #endif
-