Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
c9808b3a
Kaydet (Commit)
c9808b3a
authored
Mar 15, 1998
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Logical markup.
Emphasized title "4Sight User's Guide".
üst
5f874d61
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
22 deletions
+22
-22
libfm.tex
Doc/lib/libfm.tex
+11
-11
libfm.tex
Doc/libfm.tex
+11
-11
No files found.
Doc/lib/libfm.tex
Dosyayı görüntüle @
c9808b3a
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
This module provides access to the IRIS
\emph
{
Font Manager
}
library.
This module provides access to the IRIS
\emph
{
Font Manager
}
library.
It is available only on Silicon Graphics machines.
It is available only on Silicon Graphics machines.
See also:
4Sight User's Guide, Section 1, Chapter 5: Using the IRIS
See also:
\emph
{
4Sight User's Guide
}
, Section 1, Chapter 5: ``Using
Font Manager.
the IRIS Font Manager.''
This is not yet a full interface to the IRIS Font Manager.
This is not yet a full interface to the IRIS Font Manager.
Among the unsupported features are: matrix operations; cache
Among the unsupported features are: matrix operations; cache
...
@@ -14,12 +14,11 @@ details of font info; individual glyph metrics; and printer matching.
...
@@ -14,12 +14,11 @@ details of font info; individual glyph metrics; and printer matching.
It supports the following operations:
It supports the following operations:
\setindexsubitem
{
(in module fm)
}
\begin{funcdesc}
{
init
}{}
\begin{funcdesc}
{
init
}{}
Initialization function.
Initialization function.
Calls
\c
ode
{
fminit()
}
.
Calls
\c
function
{
fminit()
}
.
It is normally not necessary to call this function, since it is called
It is normally not necessary to call this function, since it is called
automatically the first time the
\
cod
e
{
fm
}
module is imported.
automatically the first time the
\
modul
e
{
fm
}
module is imported.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
findfont
}{
fontname
}
\begin{funcdesc}
{
findfont
}{
fontname
}
...
@@ -29,18 +28,18 @@ Calls \code{fmfindfont(\var{fontname})}.
...
@@ -29,18 +28,18 @@ Calls \code{fmfindfont(\var{fontname})}.
\begin{funcdesc}
{
enumerate
}{}
\begin{funcdesc}
{
enumerate
}{}
Returns a list of available font names.
Returns a list of available font names.
This is an interface to
\c
ode
{
fmenumerate()
}
.
This is an interface to
\c
function
{
fmenumerate()
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
prstr
}{
string
}
\begin{funcdesc}
{
prstr
}{
string
}
Render a string using the current font (see the
\
code
{
setfont()
}
font
Render a string using the current font (see the
\
function
{
setfont()
}
font
handle method below).
handle method below).
Calls
\code
{
fmprstr(
\var
{
string
}
)
}
.
Calls
\code
{
fmprstr(
\var
{
string
}
)
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
setpath
}{
string
}
\begin{funcdesc}
{
setpath
}{
string
}
Sets the font search path.
Sets the font search path.
Calls
\code
{
fmsetpath(
string
)
}
.
Calls
\code
{
fmsetpath(
\var
{
string
}
)
}
.
(XXX Does not work!?!)
(XXX Does not work!?!)
\end{funcdesc}
\end{funcdesc}
...
@@ -78,11 +77,12 @@ Calls \code{fmgetcomment(\var{fh})}.
...
@@ -78,11 +77,12 @@ Calls \code{fmgetcomment(\var{fh})}.
Returns a tuple giving some pertinent data about this font.
Returns a tuple giving some pertinent data about this font.
This is an interface to
\code
{
fmgetfontinfo()
}
.
This is an interface to
\code
{
fmgetfontinfo()
}
.
The returned tuple contains the following numbers:
The returned tuple contains the following numbers:
\code
{
(
\var
{
printermatched
}
,
\var
{
fixed
_
width
}
,
\var
{
xorig
}
,
\var
{
yorig
}
,
\code
{
(
}
\var
{
printermatched
}
,
\var
{
fixed
_
width
}
,
\var
{
xorig
}
,
\var
{
xsize
}
,
\var
{
ysize
}
,
\var
{
height
}
,
\var
{
nglyphs
}
)
}
.
\var
{
yorig
}
,
\var
{
xsize
}
,
\var
{
ysize
}
,
\var
{
height
}
,
\var
{
nglyphs
}
\code
{
)
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
getstrwidth
}{
string
}
\begin{funcdesc}
{
getstrwidth
}{
string
}
Returns the width, in pixels, of
the string
when drawn in this font.
Returns the width, in pixels, of
\var
{
string
}
when drawn in this font.
Calls
\code
{
fmgetstrwidth(
\var
{
fh
}
,
\var
{
string
}
)
}
.
Calls
\code
{
fmgetstrwidth(
\var
{
fh
}
,
\var
{
string
}
)
}
.
\end{funcdesc}
\end{funcdesc}
Doc/libfm.tex
Dosyayı görüntüle @
c9808b3a
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
This module provides access to the IRIS
\emph
{
Font Manager
}
library.
This module provides access to the IRIS
\emph
{
Font Manager
}
library.
It is available only on Silicon Graphics machines.
It is available only on Silicon Graphics machines.
See also:
4Sight User's Guide, Section 1, Chapter 5: Using the IRIS
See also:
\emph
{
4Sight User's Guide
}
, Section 1, Chapter 5: ``Using
Font Manager.
the IRIS Font Manager.''
This is not yet a full interface to the IRIS Font Manager.
This is not yet a full interface to the IRIS Font Manager.
Among the unsupported features are: matrix operations; cache
Among the unsupported features are: matrix operations; cache
...
@@ -14,12 +14,11 @@ details of font info; individual glyph metrics; and printer matching.
...
@@ -14,12 +14,11 @@ details of font info; individual glyph metrics; and printer matching.
It supports the following operations:
It supports the following operations:
\setindexsubitem
{
(in module fm)
}
\begin{funcdesc}
{
init
}{}
\begin{funcdesc}
{
init
}{}
Initialization function.
Initialization function.
Calls
\c
ode
{
fminit()
}
.
Calls
\c
function
{
fminit()
}
.
It is normally not necessary to call this function, since it is called
It is normally not necessary to call this function, since it is called
automatically the first time the
\
cod
e
{
fm
}
module is imported.
automatically the first time the
\
modul
e
{
fm
}
module is imported.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
findfont
}{
fontname
}
\begin{funcdesc}
{
findfont
}{
fontname
}
...
@@ -29,18 +28,18 @@ Calls \code{fmfindfont(\var{fontname})}.
...
@@ -29,18 +28,18 @@ Calls \code{fmfindfont(\var{fontname})}.
\begin{funcdesc}
{
enumerate
}{}
\begin{funcdesc}
{
enumerate
}{}
Returns a list of available font names.
Returns a list of available font names.
This is an interface to
\c
ode
{
fmenumerate()
}
.
This is an interface to
\c
function
{
fmenumerate()
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
prstr
}{
string
}
\begin{funcdesc}
{
prstr
}{
string
}
Render a string using the current font (see the
\
code
{
setfont()
}
font
Render a string using the current font (see the
\
function
{
setfont()
}
font
handle method below).
handle method below).
Calls
\code
{
fmprstr(
\var
{
string
}
)
}
.
Calls
\code
{
fmprstr(
\var
{
string
}
)
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
setpath
}{
string
}
\begin{funcdesc}
{
setpath
}{
string
}
Sets the font search path.
Sets the font search path.
Calls
\code
{
fmsetpath(
string
)
}
.
Calls
\code
{
fmsetpath(
\var
{
string
}
)
}
.
(XXX Does not work!?!)
(XXX Does not work!?!)
\end{funcdesc}
\end{funcdesc}
...
@@ -78,11 +77,12 @@ Calls \code{fmgetcomment(\var{fh})}.
...
@@ -78,11 +77,12 @@ Calls \code{fmgetcomment(\var{fh})}.
Returns a tuple giving some pertinent data about this font.
Returns a tuple giving some pertinent data about this font.
This is an interface to
\code
{
fmgetfontinfo()
}
.
This is an interface to
\code
{
fmgetfontinfo()
}
.
The returned tuple contains the following numbers:
The returned tuple contains the following numbers:
\code
{
(
\var
{
printermatched
}
,
\var
{
fixed
_
width
}
,
\var
{
xorig
}
,
\var
{
yorig
}
,
\code
{
(
}
\var
{
printermatched
}
,
\var
{
fixed
_
width
}
,
\var
{
xorig
}
,
\var
{
xsize
}
,
\var
{
ysize
}
,
\var
{
height
}
,
\var
{
nglyphs
}
)
}
.
\var
{
yorig
}
,
\var
{
xsize
}
,
\var
{
ysize
}
,
\var
{
height
}
,
\var
{
nglyphs
}
\code
{
)
}
.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
getstrwidth
}{
string
}
\begin{funcdesc}
{
getstrwidth
}{
string
}
Returns the width, in pixels, of
the string
when drawn in this font.
Returns the width, in pixels, of
\var
{
string
}
when drawn in this font.
Calls
\code
{
fmgetstrwidth(
\var
{
fh
}
,
\var
{
string
}
)
}
.
Calls
\code
{
fmgetstrwidth(
\var
{
fh
}
,
\var
{
string
}
)
}
.
\end{funcdesc}
\end{funcdesc}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment