summaryrefslogtreecommitdiff
path: root/Mac/Modules/win/winedit.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/Modules/win/winedit.py')
-rw-r--r--Mac/Modules/win/winedit.py69
1 files changed, 0 insertions, 69 deletions
diff --git a/Mac/Modules/win/winedit.py b/Mac/Modules/win/winedit.py
deleted file mode 100644
index 01cfe86f38..0000000000
--- a/Mac/Modules/win/winedit.py
+++ /dev/null
@@ -1,69 +0,0 @@
-# These are inline-routines/defines, so we do them "by hand"
-#
-
-f = Method(Boolean, 'IsWindowVisible',
- (WindowRef, 'theWindow', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'GetWindowStructureRgn',
- (WindowRef, 'theWindow', InMode),
- (RgnHandle, 'r', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'GetWindowContentRgn',
- (WindowRef, 'theWindow', InMode),
- (RgnHandle, 'r', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'GetWindowUpdateRgn',
- (WindowRef, 'theWindow', InMode),
- (RgnHandle, 'r', InMode),
-)
-methods.append(f)
-
-f = Method(ExistingWindowPtr, 'GetNextWindow',
- (WindowRef, 'theWindow', InMode),
-)
-methods.append(f)
-
-f = Function(short, 'FindWindow',
- (Point, 'thePoint', InMode),
- (ExistingWindowPtr, 'theWindow', OutMode),
-)
-functions.append(f)
-
-f = Method(void, 'MoveWindow',
- (WindowPtr, 'theWindow', InMode),
- (short, 'hGlobal', InMode),
- (short, 'vGlobal', InMode),
- (Boolean, 'front', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'ShowWindow',
- (WindowPtr, 'theWindow', InMode),
-)
-methods.append(f)
-
-#
-# A method to set the auto-dispose flag
-#
-AutoDispose_body = """
-int onoff, old = 0;
-if (!PyArg_ParseTuple(_args, "i", &onoff))
- return NULL;
-if ( _self->ob_freeit )
- old = 1;
-if ( onoff )
- _self->ob_freeit = PyMac_AutoDisposeWindow;
-else
- _self->ob_freeit = NULL;
-_res = Py_BuildValue("i", old);
-return _res;
-"""
-f = ManualGenerator("AutoDispose", AutoDispose_body)
-f.docstring = lambda: "(int)->int. Automatically DisposeHandle the object on Python object cleanup"
-methods.append(f)