]> git.lyx.org Git - features.git/blobdiff - src/frontends/kde/kdeBC.h
Update to MVC. Ref,Toc and citation don't work at all currently.
[features.git] / src / frontends / kde / kdeBC.h
index 2833dd7738034fc193b5673bb7b85d47a32fdc02..34170bfaf40f61ebaa1f3449ad65cfdda02bfc2a 100644 (file)
@@ -1,22 +1,14 @@
-// -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file kdeBC.h
+ * Copyright 2001 the LyX Team
+ * Read the file COPYING
  *
- *           LyX, The Document Processor
- *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team.
- *
- * ======================================================
- *
- * Author: Angus Leeming <a.leeming@ic.ac.uk>
+ * \author Angus Leeming, <a.leeming@ic.ac.uk>
  */
 
 #ifndef KDEBC_H
 #define KDEBC_H
 
-#include <list>
-
 #ifdef __GNUG__
 #pragma interface
 #endif
 class QWidget;
 class QPushButton;
 
-class kdeBC : public GuiBC<QPushButton, Qwidget>
+class kdeBC : public GuiBC<QPushButton, QWidget>
 {
 public:
        ///
        kdeBC(string const & cancel, string const & close);
 
 private:
-       /// Updates the button sensitivity (enabled/disabled)
+       /// enable or disable button
        void setButtonEnabled(QPushButton * btn, bool enabled);
 
-       /// Updates the widget sensitivity (enabled/disabled)
+       /// enable or disable button
        void setWidgetEnabled(QWidget * obj, bool enabled);
 
-       /// Set the label on the button
+       /// set the label on the button
        void setButtonLabel(QPushButton * btn, string const & label);
 };