]> git.lyx.org Git - lyx.git/blobdiff - src/Bullet.h
Provide proper fallback if a bibliography processor is not found
[lyx.git] / src / Bullet.h
index 9e516e1cd4d392441cb9e2023ffaf978a29c5521..6a4f997acbc5c2523e0331b622a107839fda864f 100644 (file)
@@ -1,25 +1,22 @@
 // -*- C++ -*-
-/* This is the bullet class definition file.
- * This file is part of
- * ======================================================
+/**
+ * \file Bullet.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Lars Gullik Bjønnes
+ * \author Allan Rae
  *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- *           This file Copyright 1997-1999
- *           Allan Rae
- * ====================================================== */
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef BULLET_H
 #define BULLET_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "support/docstring.h"
+
 
-#include "LString.h"
+namespace lyx {
 
 ///
 class Bullet {
@@ -28,7 +25,7 @@ public:
        Bullet(int f = -1, int c = -1, int s = -1);
 
        ///
-       explicit Bullet(string const &);
+       explicit Bullet(docstring const &);
 
        ///
        void setCharacter(int);
@@ -37,7 +34,7 @@ public:
        ///
        void setSize(int);
        ///
-       void setText(string const &);
+       void setText(docstring const &);
        ///
        int getCharacter() const;
        ///
@@ -45,16 +42,14 @@ public:
        ///
        int getSize() const;
        ///
-       string const & getText() const;
+       docstring const & getText() const;
        ///
        Bullet & operator=(Bullet const &);
        ///
        friend bool operator==(Bullet const &, Bullet const &);
 protected:
-#ifdef ENABLE_ASSERTIONS
        ///
        void testInvariant() const;
-#endif
 private:
        /**
           This enum makes adding additional panels or changing panel sizes
@@ -78,9 +73,9 @@ private:
        ///
        void generateText() const;
        ///
-       static string const bulletSize(int);
+       static docstring const bulletSize(int);
        ///
-       static string const bulletEntry(int, int);
+       static docstring const bulletEntry(int, int);
 
        ///
        int font;
@@ -105,7 +100,7 @@ private:
            or one generated internally from the font, character
            and size settings.
        */
-       mutable string text;
+       mutable docstring text;
 };
 
 
@@ -119,4 +114,7 @@ bool operator!=(Bullet const & b1, Bullet const & b2)
 extern
 Bullet const ITEMIZE_DEFAULTS[];
 
+
+} // namespace lyx
+
 #endif /* BULLET_H_ */