File: __init__.py

package info (click to toggle)
python-enable 4.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 7,280 kB
  • ctags: 13,899
  • sloc: cpp: 48,447; python: 28,502; ansic: 9,004; makefile: 315; sh: 44
file content (17 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# :Author:    Robert Kern
# :Copyright: 2004, Enthought, Inc.
# :License:   BSD Style

from mac_context import get_mac_context


def get_macport(dc):
    """
    Returns the Port or the CGContext of a wxDC (or child class) instance.
    """
    if 'GetCGContext' in dir(dc):
        ptr = dc.GetCGContext()
        return int(ptr)
    else:
        from macport import get_macport as _get_macport
        return _get_macport(str(dc.this))