]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QExternal.h
better selection and scrolling behaviour
[lyx.git] / src / frontends / qt2 / QExternal.h
index db8122961584a13290e39b457ba73912966a24f1..98727d3e466a4d70db67494b9eccc9ce8323102d 100644 (file)
@@ -1,39 +1,42 @@
 // -*- C++ -*-
 /**
  * \file QExternal.h
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef QEXTERNAL_H
 #define QEXTERNAL_H
 
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 #include "Qt2Base.h"
 
 class ControlExternal;
 class QExternalDialog;
 
-class QExternal :
-       public Qt2CB<ControlExternal, Qt2DB<QExternalDialog> > 
+class QExternal
+       : public Qt2CB<ControlExternal, Qt2DB<QExternalDialog> >
 {
+public:
        friend class QExternalDialog;
-public: 
-       QExternal(ControlExternal &);
-
-protected:
-       virtual bool isValid();
-private: 
+
+       QExternal();
+
+private:
        /// Apply changes
        virtual void apply();
        /// update
        virtual void update_contents();
        /// build the dialog
        virtual void build_dialog();
+
        /// get the right helptext
        string const & helpText();
 };