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
484be615
Kaydet (Commit)
484be615
authored
Mar 03, 2000
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added methods getdata() and putdata() to obtain the data in a bitmap.
üst
9428fa60
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
0 deletions
+68
-0
Qdmodule.c
Mac/Modules/qd/Qdmodule.c
+38
-0
qdsupport.py
Mac/Modules/qd/qdsupport.py
+30
-0
No files found.
Mac/Modules/qd/Qdmodule.c
Dosyayı görüntüle @
484be615
...
...
@@ -297,7 +297,45 @@ static void BMObj_dealloc(self)
PyMem_DEL
(
self
);
}
static
PyObject
*
BMObj_getdata
(
_self
,
_args
)
BitMapObject
*
_self
;
PyObject
*
_args
;
{
PyObject
*
_res
=
NULL
;
int
from
,
length
;
char
*
cp
;
if
(
!
PyArg_ParseTuple
(
_args
,
"ii"
,
&
from
,
&
length
)
)
return
NULL
;
cp
=
_self
->
ob_itself
->
baseAddr
+
from
;
return
PyString_FromStringAndSize
(
cp
,
length
);
}
static
PyObject
*
BMObj_putdata
(
_self
,
_args
)
BitMapObject
*
_self
;
PyObject
*
_args
;
{
PyObject
*
_res
=
NULL
;
int
from
,
length
;
char
*
cp
,
*
icp
;
if
(
!
PyArg_ParseTuple
(
_args
,
"is#"
,
&
from
,
&
icp
,
&
length
)
)
return
NULL
;
cp
=
_self
->
ob_itself
->
baseAddr
+
from
;
memcpy
(
cp
,
icp
,
length
);
Py_INCREF
(
Py_None
);
return
Py_None
;
}
static
PyMethodDef
BMObj_methods
[]
=
{
{
"getdata"
,
(
PyCFunction
)
BMObj_getdata
,
1
,
"(int start, int size) -> string. Return bytes from the bitmap"
},
{
"putdata"
,
(
PyCFunction
)
BMObj_putdata
,
1
,
"(int start, string data). Store bytes into the bitmap"
},
{
NULL
,
NULL
,
0
}
};
...
...
Mac/Modules/qd/qdsupport.py
Dosyayı görüntüle @
484be615
...
...
@@ -310,6 +310,36 @@ for f in functions: module.add(f)
##for f in r_methods: r_object.add(f)
##for f in po_methods: po_object.add(f)
# Manual generator: get data out of a bitmap
getdata_body
=
"""
int from, length;
char *cp;
if ( !PyArg_ParseTuple(_args, "ii", &from, &length) )
return NULL;
cp = _self->ob_itself->baseAddr+from;
return PyString_FromStringAndSize(cp, length);
"""
f
=
ManualGenerator
(
"getdata"
,
getdata_body
)
f
.
docstring
=
lambda
:
"""(int start, int size) -> string. Return bytes from the bitmap"""
bm_object
.
add
(
f
)
# Manual generator: store data in a bitmap
putdata_body
=
"""
int from, length;
char *cp, *icp;
if ( !PyArg_ParseTuple(_args, "is#", &from, &icp, &length) )
return NULL;
cp = _self->ob_itself->baseAddr+from;
memcpy(cp, icp, length);
Py_INCREF(Py_None);
return Py_None;
"""
f
=
ManualGenerator
(
"putdata"
,
putdata_body
)
f
.
docstring
=
lambda
:
"""(int start, string data). Store bytes into the bitmap"""
bm_object
.
add
(
f
)
#
# We manually generate a routine to create a BitMap from python data.
#
...
...
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