diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-19 19:03:33 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-19 19:03:33 +0000 |
commit | e69e8b1d09fb579316595b4e6a850e717358a8b1 (patch) | |
tree | a24fc20865f65772f530d16177520190594ffdd2 /kdvi/TeXFontDefinition.h | |
parent | eecec9afb81fdebb0f22e9da22635874c403f854 (diff) | |
download | tdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.tar.gz tdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.zip |
TQt4 port kdegraphics
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1237557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdvi/TeXFontDefinition.h')
-rw-r--r-- | kdvi/TeXFontDefinition.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdvi/TeXFontDefinition.h b/kdvi/TeXFontDefinition.h index d64e6d59..9097b2cb 100644 --- a/kdvi/TeXFontDefinition.h +++ b/kdvi/TeXFontDefinition.h @@ -1,6 +1,6 @@ // -*- C++ -*- /* - * The layout of a font information block. + * The tqlayout of a font information block. * There is one of these for every loaded font or magnification thereof. * Duplicates are eliminated: this is necessary because of possible recursion * in virtual fonts. @@ -35,7 +35,7 @@ class macro { unsigned char *pos; /* address of first byte of macro */ unsigned char *end; /* address of last+1 byte */ - Q_INT32 dvi_advance_in_units_of_design_size_by_2e20; /* DVI units to move reference point */ + TQ_INT32 dvi_advance_in_units_of_design_size_by_2e20; /* DVI units to move reference point */ bool free_me; // if memory at pos should be returned on destruction }; @@ -56,7 +56,7 @@ class TeXFontDefinition { }; - TeXFontDefinition(TQString nfontname, double _displayResolution_in_dpi, Q_UINT32 chk, Q_INT32 _scaled_size_in_DVI_units, + TeXFontDefinition(TQString nfontname, double _displayResolution_in_dpi, TQ_UINT32 chk, TQ_INT32 _scaled_size_in_DVI_units, class fontPool *pool, double _enlargement); ~TeXFontDefinition(); @@ -74,7 +74,7 @@ class TeXFontDefinition { TQString fontname; // name of font, such as "cmr10" unsigned char flags; // flags byte (see values below) double enlargement; - Q_INT32 scaled_size_in_DVI_units; // Scaled size from the font definition command; in DVI units + TQ_INT32 scaled_size_in_DVI_units; // Scaled size from the font definition command; in DVI units set_char_proc set_char_p; // proc used to set char // Resolution of the display device (resolution will usually be @@ -100,20 +100,20 @@ class TeXFontDefinition { /** For FREETYPE fonts, which use a map file, this field will contain the full name of the font (e.g. 'Computer Modern'). If the name does not exist, or cannot be found, this field will be - TQString::null. Only subclasses of TeXFont should write into this + TQString(). Only subclasses of TeXFont should write into this field. */ TQString fullFontName; /** For FREETYPE fonts, which use a map file, this field will contain the full name of the font encoding (e.g. 'TexBase1'). If the encoding name does not exist, or cannot be found, this field - will be TQString::null. Only subclasses of TeXFont should write + will be TQString(). Only subclasses of TeXFont should write into this field. */ TQString fullEncodingName; #endif private: - Q_UINT32 checksum; + TQ_UINT32 checksum; /** This will be set to a human-readable description of the font, e.g. "virtual" or "TeX PK", or "Type 1" */ |