]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlBibitem.h
Reorganised, cleaned-up and improved documentation of controllers.
[lyx.git] / src / frontends / controllers / ControlBibitem.h
index f2c5176ac129a450ca7d0415057694a742f89c2f..27263b24259a9ac8b3abc013575a76eeafcaa9ac 100644 (file)
@@ -35,30 +35,4 @@ protected:
        virtual void apply();
 };
 
-/** This class instantiates and makes available the GUI-specific
-    ButtonController and View.
- */
-template <class GUIview, class GUIbc>
-class GUIBibitem : public ControlBibitem {
-public:
-       ///
-       GUIBibitem(LyXView &, Dialogs &);
-       ///
-       virtual ButtonControllerBase & bc() { return bc_; }
-       ///
-       virtual ViewBase & view() { return view_; }
-
-private:
-       ///
-       ButtonController<OkCancelReadOnlyPolicy, GUIbc> bc_;
-       ///
-       GUIview view_;
-};
-
-template <class GUIview, class GUIbc>
-GUIBibitem<GUIview, GUIbc>::GUIBibitem(LyXView & lv, Dialogs & d)
-       : ControlBibitem(lv, d),
-         view_(*this)
-{}
-
 #endif // CONTROLBIBITEM_H