X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBullet.h;h=bc9f837343f0e455994efd902b12b3d9afc70563;hb=6a8219c190315a63426e6798290cc3a04dbc0f09;hp=cc955085709179977e34d24cbf7ff3599450ca4c;hpb=e266fd847f7c1ec14c9802c85f19f1193bfdbf7c;p=lyx.git diff --git a/src/Bullet.h b/src/Bullet.h index cc95508570..bc9f837343 100644 --- a/src/Bullet.h +++ b/src/Bullet.h @@ -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,22 +42,20 @@ 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 easier. Since you only need change these values for all tests to be correct for the new values. - + Note: MAX means the size of the array so to test you need: (x < MAX) *not* (x <= MAX) */ @@ -74,38 +69,38 @@ private: /// SIZEMAX = 10 }; - + /// 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; /// int character; /// int size; - - // size, character and font are array indices to access + + // size, character and font are array indices to access // the predefined arrays of LaTeX equivalent strings. - + /** flag indicates if user has control of text (1) or if I can use it to generate strings (0) or have already (-1) */ - mutable short user_text; - + mutable short user_text; + //NOTE: Arranging these four shorts above to be together // like this should ensure they are in a single cache line - + /** text may contain a user-defined LaTeX symbol command 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_ */