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
1ea79913
Kaydet (Commit)
1ea79913
authored
Mar 04, 2009
tarafından
Ronald Oussoren
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for issue #1113328.
üst
a97063a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
19 deletions
+23
-19
OSATerminology.c
Mac/Modules/OSATerminology.c
+23
-19
No files found.
Mac/Modules/OSATerminology.c
Dosyayı görüntüle @
1ea79913
/*
/*
** This module is a one-trick pony: given an FSSpec it gets the aeut
** An interface to the application scripting related functions of the OSA API.
** resources. It was written by Donovan Preston and slightly modified
** by Jack.
**
**
** It should be considered a placeholder, it will probably be replaced
** GetAppTerminology - given an FSSpec/posix path to an application,
** by a full interface to OpenScripting.
** returns its aevt (scripting terminology) resource(s)
**
** GetSysTerminology - returns the AppleScript language component's
** aeut (scripting terminology) resource
**
** Written by Donovan Preston and slightly modified by Jack and HAS.
*/
*/
#include "Python.h"
#include "Python.h"
#include "pymactoolbox.h"
#include "pymactoolbox.h"
...
@@ -26,12 +29,19 @@ PyOSA_GetAppTerminology(PyObject* self, PyObject* args)
...
@@ -26,12 +29,19 @@ PyOSA_GetAppTerminology(PyObject* self, PyObject* args)
if
(
!
PyArg_ParseTuple
(
args
,
"O&|i"
,
PyMac_GetFSSpec
,
&
fss
,
&
modeFlags
))
if
(
!
PyArg_ParseTuple
(
args
,
"O&|i"
,
PyMac_GetFSSpec
,
&
fss
,
&
modeFlags
))
return
NULL
;
return
NULL
;
/*
** Note that we have to use the AppleScript component here. Who knows why
** OSAGetAppTerminology should require a scripting component in the
** first place, but it does. Note: doesn't work with the generic scripting
** component, which is unfortunate as the AS component is currently very
** slow (~1 sec?) to load, but we just have to live with this.
*/
defaultComponent
=
OpenDefaultComponent
(
kOSAComponentType
,
'
ascr
'
);
defaultComponent
=
OpenDefaultComponent
(
kOSAComponentType
,
'
ascr
'
);
err
=
GetComponentInstanceError
(
defaultComponent
);
err
=
GetComponentInstanceError
(
defaultComponent
);
if
(
err
)
return
PyMac_Error
(
err
);
if
(
err
)
return
PyMac_Error
(
err
);
err
=
OSAGetAppTerminology
(
err
=
OSAGetAppTerminology
(
defaultComponent
,
defaultComponent
,
modeFlags
,
kOSAModeNull
,
&
fss
,
&
fss
,
defaultTerminology
,
defaultTerminology
,
&
didLaunch
,
&
didLaunch
,
...
@@ -45,29 +55,23 @@ static PyObject *
...
@@ -45,29 +55,23 @@ static PyObject *
PyOSA_GetSysTerminology
(
PyObject
*
self
,
PyObject
*
args
)
PyOSA_GetSysTerminology
(
PyObject
*
self
,
PyObject
*
args
)
{
{
AEDesc
theDesc
=
{
0
,
0
};
AEDesc
theDesc
=
{
0
,
0
};
FSSpec
fss
;
ComponentInstance
defaultComponent
=
NULL
;
ComponentInstance
defaultComponent
=
NULL
;
SInt16
defaultTerminology
=
0
;
SInt16
defaultTerminology
=
0
;
Boolean
didLaunch
=
0
;
OSAError
err
;
OSAError
err
;
long
modeFlags
=
0
;
if
(
!
PyArg_ParseTuple
(
args
,
"O&|i"
,
PyMac_GetFSSpec
,
&
fss
,
&
modeFlags
))
return
NULL
;
/* Accept any args for sake of backwards compatibility, then ignore them. */
defaultComponent
=
OpenDefaultComponent
(
kOSAComponentType
,
'
ascr
'
);
defaultComponent
=
OpenDefaultComponent
(
kOSAComponentType
,
'
ascr
'
);
err
=
GetComponentInstanceError
(
defaultComponent
);
err
=
GetComponentInstanceError
(
defaultComponent
);
if
(
err
)
return
PyMac_Error
(
err
);
if
(
err
)
return
PyMac_Error
(
err
);
err
=
OSAGet
App
Terminology
(
err
=
OSAGet
Sys
Terminology
(
defaultComponent
,
defaultComponent
,
modeFlags
,
kOSAModeNull
,
&
fss
,
defaultTerminology
,
defaultTerminology
,
&
didLaunch
,
&
theDesc
&
theDesc
);
);
if
(
err
)
return
PyMac_Error
(
err
);
if
(
err
)
return
PyMac_Error
(
err
);
return
Py_BuildValue
(
"O&
i"
,
AEDesc_New
,
&
theDesc
,
didLaunch
);
return
Py_BuildValue
(
"O&
"
,
AEDesc_New
,
&
theDesc
);
}
}
#endif
/* !__LP64__ */
#endif
/* !__LP64__ */
...
@@ -80,11 +84,11 @@ static struct PyMethodDef OSATerminology_methods[] =
...
@@ -80,11 +84,11 @@ static struct PyMethodDef OSATerminology_methods[] =
{
"GetAppTerminology"
,
{
"GetAppTerminology"
,
(
PyCFunction
)
PyOSA_GetAppTerminology
,
(
PyCFunction
)
PyOSA_GetAppTerminology
,
METH_VARARGS
,
METH_VARARGS
,
"Get an application
s terminology, as an AEDesc object.
"
},
"Get an application
's terminology. GetAppTerminology(path) --> AEDesc
"
},
{
"GetSysTerminology"
,
{
"GetSysTerminology"
,
(
PyCFunction
)
PyOSA_GetSysTerminology
,
(
PyCFunction
)
PyOSA_GetSysTerminology
,
METH_VARARGS
,
METH_VARARGS
,
"Get
an applications system terminology, as an AEDesc object.
"
},
"Get
the AppleScript language's terminology. GetSysTerminology() --> AEDesc
"
},
#endif
/* !__LP64__ */
#endif
/* !__LP64__ */
{
NULL
,
(
PyCFunction
)
NULL
,
0
,
NULL
}
{
NULL
,
(
PyCFunction
)
NULL
,
0
,
NULL
}
};
};
...
...
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