summaryrefslogtreecommitdiff
path: root/vcl/inc/fontsubset.hxx
diff options
context:
space:
mode:
authorNourah.AlShoeibi <nourah.alshoeibi@gmail.com>2013-07-11 12:03:19 +0300
committerPetr Mladek <pmladek@suse.cz>2013-07-11 13:32:36 +0000
commit00a26f824232d9dbf68cfbcbdd4b423da23ed4eb (patch)
tree6778bfc4739c35786fd9827f436bc1dcc824b622 /vcl/inc/fontsubset.hxx
parentcf6a74af5340c2c4fbf270a95bad12479524d9d4 (diff)
Modifying comments to meet Doxygen standards
Change-Id: I5f69285d571c08c40f2e8a7495363a7b97bbadb3 Reviewed-on: https://gerrit.libreoffice.org/4825 Reviewed-by: Petr Mladek <pmladek@suse.cz> Tested-by: Petr Mladek <pmladek@suse.cz>
Diffstat (limited to 'vcl/inc/fontsubset.hxx')
-rw-r--r--vcl/inc/fontsubset.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/vcl/inc/fontsubset.hxx b/vcl/inc/fontsubset.hxx
index eeb920bdec5b..b5f62f2d4ab4 100644
--- a/vcl/inc/fontsubset.hxx
+++ b/vcl/inc/fontsubset.hxx
@@ -26,7 +26,7 @@
#include "vcl/dllapi.h"
-namespace vcl { struct _TrueTypeFont; } // SFT's idea of a TTF font
+namespace vcl { struct _TrueTypeFont; } ///< SFT's idea of a TTF font
class VCL_DLLPUBLIC FontSubsetInfo
{
@@ -36,13 +36,13 @@ public:
enum FontType {
NO_FONT = 0,
- SFNT_TTF = 1<<1, // SFNT container with TrueType glyphs
- SFNT_CFF = 1<<2, // SFNT container with CFF-container
- TYPE1_PFA = 1<<3, // PSType1 Postscript Font Ascii
- TYPE1_PFB = 1<<4, // PSType1 Postscript Font Binary
- CFF_FONT = 1<<5, // CFF-container with PSType2 glyphs
- TYPE3_FONT = 1<<6, // PSType3 Postscript font
- TYPE42_FONT = 1<<7, // PSType42 wrapper for an SFNT_TTF
+ SFNT_TTF = 1<<1, ///< SFNT container with TrueType glyphs
+ SFNT_CFF = 1<<2, ///< SFNT container with CFF-container
+ TYPE1_PFA = 1<<3, ///< PSType1 Postscript Font Ascii
+ TYPE1_PFB = 1<<4, ///< PSType1 Postscript Font Binary
+ CFF_FONT = 1<<5, ///< CFF-container with PSType2 glyphs
+ TYPE3_FONT = 1<<6, ///< PSType3 Postscript font
+ TYPE42_FONT = 1<<7, ///< PSType42 wrapper for an SFNT_TTF
ANY_SFNT = SFNT_TTF | SFNT_CFF,
ANY_TYPE1 = TYPE1_PFA | TYPE1_PFB,
ANY_FONT = 0xFF
@@ -58,23 +58,23 @@ public:
int nReqGlyphCount, sal_Int32* pOutGlyphWidths = NULL );
public: // TODO: make subsetter results private and provide accessor methods instead
- // subsetter-provided subset details needed by e.g. Postscript or PDF
+ // subsetter-provided subset details needed by e.g. Postscript or PDF
String m_aPSName;
- int m_nAscent; // all metrics in PS font units
+ int m_nAscent; ///< all metrics in PS font units
int m_nDescent;
int m_nCapHeight;
Rectangle m_aFontBBox;
- FontType m_nFontType; // font-type of subset result
+ FontType m_nFontType; ///< font-type of subset result
private:
// input-font-specific details
unsigned const char* mpInFontBytes;
int mnInByteLength;
- FontType meInFontType; // allowed mask of input font-types
+ FontType meInFontType; ///< allowed mask of input font-types
vcl::_TrueTypeFont* mpSftTTFont;
// subset-request details
- int mnReqFontTypeMask; // allowed subset-target font types
+ int mnReqFontTypeMask; ///< allowed subset-target font types
FILE* mpOutFile;
const char* mpReqFontName;
const long* mpReqGlyphIds;