Esempio n. 1
0
 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))
Esempio n. 2
0
def get_macport(dc):
    """
    Returns the m_macPort of a wxDC (or child class) instance.
    """
    return _get_macport(str(dc.this))