Minor updates

Fri Jul 21 14:23:51 BST 2000  Tony Gale <gale@gtk.org>

        * docs/tutorial/gtk-tut.sgml: Minor updates

        * docs/tutorial/*.jpg *.eps: Screenshots for tutorial
This commit is contained in:
BST 2000 Tony Gale 2000-07-21 13:26:25 +00:00 committed by Tony Gale
parent 631205ddc7
commit a7ac5157d0
14 changed files with 3052 additions and 203 deletions

View File

@ -1,3 +1,9 @@
Fri Jul 21 14:23:51 BST 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: Minor updates
* docs/tutorial/*.jpg *.eps: Screenshots for tutorial
2000-07-19 Tor Lillqvist <tml@iki.fi>
* gtk/gtksignal.c: Fix C++ comment.

View File

@ -1,3 +1,9 @@
Fri Jul 21 14:23:51 BST 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: Minor updates
* docs/tutorial/*.jpg *.eps: Screenshots for tutorial
2000-07-19 Tor Lillqvist <tml@iki.fi>
* gtk/gtksignal.c: Fix C++ comment.

View File

@ -1,3 +1,9 @@
Fri Jul 21 14:23:51 BST 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: Minor updates
* docs/tutorial/*.jpg *.eps: Screenshots for tutorial
2000-07-19 Tor Lillqvist <tml@iki.fi>
* gtk/gtksignal.c: Fix C++ comment.

View File

@ -1,3 +1,9 @@
Fri Jul 21 14:23:51 BST 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: Minor updates
* docs/tutorial/*.jpg *.eps: Screenshots for tutorial
2000-07-19 Tor Lillqvist <tml@iki.fi>
* gtk/gtksignal.c: Fix C++ comment.

View File

@ -1,3 +1,9 @@
Fri Jul 21 14:23:51 BST 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: Minor updates
* docs/tutorial/*.jpg *.eps: Screenshots for tutorial
2000-07-19 Tor Lillqvist <tml@iki.fi>
* gtk/gtksignal.c: Fix C++ comment.

View File

@ -1,3 +1,9 @@
Fri Jul 21 14:23:51 BST 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: Minor updates
* docs/tutorial/*.jpg *.eps: Screenshots for tutorial
2000-07-19 Tor Lillqvist <tml@iki.fi>
* gtk/gtksignal.c: Fix C++ comment.

View File

@ -1,3 +1,9 @@
Fri Jul 21 14:23:51 BST 2000 Tony Gale <gale@gtk.org>
* docs/tutorial/gtk-tut.sgml: Minor updates
* docs/tutorial/*.jpg *.eps: Screenshots for tutorial
2000-07-19 Tor Lillqvist <tml@iki.fi>
* gtk/gtksignal.c: Fix C++ comment.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,654 @@
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (gtk_tut_table.eps)
%%CreationDate: (Thu Jul 20 15:31:49 2000)
%%BoundingBox: 0 0 121.264 81
%%DocumentData: Clean7Bit
%%LanguageLevel: 1
%%Pages: 0
%%EndComments
%%BeginDefaults
%%PageOrientation: Portrait
%%EndDefaults
%%BeginProlog
%
% Display a color image. The image is displayed in color on
% Postscript viewers or printers that support color, otherwise
% it is displayed as grayscale.
%
/buffer 512 string def
/byte 1 string def
/color_packet 3 string def
/pixels 768 string def
/DirectClassPacket
{
%
% Get a DirectClass packet.
%
% Parameters:
% red.
% green.
% blue.
% length: number of pixels minus one of this color (optional).
%
currentfile color_packet readhexstring pop pop
compression 0 gt
{
/number_pixels 3 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add 3 mul def
} ifelse
0 3 number_pixels 1 sub
{
pixels exch color_packet putinterval
} for
pixels 0 number_pixels getinterval
} bind def
/DirectClassImage
{
%
% Display a DirectClass image.
%
systemdict /colorimage known
{
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ DirectClassPacket } false 3 colorimage
}
{
%
% No colorimage operator; convert to grayscale.
%
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ GrayDirectClassPacket } image
} ifelse
} bind def
/GrayDirectClassPacket
{
%
% Get a DirectClass packet; convert to grayscale.
%
% Parameters:
% red
% green
% blue
% length: number of pixels minus one of this color (optional).
%
currentfile color_packet readhexstring pop pop
color_packet 0 get 0.299 mul
color_packet 1 get 0.587 mul add
color_packet 2 get 0.114 mul add
cvi
/gray_packet exch def
compression 0 gt
{
/number_pixels 1 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add def
} ifelse
0 1 number_pixels 1 sub
{
pixels exch gray_packet put
} for
pixels 0 number_pixels getinterval
} bind def
/GrayPseudoClassPacket
{
%
% Get a PseudoClass packet; convert to grayscale.
%
% Parameters:
% index: index into the colormap.
% length: number of pixels minus one of this color (optional).
%
currentfile byte readhexstring pop 0 get
/offset exch 3 mul def
/color_packet colormap offset 3 getinterval def
color_packet 0 get 0.299 mul
color_packet 1 get 0.587 mul add
color_packet 2 get 0.114 mul add
cvi
/gray_packet exch def
compression 0 gt
{
/number_pixels 1 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add def
} ifelse
0 1 number_pixels 1 sub
{
pixels exch gray_packet put
} for
pixels 0 number_pixels getinterval
} bind def
/PseudoClassPacket
{
%
% Get a PseudoClass packet.
%
% Parameters:
% index: index into the colormap.
% length: number of pixels minus one of this color (optional).
%
currentfile byte readhexstring pop 0 get
/offset exch 3 mul def
/color_packet colormap offset 3 getinterval def
compression 0 gt
{
/number_pixels 3 def
}
{
currentfile byte readhexstring pop 0 get
/number_pixels exch 1 add 3 mul def
} ifelse
0 3 number_pixels 1 sub
{
pixels exch color_packet putinterval
} for
pixels 0 number_pixels getinterval
} bind def
/PseudoClassImage
{
%
% Display a PseudoClass image.
%
% Parameters:
% class: 0-PseudoClass or 1-Grayscale.
%
currentfile buffer readline pop
token pop /class exch def pop
class 0 gt
{
currentfile buffer readline pop
token pop /depth exch def pop
/grays columns 8 add depth sub depth mul 8 idiv string def
columns rows depth
[
columns 0 0
rows neg 0 rows
]
{ currentfile grays readhexstring pop } image
}
{
%
% Parameters:
% colors: number of colors in the colormap.
% colormap: red, green, blue color packets.
%
currentfile buffer readline pop
token pop /colors exch def pop
/colors colors 3 mul def
/colormap colors string def
currentfile colormap readhexstring pop pop
systemdict /colorimage known
{
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ PseudoClassPacket } false 3 colorimage
}
{
%
% No colorimage operator; convert to grayscale.
%
columns rows 8
[
columns 0 0
rows neg 0 rows
]
{ GrayPseudoClassPacket } image
} ifelse
} ifelse
} bind def
/DisplayImage
{
%
% Display a DirectClass or PseudoClass image.
%
% Parameters:
% x & y translation.
% x & y scale.
% label pointsize.
% image label.
% image columns & rows.
% class: 0-DirectClass or 1-PseudoClass.
% compression: 0-RunlengthEncodedCompression or 1-NoCompression.
% hex color packets.
%
gsave
currentfile buffer readline pop
token pop /x exch def
token pop /y exch def pop
x y translate
currentfile buffer readline pop
token pop /x exch def
token pop /y exch def pop
currentfile buffer readline pop
token pop /pointsize exch def pop
/Helvetica findfont pointsize scalefont setfont
x y scale
currentfile buffer readline pop
token pop /columns exch def
token pop /rows exch def pop
currentfile buffer readline pop
token pop /class exch def pop
currentfile buffer readline pop
token pop /compression exch def pop
class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
grestore
} bind def
%%EndProlog
%%Page: 1 1
%%PageBoundingBox: 0 0 122 82
userdict begin
%%BeginData:
DisplayImage
0 0
122.264 81.5094
12
180 120
1
0
0
256
000000
ffffff
c0c0c0
c8c8c8
0000c0
0000ff
000080
ffa85a
00ff00
be5800
ff8000
ffdca8
beffbe
ffffbe
008000
ffffdc
827d7d
828282
606060
585858
404000
ff0000
808080
ffff00
000040
a0a0a4
c0c000
c00000
008080
beffff
004040
400040
bebeff
004000
dcdcdc
a0a0a0
aeffa6
808000
707070
7f7f7f
00c0c0
d4d400
400000
595959
303030
c3c3c3
dfaa69
4145e7
960400
000096
e74541
c78ac7
411c20
080808
00c000
800000
ffbebe
fefefe
fe3f4b
3f3f3f
c6c6c8
fe7f87
fe0010
e1dfe7
545454
fafaf8
d8d7cf
fbfbfa
efefea
fcfcfb
cccbdb
c9c9d9
000010
f9f9f7
d7d5e0
cfcedc
e0dfd9
f8f8f5
d0cfc7
fbfbf9
e8e7e2
f7f7f3
e8e7ed
d6d5e0
f1f0f4
cdccdb
c4c4d0
f9f9f6
dcdbd4
d1d0dd
dcdbe3
fafaf9
f5f3ec
e0dfe7
d4d3cb
eae9ee
e4e3de
d2d1de
ebebe6
fdfdfc
e4e3ea
e7e6ec
c8c7d3
d0cfdc
efeee5
f8f8f6
f4f3f1
dfdee6
f1f1ee
f8f7f4
f4f3f6
f7f6f2
cccbd6
f7f7f4
edeced
d3d2de
d9d8e2
ecebf0
eeeef2
f7f7f5
cfced8
d4d3df
dad9d2
faf9f7
cecdc5
cecddb
e6e5e0
cbcada
d2d1c9
f6f6f3
edede8
cbcbda
f2f2eb
cacada
f6f6f8
f6f6f4
eae9e4
dbdae3
e1e1db
fcfcfc
ddddd6
f5f5f1
cac9d5
e3e2e9
f1f0e8
d6d6ce
dedce5
d5d4df
e3e2dc
f7f6f3
f8f8f9
faf9f8
f2f2f4
f9f8f5
f5f4ef
d8d7e1
f1f0eb
f3f2f0
f3f3ed
eeeeea
d2d0db
f1f1ed
d5d4cc
dedde5
fafafb
cecddc
cfcec6
fdfdfd
d3d2ca
d7d6e1
e5e4df
f8f8f4
e5e4eb
dad9e3
e9e8e3
fafaf7
d9d8d0
ebeae6
e2e1e8
c7c6d2
d0cfd9
f5f5f2
dfded8
f0efec
dad9e1
dddce4
f9f9fa
fbfaf9
d4d3dd
d4d2de
cdccd7
ecece6
d1d0c8
dcdbe4
d6d5de
f0f0f3
e7e6e1
f9f8f6
f6f6f1
f8f7f3
f7f7f8
d3d1de
e1e0e8
d2d1dd
f4f4f0
d1d0c7
f3f3ef
f8f7f5
f2f2ef
edece8
d7d6cf
dad9e2
f3f3f4
f5f4f2
e3e3dd
d5d3df
f6f5f0
f9f8f7
e6e5eb
cccbda
d7d6df
efeee6
ebebef
f9f9f8
dbdad2
f6f5f2
efeff2
d9d8e1
cecdd8
ccccdb
deded7
fefefd
c9c9d4
e1e0e7
d5d4e0
f2f1eb
e8e8ed
d9d8d1
fcfcfa
d8d7e0
d6d4df
f5f5f0
e7e6eb
f3f2ed
dedde6
d2d0dd
d1d0de
f6f6f2
dbdae4
e4e3e9
dddce5
dad8e2
d7d6e0
d2d1dc
f4f3f0
d5d4de
22b20000220001b0120000002200010002af120000002200010002af1200000022000100
022b214102411200000022000100022b214102411200000022000100022b214102411200
000022000100022b21410219010a020a0100260002070100260002051200000022000100
021d2601020426000205210416092109160121071601211c021901002609020a01002601
02050100260102051200000022000100021d260001002600020226010205210416092109
160121071601211c021901002600020601002600020b0100260102030100260102061200
000022000100021d26000101260201002600020521081601210d160121071601211c0219
01002600020601002600020c01002601020101002601020712000000220001000205010b
020501052600230001002300010023000100260002052108160121051604210216012100
160221031601210316032114020a0102020b01002600020601002600020d010026010100
260102081200000022000100020501000209260002052305260023000100230001002300
01002600020521081601210416062101160621021601210216052113020a010002002600
020b01002600020601002600020e010026020209120000002200010002050100260a0205
260623012600230026002300260002052108160121041601210216012101160221011602
2101160121011601210316012112020a01002601020b01002600020601002600020e0100
260202091200000022000100021d26002300260502050e0816010e0816020e0116010e03
16010e0116010e0116070e12021901002600020601002600020d01002601010026010208
1200000022000100021d26020202260102050e0816010e0516050e0116010e0316010e01
16010e0116070e12021901002600020601002600020c0100260102010100260102071200
000022000100021d26010204260002050e0816010e0416020e0116010e0116010e031601
0e0116010e0116010e1802190100260001072600020b0100260102030100260102061200
000022000100022b0e0816010e0416010e0216010e0116020e0116020e0116010e011602
0e0116020e12021901002609020a0100260102050100260102051200000022000100022b
0e0816010e0416060e0116060e0216010e0216050e13022f010026000207010026000205
1200000022000100022b0e0816010e0516020e0016020e0016010e0016020e0316010e03
16030e1402411200000022000100022b0e4102411200000022000100022b0e4102411200
00002200010002af120000002200010002af1200000022000100020191ab020112000000
22000100020191ab02011200000022000100020191ab02011200000022000100020191ab
02011200000022000100020191ab02011200000022000100020191ab0201120000002200
0100020191ab02011200000022000100020191ab02011200000022000100020191ab0201
1200000022000100020191ab02011200000022000100020191ab02011200000022000100
020191ab02011200000022000100020191ab02011200000022000100020191ab02011200
000022000100020191ab02011200000022000100020191ab020112000000220001000201
91ab02011200000022000100020191ab02011200000022000100020191ab020112000000
22000100020191ab02011200000022000100020191130140000001400000911302011200
000022000100020191130100913f00000100913f00009113020112000000220001000201
91130100913e230000000100913e23000000911302011200000022000100020191130100
913e230000000100913e23000000911302011200000022000100020191130100913e2300
00000100913e23000000911302011200000022000100020191130100913e230000000100
913e23000000911302011200000022000100020191130100910200009135000091032300
000001009102000091330002910323000000911302011200000022000100020191130100
910200009111000091030000911d00009103230000000100910200009111000091030000
911a00009102000091022300000091130201120000002200010002019113010091020000
9111000091030000911c0001910323000000010091020000911100009103000091190000
910400009101230000009113020112000000220001000201911301009102000091000002
910300009104000091010003910000039102000291030000910000039109000091000000
910323000000010091020000910000029103000091040000910100039100000391020002
910300009100000391070000910400009101230000009113020112000000220001000201
911301009102000191020000910200009104000091020000910300009103000091020000
9102000191030000910a0000910323000000010091020001910200009102000091040000
910200009103000091030000910200009102000191030000910c00009101230000009113
020112000000220001000201911301009102000091040000910100009104000091020000
9103000091020000910400009101000091040000910a0000910323000000010091020000
910400009101000091040000910200009103000091020000910400009101000091040000
910b00009102230000009113020112000000220001000201911301009102000091040000
9101000091040000910200009103000091020000910400009101000091040000910a0000
910323000000010091020000910400009101000091040000910200009103000091020000
910400009101000091040000910a00009103230000009113020112000000220001000201
911301009102000091040000910100009104000091020000910300009102000091040000
9101000091040000910a0000910323000000010091020000910400009101000091040000
910200009103000091020000910400009101000091040000910800019104230000009113
020112000000220001000201911301009102000091040000910100009104000091020000
9103000091020000910400009101000091040000910a0000910323000000010091020000
910400009101000091040000910200009103000091020000910400009101000091040000
910700009106230000009113020112000000220001000201911301009102000091040000
9101000091040000910200009103000091020000910400009101000091040000910a0000
910323000000010091020000910400009101000091040000910200009103000091020000
910400009101000091040000910600009107230000009113020112000000220001000201
911301009102000191020000910200009103000191020000910300009103000091020000
9102000091040000910a0000910323000000010091020001910200009102000091030001
910200009103000091030000910200009102000091040000910600009107230000009113
020112000000220001000201911301009102000091000002910400039100000091030001
91020001910200029103000091040000910a000091032300000001009102000091000002
910400039100000091030001910200019102000291030000910400009106000691012300
0000911302011200000022000100020191130100913e230000000100913e230000009113
02011200000022000100020191130100913e230000000100913e23000000911302011200
000022000100020191130100913e230000000100913e2300000091130201120000002200
0100020191130100913e230000000100913e230000009113020112000000220001000201
91130100913e230000000100913e23000000911302011200000022000100020191130100
913e230000000100913e230000009113020112000000220001000201911301009100233e
000001009100233e00009113020112000000220001000201911300839113020112000000
220001000201911301820000911302011200000022000100020191130100918100009113
020112000000220001000201911301009180230000009113020112000000220001000201
911301009180230000009113020112000000220001000201911301009180230000009113
020112000000220001000201911301009180230000009113020112000000220001000201
9113010091360002910e0000913623000000911302011200000022000100020191130100
9134000191020001910c0000910200009132230000009113020112000000220001000201
911301009133000091060000910f00009132230000009113020112000000220001000201
911301009133000091060000910200009104000091010000910100039130230000009113
020112000000220001000201911301009132000091080000910100009104000091010000
910200009132230000009113020112000000220001000201911301009132000091080000
910100009104000091010000910200009132230000009113020112000000220001000201
911301009132000091080000910100009104000091010000910200009132230000009113
020112000000220001000201911301009132000091080000910100009104000091010000
910200009132230000009113020112000000220001000201911301009133000091060000
910200009104000091010000910200009132230000009113020112000000220001000201
911301009133000091030000910100009102000091040000910100009102000091322300
000091130201120000002200010002019113010091340001910200019103000091030001
910100009102000091322300000091130201120000002200010002019113010091360002
910000009104000391000000910100009103000191302300000091130201120000002200
0100020191130100913b0000914323000000911302011200000022000100020191130100
918023000000911302011200000022000100020191130100918023000000911302011200
000022000100020191130100918023000000911302011200000022000100020191130100
918023000000911302011200000022000100020191130100918023000000911302011200
000022000100020191130100910023800000911302011200000022000100020191130083
911302011200000022000100020191ab02011200000022000100020191ab020112000000
22000100020191ab02011200000022000100020191ab02011200000022000100020191ab
010322000100020191ab120322000100020191ab02010100120022000100020191ab0201
0100120022000100020191ab02010100120022000100020191ab02010100120022000100
020191ab02010100120022000100020191ab02010100120022000100020191ab02010100
120022000100020191ab02010100120022000100020191ab020101001200220001000201
91ab02010100120022000100020191ab02010100120022000100020191ab020101001200
22000100020191ab02010100120022000100020191ab02010100120022000100029d0100
1200020f0100120022000100029d01001200020f010012002200129e0100120001101200
009f01001212
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 0 121.264 81
%%EOF

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB