X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FBullet.h;h=662fa224d7d74e69f762fcf53f88bffebb252476;hb=3bf1b97ae547aea5d0243e41b2d8af463a6e40c5;hp=5fd2d2cf8b711d95aa8806a465b5a100b867639f;hpb=11b7714fc15475a2bb385943ece7b98273283114;p=features.git diff --git a/src/Bullet.h b/src/Bullet.h index 5fd2d2cf8b..662fa224d7 100644 --- a/src/Bullet.h +++ b/src/Bullet.h @@ -13,6 +13,8 @@ #ifndef BULLET_H #define BULLET_H +#include "FontEnums.h" + #include "support/docstring.h" @@ -42,7 +44,11 @@ public: /// int getSize() const; /// + FontSize getFontSize() const; + /// The text to be output docstring const & getText() const; + /// The label displayed in the workarea + docstring const & getLabel() const; /// Bullet & operator=(Bullet const &); /// @@ -76,6 +82,10 @@ private: void generateText() const; /// static docstring const bulletSize(int); + /// + static FontSize bulletFontSize(int); + /// + static docstring const bulletLabel(int, int); /// int font; @@ -101,6 +111,7 @@ private: and size settings. */ mutable docstring text; + mutable docstring label; };