1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
--- GRText.m 2010/12/07 08:43:36 1.27
+++ GRText.m 2011/04/06 09:56:16 1.28
@@ -2,7 +2,7 @@
Project: Graphos
GRText.m
- Copyright (C) 2000-2010 GNUstep Application Project
+ Copyright (C) 2000-2011 GNUstep Application Project
Author: Enrico Sersale (original GDraw implementation)
Author: Ing. Riccardo Mottola
@@ -238,26 +238,6 @@
return dict;
}
-- (NSString *)psDescription
-{
- NSString *pss;
-
- if(!visible)
- return nil;
-
- pss = [NSString stringWithFormat:
- @"\n/%@ %.3f sf\nn\n%.3f %.3f m\n(%@)show\n",
- [font fontName], fsize, pos.x, pos.y, str];
- if(stroked)
- pss = [pss stringByAppendingFormat: @"%.3f %.3f %.3f %.3f k\nstroke\n",
- strokeColor[0], strokeColor[1], strokeColor[2], strokeColor[3]];
- if(filled)
- pss = [pss stringByAppendingFormat: @"%.3f %.3f %.3f %.3f k\nfill\n",
- fillColor[0], fillColor[1], fillColor[2], fillColor[3]];
-
- return pss;
-}
-
- (NSString *)fontName
{
return [font fontName];
|