1 #include <lib/gdi/font.h>
12 #error "no BYTE_ORDER defined!"
15 // use this for init Freetype...
17 #include FT_FREETYPE_H
19 #define FTC_Image_Cache_New(a,b) FTC_ImageCache_New(a,b)
20 #define FTC_Image_Cache_Lookup(a,b,c,d) FTC_ImageCache_Lookup(a,b,c,d,NULL)
21 #define FTC_SBit_Cache_New(a,b) FTC_SBitCache_New(a,b)
22 #define FTC_SBit_Cache_Lookup(a,b,c,d) FTC_SBitCache_Lookup(a,b,c,d,NULL)
25 #include <lib/base/eerror.h>
26 #include <lib/gdi/lcd.h>
27 #include <lib/gdi/grc.h>
28 #include <lib/base/elock.h>
29 #include <lib/base/init.h>
30 #include <lib/base/init_num.h>
33 // until we have it in the cdk
36 #include <fribidi/fribidi.h>
41 fontRenderClass *fontRenderClass::instance;
43 static pthread_mutex_t ftlock=PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP;
45 #ifndef HAVE_FREETYPE2
46 static FTC_Font cache_current_font=0;
49 struct fntColorCacheKey
52 fntColorCacheKey(const gRGB &start, const gRGB &end)
53 : start(start), end(end)
56 bool operator <(const fntColorCacheKey &c) const
60 else if (start == c.start)
66 std::map<fntColorCacheKey,gLookup> colorcache;
68 static gLookup &getColor(const gPalette &pal, const gRGB &start, const gRGB &end)
70 fntColorCacheKey key(start, end);
71 std::map<fntColorCacheKey,gLookup>::iterator i=colorcache.find(key);
72 if (i != colorcache.end())
74 gLookup &n=colorcache.insert(std::pair<fntColorCacheKey,gLookup>(key,gLookup())).first->second;
75 // eDebug("[FONT] creating new font color cache entry %02x%02x%02x%02x .. %02x%02x%02x%02x", start.a, start.r, start.g, start.b,
76 // end.a, end.r, end.g, end.b);
77 n.build(16, pal, start, end);
78 // for (int i=0; i<16; i++)
79 // eDebugNoNewLine("%02x|%02x%02x%02x%02x ", (int)n.lookup[i], pal.data[n.lookup[i]].a, pal.data[n.lookup[i]].r, pal.data[n.lookup[i]].g, pal.data[n.lookup[i]].b);
84 fontRenderClass *fontRenderClass::getInstance()
89 FT_Error myFTC_Face_Requester(FTC_FaceID face_id,
91 FT_Pointer request_data,
94 return ((fontRenderClass*)request_data)->FTC_Face_Requester(face_id, aface);
98 FT_Error fontRenderClass::FTC_Face_Requester(FTC_FaceID face_id, FT_Face* aface)
100 fontListEntry *font=(fontListEntry *)face_id;
104 // eDebug("[FONT] FTC_Face_Requester (%s)", font->face.c_str());
107 if ((error=FT_New_Face(library, font->filename.c_str(), 0, aface)))
109 eDebug(" failed: %s", strerror(error));
112 FT_Select_Charmap(*aface, ft_encoding_unicode);
116 FTC_FaceID fontRenderClass::getFaceID(const std::string &face)
118 for (fontListEntry *f=font; f; f=f->next)
121 return (FTC_FaceID)f;
126 FT_Error fontRenderClass::getGlyphBitmap(FTC_Image_Desc *font, FT_ULong glyph_index, FTC_SBit *sbit)
128 FT_Error res=FTC_SBit_Cache_Lookup(sbitsCache, font, glyph_index, sbit);
132 std::string fontRenderClass::AddFont(const std::string &filename, const std::string &name, int scale)
134 eDebugNoNewLine("[FONT] adding font %s...", filename.c_str());
137 fontListEntry *n=new fontListEntry;
141 singleLock s(ftlock);
143 if ((error=FT_New_Face(library, filename.c_str(), 0, &face)))
144 eFatal(" failed: %s", strerror(error));
146 n->filename=filename;
151 eDebug("OK (%s)", n->face.c_str());
157 fontRenderClass::fontListEntry::~fontListEntry()
161 fontRenderClass::fontRenderClass(): fb(fbClass::getInstance())
164 eDebug("[FONT] initializing lib...");
166 if (FT_Init_FreeType(&library))
168 eDebug("[FONT] initializing failed.");
172 eDebug("[FONT] loading fonts...");
176 int maxbytes=4*1024*1024;
177 eDebug("[FONT] Intializing font cache, using max. %dMB...", maxbytes/1024/1024);
180 if (FTC_Manager_New(library, 8, 8, maxbytes, myFTC_Face_Requester, this, &cacheManager))
182 eDebug("[FONT] initializing font cache failed!");
187 eDebug("[FONT] initializing font cache manager error.");
190 if (FTC_SBit_Cache_New(cacheManager, &sbitsCache))
192 eDebug("[FONT] initializing font cache sbit failed!");
195 if (FTC_Image_Cache_New(cacheManager, &imageCache))
197 eDebug("[FONT] initializing font cache imagecache failed!");
203 float fontRenderClass::getLineHeight(const gFont& font)
208 getFont(fnt, font.family.c_str(), font.pointSize);
211 singleLock s(ftlock);
212 FT_Face current_face;
213 #ifdef HAVE_FREETYPE2
214 if ((FTC_Manager_LookupFace(cacheManager, fnt->scaler.face_id, ¤t_face) < 0) ||
215 (FTC_Manager_LookupSize(cacheManager, &fnt->scaler, &fnt->size) < 0))
217 if (FTC_Manager_Lookup_Size(cacheManager, &fnt->font.font, ¤t_face, &fnt->size)<0)
220 eDebug("FTC_Manager_Lookup_Size failed!");
223 int linegap=current_face->size->metrics.height-(current_face->size->metrics.ascender+current_face->size->metrics.descender);
224 float height=(current_face->size->metrics.ascender+current_face->size->metrics.descender+linegap)/64.0;
228 fontRenderClass::~fontRenderClass()
230 singleLock s(ftlock);
233 fontListEntry *f=font;
237 // auskommentiert weil freetype und enigma die kritische masse des suckens ueberschreiten.
238 // FTC_Manager_Done(cacheManager);
239 // FT_Done_FreeType(library);
242 int fontRenderClass::getFont(ePtr<Font> &font, const std::string &face, int size, int tabwidth)
244 FTC_FaceID id=getFaceID(face);
250 font = new Font(this, id, size * ((fontListEntry*)id)->scale / 100, tabwidth);
254 void addFont(const char *filename, const char *alias, int scale_factor, int is_replacement)
256 fontRenderClass::getInstance()->AddFont(filename, alias, scale_factor);
258 eTextPara::setReplacementFont(alias);
263 Font::Font(fontRenderClass *render, FTC_FaceID faceid, int isize, int tw): tabwidth(tw)
266 #ifdef HAVE_FREETYPE2
267 font.face_id = faceid;
270 font.flags = FT_LOAD_DEFAULT;
271 scaler.face_id = faceid;
272 scaler.width = isize;
273 scaler.height = isize;
276 font.font.face_id=faceid;
277 font.font.pix_width = isize;
278 font.font.pix_height = isize;
279 font.image_type = ftc_image_grays;
284 // font.image_type |= ftc_image_flag_autohinted;
287 FT_Error Font::getGlyphBitmap(FT_ULong glyph_index, FTC_SBit *sbit)
289 return renderer->getGlyphBitmap(&font, glyph_index, sbit);
296 DEFINE_REF(eTextPara);
298 int eTextPara::appendGlyph(Font *current_font, FT_Face current_face, FT_UInt glyphIndex, int flags, int rflags)
301 if (current_font->getGlyphBitmap(glyphIndex, &glyph))
314 glyphString::reverse_iterator i(glyphs.rbegin());
315 /* find first possibility (from end to begin) to break */
316 while (i != glyphs.rend())
318 if (i->flags&(GS_CANBREAK|GS_ISFIRST)) /* stop on either space/hyphen/shy or start of line (giving up) */
325 if (i != glyphs.rend() /* ... we found anything */
326 && (i->flags&GS_CANBREAK) /* ...and this is a space/hyphen/soft-hyphen */
327 && (!(i->flags & GS_ISFIRST)) /* ...and this is not an start of line (line with just a single space/hyphen) */
328 && cnt ) /* ... and there are actual non-space characters after this */
330 /* if we have a soft-hyphen, and used that for breaking, turn it into a real hyphen */
331 if (i->flags & GS_SOFTHYPHEN)
333 i->flags &= ~GS_SOFTHYPHEN;
334 i->flags |= GS_HYPHEN;
336 --i; /* skip the space/hypen/softhyphen */
337 int linelength=cursor.x()-i->x;
338 i->flags|=GS_ISFIRST; /* make this a line start */
339 ePoint offset=ePoint(i->x, i->y);
343 /* and move everything to the end into the next line. */
348 i->bbox.moveBy(-offset.x(), -offset.y());
351 } while (i-- != glyphs.rbegin()); // rearrange them into the next line
352 cursor+=ePoint(linelength, 0); // put the cursor after that line
363 int xadvance=glyph->xadvance, kern=0;
365 if (previous && use_kerning)
368 FT_Get_Kerning(current_face, previous, glyphIndex, ft_kerning_default, &delta);
373 ng.bbox.setLeft( (flags&GS_ISFIRST|cursor.x()-1)+glyph->left );
374 ng.bbox.setTop( cursor.y() - glyph->top );
375 ng.bbox.setWidth( glyph->width );
376 ng.bbox.setHeight( glyph->height );
379 ng.bbox.setWidth(xadvance);
381 ng.x = cursor.x()+kern;
384 ng.font = current_font;
385 ng.glyph_index = glyphIndex;
387 glyphs.push_back(ng);
390 /* when we have a SHY, don't xadvance. It will either be the last in the line (when used for breaking), or not displayed. */
391 if (!(flags & GS_SOFTHYPHEN))
392 cursor += ePoint(xadvance, 0);
393 previous = glyphIndex;
397 void eTextPara::calc_bbox()
408 glyphString::iterator i(glyphs.begin());
413 for (; i != glyphs.end(); ++i)
415 if (i->flags & (GS_ISSPACE|GS_SOFTHYPHEN))
417 if ( i->bbox.left() < boundBox.left() )
418 boundBox.setLeft( i->bbox.left() );
419 if ( i->bbox.top() < boundBox.top() )
420 boundBox.setTop( i->bbox.top() );
421 if ( i->bbox.right() > boundBox.right() )
422 boundBox.setRight( i->bbox.right() );
423 if ( i->bbox.bottom() > boundBox.bottom() )
424 boundBox.setBottom( i->bbox.bottom() );
426 // eDebug("boundBox left = %i, top = %i, right = %i, bottom = %i", boundBox.left(), boundBox.top(), boundBox.right(), boundBox.bottom() );
429 void eTextPara::newLine(int flags)
431 if (maximum.width()<cursor.x())
432 maximum.setWidth(cursor.x());
435 int linegap=current_face->size->metrics.height-(current_face->size->metrics.ascender+current_face->size->metrics.descender);
437 lineOffsets.push_back(cursor.y());
438 lineChars.push_back(charCount);
441 cursor+=ePoint(0, (current_face->size->metrics.ascender+current_face->size->metrics.descender+linegap)>>6);
443 if (maximum.height()<cursor.y())
444 maximum.setHeight(cursor.y());
448 eTextPara::~eTextPara()
453 void eTextPara::setFont(const gFont *font)
455 ePtr<Font> fnt, replacement;
456 fontRenderClass::getInstance()->getFont(fnt, font->family.c_str(), font->pointSize);
458 eWarning("FONT '%s' MISSING!", font->family.c_str());
459 fontRenderClass::getInstance()->getFont(replacement, replacement_facename.c_str(), font->pointSize);
460 setFont(fnt, replacement);
463 std::string eTextPara::replacement_facename;
464 std::set<int> eTextPara::forced_replaces;
466 void eTextPara::setFont(Font *fnt, Font *replacement)
471 replacement_font=replacement;
472 singleLock s(ftlock);
474 // we ask for replacment_font first becauseof the cache
475 if (replacement_font)
477 #ifdef HAVE_FREETYPE2
478 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
479 replacement_font->scaler.face_id,
480 &replacement_face) < 0) ||
481 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
482 &replacement_font->scaler,
483 &replacement_font->size) < 0))
485 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager,
486 &replacement_font->font.font, &replacement_face,
487 &replacement_font->size)<0)
490 eDebug("FTC_Manager_Lookup_Size failed!");
496 #ifdef HAVE_FREETYPE2
497 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
498 current_font->scaler.face_id,
499 ¤t_face) < 0) ||
500 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
501 ¤t_font->scaler,
502 ¤t_font->size) < 0))
504 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager, ¤t_font->font.font, ¤t_face, ¤t_font->size)<0)
507 eDebug("FTC_Manager_Lookup_Size failed!");
511 #ifndef HAVE_FREETYPE2
512 cache_current_font=¤t_font->font.font;
515 use_kerning=FT_HAS_KERNING(current_face);
519 shape (std::vector<unsigned long> &string, const std::vector<unsigned long> &text);
521 int eTextPara::renderString(const char *string, int rflags)
523 singleLock s(ftlock);
528 #ifdef HAVE_FREETYPE2
529 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
530 current_font->scaler.face_id,
531 ¤t_face) < 0) ||
532 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
533 ¤t_font->scaler,
534 ¤t_font->size) < 0))
536 eDebug("FTC_Manager_Lookup_Size failed!");
540 if (¤t_font->font.font != cache_current_font)
542 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager, ¤t_font->font.font, ¤t_face, ¤t_font->size)<0)
544 eDebug("FTC_Manager_Lookup_Size failed!");
547 cache_current_font=¤t_font->font.font;
552 eFatal("eTextPara::renderString: no current_face");
553 if (!current_face->size)
554 eFatal("eTextPara::renderString: no current_face->size");
558 cursor=ePoint(area.x(), area.y()+(current_face->size->metrics.ascender>>6));
562 std::vector<unsigned long> uc_string, uc_visual;
564 uc_string.reserve(strlen(string));
566 const char *p = string ? string : "";
570 unsigned int unicode=(unsigned char)*p++;
572 if (unicode & 0x80) // we have (hopefully) UTF8 here, and we assume that the encoding is VALID
574 if ((unicode & 0xE0)==0xC0) // two bytes
579 unicode|=(*p++)&0x3F;
580 } else if ((unicode & 0xF0)==0xE0) // three bytes
585 unicode|=(*p++)&0x3F;
588 unicode|=(*p++)&0x3F;
589 } else if ((unicode & 0xF8)==0xF0) // four bytes
594 unicode|=(*p++)&0x3F;
597 unicode|=(*p++)&0x3F;
600 unicode|=(*p++)&0x3F;
603 uc_string.push_back(unicode);
606 std::vector<unsigned long> uc_shape;
608 // character -> glyph conversion
609 shape(uc_shape, uc_string);
611 // now do the usual logical->visual reordering
612 int size=uc_shape.size();
614 FriBidiCharType dir=FRIBIDI_TYPE_ON;
615 uc_visual.resize(size);
616 // gaaanz lahm, aber anders geht das leider nicht, sorry.
617 FriBidiChar array[size], target[size];
618 std::copy(uc_shape.begin(), uc_shape.end(), array);
619 fribidi_log2vis(array, size, &dir, target, 0, 0, 0);
620 uc_visual.assign(target, target+size);
625 glyphs.reserve(size);
629 for (std::vector<unsigned long>::const_iterator i(uc_visual.begin());
630 i != uc_visual.end(); ++i)
633 int flags = nextflags;
635 unsigned long chr = *i;
637 if (!(rflags&RS_DIRECT))
643 unsigned long c = *(i+1);
662 cursor+=ePoint(current_font->tabwidth, 0);
663 cursor-=ePoint(cursor.x()%current_font->tabwidth, 0);
668 newline:isprintable=0;
670 nextflags|=GS_ISFIRST;
673 case 0x86: case 0xE086:
674 case 0x87: case 0xE087:
675 nprint: isprintable=0;
677 case 0xAD: // soft-hyphen
678 flags |= GS_SOFTHYPHEN;
679 chr = 0x2010; /* hyphen */
695 /* FIXME: our font doesn't seem to have a hyphen, so use hyphen-minus for it. */
699 if (forced_replaces.find(chr) == forced_replaces.end())
700 index=(rflags&RS_DIRECT)? chr : FT_Get_Char_Index(current_face, chr);
704 if (replacement_face)
705 index=(rflags&RS_DIRECT)? chr : FT_Get_Char_Index(replacement_face, chr);
708 eDebug("unicode U+%4lx not present", chr);
710 appendGlyph(replacement_font, replacement_face, index, flags, rflags);
712 appendGlyph(current_font, current_face, index, flags, rflags);
718 if (dir & FRIBIDI_MASK_RTL)
721 doTopBottomReordering=true;
727 lineOffsets.push_back(cursor.y());
728 lineChars.push_back(charCount);
735 void eTextPara::blit(gDC &dc, const ePoint &offset, const gRGB &background, const gRGB &foreground)
737 singleLock s(ftlock);
742 #ifdef HAVE_FREETYPE2
743 if ((FTC_Manager_LookupFace(fontRenderClass::instance->cacheManager,
744 current_font->scaler.face_id,
745 ¤t_face) < 0) ||
746 (FTC_Manager_LookupSize(fontRenderClass::instance->cacheManager,
747 ¤t_font->scaler,
748 ¤t_font->size) < 0))
750 eDebug("FTC_Manager_Lookup_Size failed!");
754 if (¤t_font->font.font != cache_current_font)
756 if (FTC_Manager_Lookup_Size(fontRenderClass::instance->cacheManager, ¤t_font->font.font, ¤t_face, ¤t_font->size)<0)
758 eDebug("FTC_Manager_Lookup_Size failed!");
761 cache_current_font=¤t_font->font.font;
765 ePtr<gPixmap> target;
766 dc.getPixmap(target);
767 gSurface *surface = target->surface;
771 gColor *lookup8, lookup8_invert[16];
772 gColor *lookup8_normal=0;
774 __u16 lookup16_normal[16], lookup16_invert[16], *lookup16;
775 __u32 lookup32_normal[16], lookup32_invert[16], *lookup32;
777 if (surface->bpp == 8)
779 if (surface->clut.data)
781 lookup8_normal=getColor(surface->clut, background, foreground).lookup;
785 lookup8_invert[i] = lookup8_normal[i^0xF];
790 } else if (surface->bpp == 16)
793 for (int i=0; i<16; ++i)
795 #define BLEND(y, x, a) (y + (((x-y) * a)>>8))
796 unsigned char da = background.a, dr = background.r, dg = background.g, db = background.b;
800 dr = BLEND(background.r, foreground.r, sa) & 0xFF;
801 dg = BLEND(background.g, foreground.g, sa) & 0xFF;
802 db = BLEND(background.b, foreground.b, sa) & 0xFF;
805 #if BYTE_ORDER == LITTLE_ENDIAN
806 lookup16_normal[i] = bswap_16(((db >> 3) << 11) | ((dg >> 2) << 5) | (dr >> 3));
808 lookup16_normal[i] = ((db >> 3) << 11) | ((dg >> 2) << 5) | (dr >> 3);
812 for (int i=0; i<16; ++i)
813 lookup16_invert[i]=lookup16_normal[i^0xF];
814 } else if (surface->bpp == 32)
817 for (int i=0; i<16; ++i)
819 #define BLEND(y, x, a) (y + (((x-y) * a)>>8))
821 unsigned char da = background.a, dr = background.r, dg = background.g, db = background.b;
825 da = BLEND(background.a, foreground.a, sa) & 0xFF;
826 dr = BLEND(background.r, foreground.r, sa) & 0xFF;
827 dg = BLEND(background.g, foreground.g, sa) & 0xFF;
828 db = BLEND(background.b, foreground.b, sa) & 0xFF;
832 lookup32_normal[i]=db | (dg << 8) | (dr << 16) | (da << 24);;
834 for (int i=0; i<16; ++i)
835 lookup32_invert[i]=lookup32_normal[i^0xF];
838 eWarning("can't render to %dbpp", surface->bpp);
842 gRegion area(eRect(0, 0, surface->x, surface->y));
843 gRegion clip = dc.getClip() & area;
845 int buffer_stride=surface->stride;
847 for (unsigned int c = 0; c < clip.rects.size(); ++c)
849 std::list<int>::reverse_iterator line_offs_it(lineOffsets.rbegin());
850 std::list<int>::iterator line_chars_it(lineChars.begin());
853 for (glyphString::iterator i(glyphs.begin()); i != glyphs.end(); ++i, --line_chars)
857 line_offs = *(line_offs_it++);
858 line_chars = *(line_chars_it++);
861 if (i->flags & GS_SOFTHYPHEN)
864 if (!(i->flags & GS_INVERT))
866 lookup8 = lookup8_normal;
867 lookup16 = lookup16_normal;
868 lookup32 = lookup32_normal;
871 lookup8 = lookup8_invert;
872 lookup16 = lookup16_invert;
873 lookup32 = lookup32_invert;
876 static FTC_SBit glyph_bitmap;
877 if (fontRenderClass::instance->getGlyphBitmap(&i->font->font, i->glyph_index, &glyph_bitmap))
879 int rx=i->x+glyph_bitmap->left + offset.x();
880 int ry=(doTopBottomReordering ? line_offs : i->y) - glyph_bitmap->top + offset.y();
882 __u8 *d=(__u8*)(surface->data)+buffer_stride*ry+rx*surface->bypp;
883 __u8 *s=glyph_bitmap->buffer;
884 register int sx=glyph_bitmap->width;
885 int sy=glyph_bitmap->height;
886 if ((sy+ry) >= clip.rects[c].bottom())
887 sy=clip.rects[c].bottom()-ry;
888 if ((sx+rx) >= clip.rects[c].right())
889 sx=clip.rects[c].right()-rx;
890 if (rx < clip.rects[c].left())
892 int diff=clip.rects[c].left()-rx;
896 d+=diff*surface->bypp;
898 if (ry < clip.rects[c].top())
900 int diff=clip.rects[c].top()-ry;
901 s+=diff*glyph_bitmap->pitch;
904 d+=diff*buffer_stride;
909 case 0: // 4bit lookup to 8bit
910 for (int ay=0; ay<sy; ay++)
914 for (ax=0; ax<sx; ax++)
916 register int b=(*s++)>>4;
922 s+=glyph_bitmap->pitch-sx;
926 case 1: // 8bit direct
927 for (int ay=0; ay<sy; ay++)
931 for (ax=0; ax<sx; ax++)
936 s+=glyph_bitmap->pitch-sx;
941 for (int ay=0; ay<sy; ay++)
943 register __u16 *td=(__u16*)d;
945 for (ax=0; ax<sx; ax++)
947 register int b=(*s++)>>4;
953 s+=glyph_bitmap->pitch-sx;
958 for (int ay=0; ay<sy; ay++)
960 register __u32 *td=(__u32*)d;
962 for (ax=0; ax<sx; ax++)
964 register int b=(*s++)>>4;
970 s+=glyph_bitmap->pitch-sx;
981 void eTextPara::realign(int dir) // der code hier ist ein wenig merkwuerdig.
983 glyphString::iterator begin(glyphs.begin()), c(glyphs.begin()), end(glyphs.begin()), last;
986 while (c != glyphs.end())
989 int numspaces=0, num=0;
992 ASSERT( end != glyphs.end());
998 } while ((end != glyphs.end()) && (!(end->flags&GS_ISFIRST)));
999 // end zeigt jetzt auf begin der naechsten zeile
1001 for (c=begin; c!=end; ++c)
1003 // space am zeilenende skippen
1004 if ((c==last) && (c->flags&GS_ISSPACE))
1007 if (c->flags&GS_ISSPACE)
1018 int offset=area.width()-linelength;
1021 offset+=area.left();
1022 while (begin != end)
1024 begin->bbox.moveBy(offset-begin->x,0);
1033 if (end == glyphs.end()) // letzte zeile linksbuendig lassen
1040 if ((!spacemode) && (num<2))
1042 int off=(area.width()-linelength)*256/(spacemode?numspaces:(num-1));
1044 while (begin != end)
1047 if ((!spacemode) || (begin->flags&GS_ISSPACE))
1049 begin->x+=curoff>>8;
1050 begin->bbox.moveBy(curoff>>8,0);
1063 void eTextPara::clear()
1065 singleLock s(ftlock);
1068 replacement_font = 0;
1073 eAutoInitP0<fontRenderClass> init_fontRenderClass(eAutoInitNumbers::graphic-1, "Font Render Class");