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
f0ded2f0
Kaydet (Commit)
f0ded2f0
authored
Tem 14, 2001
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Various small fixes. The demo now starts to limp along.
üst
e1608529
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
2 deletions
+36
-2
Mltemodule.c
Mac/Modules/mlte/Mltemodule.c
+1
-1
mltescan.py
Mac/Modules/mlte/mltescan.py
+34
-1
mltesupport.py
Mac/Modules/mlte/mltesupport.py
+1
-0
No files found.
Mac/Modules/mlte/Mltemodule.c
Dosyayı görüntüle @
f0ded2f0
...
...
@@ -191,7 +191,7 @@ static PyObject *TXNObj_TXNAdjustCursor(TXNObjectObject *_self, PyObject *_args)
RgnHandle
ioCursorRgn
;
PyMac_PRECHECK
(
TXNAdjustCursor
);
if
(
!
PyArg_ParseTuple
(
_args
,
"O&"
,
ResObj_Convert
,
&
ioCursorRgn
))
Opt
ResObj_Convert
,
&
ioCursorRgn
))
return
NULL
;
TXNAdjustCursor
(
_self
->
ob_itself
,
ioCursorRgn
);
...
...
Mac/Modules/mlte/mltescan.py
Dosyayı görüntüle @
f0ded2f0
...
...
@@ -37,13 +37,42 @@ class MyScanner(Scanner_OSX):
return
classname
,
listname
def
writeinitialdefs
(
self
):
self
.
defsfile
.
write
(
"def FOUR_CHAR_CODE(x): return x
\n
"
)
self
.
defsfile
.
write
(
"""
def FOUR_CHAR_CODE(x): return x
false = 0
true = 1
kTXNClearThisControl = 0xFFFFFFFF
kTXNClearTheseFontFeatures = 0x80000000
kTXNDontCareTypeSize = 0xFFFFFFFF
kTXNDecrementTypeSize = 0x80000000
kTXNUseCurrentSelection = 0xFFFFFFFF
kTXNStartOffset = 0
kTXNEndOffset = 0x7FFFFFFF
MovieFileType = FOUR_CHAR_CODE('moov')
"""
)
def
makeblacklistnames
(
self
):
return
[
"TXNGetFontDefaults"
,
# Arg is too difficult
"TXNSetFontDefaults"
,
# Arg is too difficult
"TXNInitTextension"
,
# done manually
# Constants with funny definitions
"kTXNClearThisControl"
,
"kTXNClearTheseFontFeatures"
,
"kTXNDontCareTypeSize"
,
"kTXNDecrementTypeSize"
,
"kTXNUseCurrentSelection"
,
"kTXNStartOffset"
,
"kTXNEndOffset"
,
"kTXNQDFontNameAttributeSize"
,
"kTXNQDFontFamilyIDAttributeSize"
,
"kTXNQDFontSizeAttributeSize"
,
"kTXNQDFontStyleAttributeSize"
,
"kTXNQDFontColorAttributeSize"
,
"kTXNTextEncodingAttributeSize"
,
"status"
,
"justification"
,
]
def
makegreylist
(
self
):
...
...
@@ -84,6 +113,10 @@ class MyScanner(Scanner_OSX):
# In buffers are passed as void *
([(
"void"
,
"*"
,
"OutMode"
),
(
"ByteCount"
,
"*"
,
"InMode"
)],
[(
"MlteInBuffer"
,
"*"
,
"InMode"
)]),
# The AdjustCursor region handle is optional
([(
"RgnHandle"
,
"ioCursorRgn"
,
"InMode"
)],
[(
"OptRgnHandle"
,
"*"
,
"*"
)])
]
if
__name__
==
"__main__"
:
...
...
Mac/Modules/mlte/mltesupport.py
Dosyayı görüntüle @
f0ded2f0
...
...
@@ -107,6 +107,7 @@ TXNBackgroundType = Type("TXNBackgroundType", "l")
DragReference
=
OpaqueByValueType
(
"DragReference"
,
"DragObj"
)
DragTrackingMessage
=
Type
(
"DragTrackingMessage"
,
"h"
)
RgnHandle
=
OpaqueByValueType
(
"RgnHandle"
,
"ResObj"
)
OptRgnHandle
=
OpaqueByValueType
(
"RgnHandle"
,
"OptResObj"
)
GWorldPtr
=
OpaqueByValueType
(
"GWorldPtr"
,
"GWorldObj"
)
MlteInBuffer
=
VarInputBufferType
(
'void *'
,
'ByteCount'
,
'l'
)
...
...
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