|
@ -1,6 +1,7 @@ |
|
|
import xutil.common as com |
|
|
import xutil.common as com |
|
|
import re |
|
|
import re |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class XInput: |
|
|
class XInput: |
|
|
"""Base XInput class |
|
|
"""Base XInput class |
|
|
|
|
|
|
|
@ -36,6 +37,7 @@ class Pointer(XInput): |
|
|
def __init__(self, name, id, is_master: bool) -> None: |
|
|
def __init__(self, name, id, is_master: bool) -> None: |
|
|
super().__init__(name, id, is_master) |
|
|
super().__init__(name, id, is_master) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_short_pointer(id) -> Pointer: |
|
|
def get_short_pointer(id) -> Pointer: |
|
|
"""Generates Pointer object corresponding to id (short attrs) |
|
|
"""Generates Pointer object corresponding to id (short attrs) |
|
|
|
|
|
|
|
|