]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormCitation.h
merge booktabs branch
[lyx.git] / src / frontends / xforms / FormCitation.h
index 09ca816b041407b8513d5729e19ad9f18ec60ee1..382c9fd58a2cda88d43c5ac75cc680f2b1836458 100644 (file)
@@ -1,27 +1,30 @@
 // -*- C++ -*-
 /**
- * \file xforms/FormCitation.h
+ * \file FormCitation.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
  * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMCITATION_H
 #define FORMCITATION_H
 
-
 #include "FormDialogView.h"
 #include "biblio.h"
 
-/** This class provides an XForms implementation of the Citation Dialog.
- */
+namespace lyx {
+namespace frontend {
+
 class ControlCitation;
 struct FD_citation;
 
-class FormCitation : public FormController<ControlCitation, FormView<FD_citation> > {
+/** This class provides an XForms implementation of the Citation Dialog.
+ */
+class FormCitation
+       : public FormController<ControlCitation, FormView<FD_citation> > {
 public:
        ///
        FormCitation(Dialog &);
@@ -49,16 +52,19 @@ private:
        void findBiblio(biblio::Direction const dir);
 
        ///
-       void updateBrowser(FL_OBJECT *, std::vector<string> const &) const;
+       void updateBrowser(FL_OBJECT *, std::vector<std::string> const &) const;
        ///
        void setBibButtons(State) const;
        ///
        void setCiteButtons(State) const;
 
        /// used keys (left panel)
-       std::vector<string> citekeys;
+       std::vector<std::string> citekeys;
        /// available keys (right panel)
-       std::vector<string> bibkeys;
+       std::vector<std::string> bibkeys;
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // FORMCITATION_H