]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/QRef.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QRef.h
index 59f35802ab74f400558b8b5a0fa397b8129f946f..6c25870a9819b2520ba7b17c0f26876dacb2a079 100644 (file)
@@ -1,66 +1,71 @@
+// -*- C++ -*-
 /**
  * \file QRef.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
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef QREF_H
 #define QREF_H
 
-#include <config.h>
+#ifdef __GNUG__
+#pragma interface
+#endif
+
+#include "Qt2Base.h"
 #include <vector>
 #include "LString.h"
-#include "Qt2Base.h"
 
 class ControlRef;
 class QRefDialog;
 
-class QRef :
-       public Qt2CB<ControlRef, Qt2DB<QRefDialog> >
+
+class QRef
+       : public Qt2CB<ControlRef, Qt2DB<QRefDialog> >
 {
+public:
        friend class QRefDialog;
-public: 
-       QRef(ControlRef & c);
 
+       QRef();
 private:
-       /// apply changes 
-       virtual void apply(); 
+       /// apply changes
+       virtual void apply();
        /// build dialog
        virtual void build_dialog();
        /// update dialog
        virtual void update_contents();
 
-       /// is name allowed for this ? 
+       /// is name allowed for this ?
        bool nameAllowed();
 
        /// is type allowed for this ?
        bool typeAllowed();
+
        /// go to current reference
        void gotoRef();
 
        /// set go back button
        void setGoBack();
+
        /// set goto ref button
        void setGotoRef();
+
        /// re-enter references
        void redoRefs();
+
        /// update references
        void updateRefs();
+
        /// sort or not persistent state
-       bool sort_; 
+       bool sort_;
 
-       /// at a reference ? 
+       /// at a reference ?
        bool at_ref_;
+
        /// the references
        std::vector<string> refs_;
 };